Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. General talk
  3. The Lounge
  4. Submitting Qt Tutorials

Submitting Qt Tutorials

Scheduled Pinned Locked Moved The Lounge
5 Posts 2 Posters 2.0k Views
  • 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 Offline
    A Offline
    androssofer
    wrote on last edited by
    #1

    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
    0
    • M Offline
      M Offline
      mhcrnl
      wrote on last edited by
      #2

      In wiki you can.

      Salutare !!!

      1 Reply Last reply
      0
      • A Offline
        A Offline
        androssofer
        wrote on last edited by
        #3

        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
        0
        • M Offline
          M Offline
          mhcrnl
          wrote on last edited by
          #4

          @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
          0
          • M Offline
            M Offline
            mhcrnl
            wrote on last edited by
            #5

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

            Salutare !!!

            1 Reply Last reply
            0

            • Login

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • Users
            • Groups
            • Search
            • Get Qt Extensions
            • Unsolved