Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Submitting Qt Tutorials

    The Lounge
    2
    5
    1754
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • A
      androssofer last edited by

      Hi,

      So I looked for a tutorial on making an XBMC remote in Qt, but couldn't find one..

      So I made my own.. Is there anywhere I would submit it? Not sure where in the forum it would fit..

      regards

      Andy

      "Those who make peace protest impossible make violent revolution inevitable.."

      1 Reply Last reply Reply Quote 0
      • M
        mhcrnl last edited by

        In wiki you can.

        Salutare !!!

        1 Reply Last reply Reply Quote 0
        • A
          androssofer last edited by

          Seems obvious now.. haha.

          Thanks!

          for the record here is the page:

          http://qt-project.org/wiki/XBMC-Remote-code-example-using-Qt-C

          "Those who make peace protest impossible make violent revolution inevitable.."

          1 Reply Last reply Reply Quote 0
          • M
            mhcrnl last edited by

            @import QtQuick 2.0
            import Ubuntu.Components 0.1
            //import QtQuick.Controls 1.0
            //import "ContactModel.qml"

            Rectangle {
            width: 360
            height: 360
            ListModel {
            id:contactModel
            ListElement{
            name:"mihai cornel"
            number: "0722270796"
            }
            ListElement{
            name:"mihai vasuile"
            number:"8907651"
            }
            }

            ListView{
                width:180; height: 200
                model: contactModel
                anchors.centerIn: parent
                delegate: Text {
                    text: name + ": "+number
                    //anchors.bottom:
                }
            }
            
            Button{
                id:inchide
               // text: qsTr("Inchide")
                color: "white"
                //Image: "/home/mhcrnl/Desktop/icons/close.png"
                //background:"image: /home/mhcrnl/Desktop/icons/close.png"
                iconSource: "/home/mhcrnl/Desktop/icons/close.png"
            
                onClicked: {
                    Qt.quit()
                }
            }
            
            Text {
                text: qsTr("Hello World")
                anchors.centerIn: parent
            }
            MouseArea {
                anchors.fill: parent
                onClicked: {
                    Qt.quit();
                }
            }
            

            }
            @

            Salutare !!!

            1 Reply Last reply Reply Quote 0
            • M
              mhcrnl last edited by

              !https://lh5.googleusercontent.com/-K_iN7by7hME/UvKTH2PqjbI/AAAAAAAAGgQ/3rlDHOSeMkI/w616-h636-no/snapshot15.png(ima)!

              Salutare !!!

              1 Reply Last reply Reply Quote 0
              • First post
                Last post