Skip to content

India

A forum for members from India
199 Topics 1.0k Posts
  • Qt for QNX

    1
    0 Votes
    1 Posts
    908 Views
    No one has replied
  • How to delete widgets from Qvboxlayout

    1
    0 Votes
    1 Posts
    923 Views
    No one has replied
  • Chinese Character in Qt

    Locked
    1
    0 Votes
    1 Posts
    885 Views
    No one has replied
  • Want to configure Qt5 for Wandboard-solo board

    1
    0 Votes
    1 Posts
    849 Views
    No one has replied
  • AdvanTRAK Qt for QNX

    3
    0 Votes
    3 Posts
    1k Views
    D

    Hi,

    Thanks for your reply.'

    You would need to create myQNX Account and then you need to log in using created myQNX Account's User ID and Password.

    You can create myQNX Account in QNX Website.,

    -Thank You.

  • 0 Votes
    4 Posts
    2k Views
    IamSumitI

    Hii..
    It looks like your problem is solved ..So make your thread title as SOLVED.
    thanks

  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    7 Posts
    3k Views
    S

    No it is not Qt application. Its airplay where mobile screen is replicated on HDMI display(primary).

  • Caputuring data in qt in windows

    4
    0 Votes
    4 Posts
    2k Views
    V

    hi
    how to get start time,end time,%cpu,%mem of any application(like firefox) in windows in qt code

    [quote author="IamSumit" date="1403699138"]hii
    http://www.codeproject.com/Articles/3921/Disk-free-space

    (Edited:Use Native API-MSDN for all information)[/quote]

  • Qt Installation on Xubuntu 13.1

    15
    0 Votes
    15 Posts
    6k Views
    C

    I fear the Xubuntu running on your Odroid is not 100% compatible - that seems to be the reason why the messages are similar to a 32/64bit mix.
    I do not want to lead you the wrong path so hopefully you'll find a solution as you could already install the Qt 4 versions.

  • Please help on this error

    3
    0 Votes
    3 Posts
    1k Views
    A

    It is possible that OS driver does not support OpenGL 2.0 (I guess)
    Check what version of OpenGL is supported by a graphics card.
    Also you may try to use different version of Qt for Windows.
    Qt for windows comes in two editions OpenGL and ANGLE.
    "See the differences between two versions":http://qt-project.org/wiki/Qt-5-on-Windows-ANGLE-and-OpenGL

  • [Solved] Qml component property accessing

    11
    0 Votes
    11 Posts
    4k Views
    A

    main.qml
    @import QtQuick 2.0

    Item{
    id:root
    width: 640
    height: 540
    property int count:0
    property var rectangle:[]

    Rectangle {
    id:rect
    anchors.fill: parent
    MouseArea {
    anchors.fill: parent
    onClicked: {

    rectangle[count]=Qt.createComponent("Rect.qml").createObject(parent, {x: mouseX, y: mouseY})

    count++

    //here we can create number of rectangles,
    //rectangle[0].width will have the width of first rectangle
    //rectangle[0].height will have the height of first rectangle
    //rectangle[0].x will have the xpos of first rectangle
    //rectangle[0].y will have the ypos of first rectangle
    /editing a rectangle after its creation will be automatically updated in the corresponding array,so we need not to be care about that/
    //count will have number of rectangles created

    }
    }

    }
    }

    @

    Rect.qml
    @

    import QtQuick 2.0

    Rectangle {
    id: rect
    color: "yellow"
    width: 50
    height: 50
    MouseArea {
    id: right

    width: 8 height: parent.height anchors.right: parent.right property int oldMouseX hoverEnabled: true onPressed: { oldMouseX = mouseX } onPositionChanged: { if (pressed) { rect.width = rect.width + (mouseX - oldMouseX) } } }

    }

    @

  • Qt/C++ desktop application developer needed

    2
    0 Votes
    2 Posts
    2k Views
    M

    Does it include GUI related work in Qt?
    If yes, feel free to reach me at monalisa.kanungo@gmail.com

  • 0 Votes
    2 Posts
    3k Views
    SGaistS

    Hi,

    It means that you are trying to access a file already opened in another process that is using it e.g. deleting an open file.

    What does it have to do with Qt ?

  • 0 Votes
    5 Posts
    2k Views
    ?

    Glad to hear from you

  • Spanning horizontal header

    2
    0 Votes
    2 Posts
    4k Views
    ?

    I guess this is the smae post in stackOverflow,

    http://stackoverflow.com/questions/22755171/spanning-horizontal-header-in-qt

    Please mark this as solved if you got the right answer.

  • Read xml file in QML

    7
    0 Votes
    7 Posts
    5k Views
    ?

    Using contextProperty() you can easily connect C++ class inside QML files. Call the C++ functions for read/write XML files.
    check this, http://qt-project.org/doc/qt-5/qqmlcontext.html#setContextProperty

  • 0 Votes
    12 Posts
    9k Views
    ?

    [quote author="Vishva" date="1382966771"]!http://www.thedazzlersinc.com/source/wp-content/uploads/2012/06/flow.png(img)![/quote]

    Why dont you use stack concept in Qt, using push and pop for showing parent and child.

  • Qt Quick components fo ARM platform

    1
    0 Votes
    1 Posts
    980 Views
    No one has replied
  • 0 Votes
    1 Posts
    936 Views
    No one has replied