How and where to start Qt5
-
wrote on 29 Jan 2016, 20:51 last edited by tomy
@mrjj said:
note part 1:
I was trying to say that using visual studio can also be good.
However, vs 2015 is so new that im not sure there is good support yet.
So I suggest just use the standard setup so U can get going fast.OK. I tried to install Qt creator in its normal way (connecting to the Qt resources) but faced an error. It's in the link below:
http://uploads.im/QXBsp.png
Is there any other way to download that Qt creator completely as a file please?@mrjj said:
sorry for the confusion.
Not at all, that's fine :-)
-
hi
http://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-windows-x86-mingw492-5.5.1.exe
Note: this is full packet and do not use visual studio but mingw compiler. -
wrote on 29 Jan 2016, 21:15 last edited by
@mrjj said:
http://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-windows-x86-mingw492-5.5.1.exe
Thanks. I'm downloading it now. But one small question! In the normal method (downloading through Qt) that installation would occupy about 3.8 GB on the computer but this file's size is even less than 1 GB! should I update/add the missed stuff to that smaller one after installing?
-
hi u get a maintenance tool that can update stuff/add elements.
-
wrote on 29 Jan 2016, 21:46 last edited by
Thank you.
-
@tomy
as final remark.
this book
http://www.bogotobogo.com/cplusplus/files/c-gui-programming-with-qt-4-2ndedition.pdf
i found pretty ok when starting with qt.
Its for qt4 but much of it still the same in Qt5.5. -
To develop for iOS and OS X you will indeed need to install Qt Creator on your Mac machine (be it virtual or not) but you will be using the same for both platform. Xcode is mandatory to develop for OS X and iOS. It provides the SDKs and emulators needed as well as the software stack needed to connect to your device and make your application available through the App Store.
-
wrote on 30 Jan 2016, 05:32 last edited by
@mrjj said:
@tomy
as final remark.
this book
http://www.bogotobogo.com/cplusplus/files/c-gui-programming-with-qt-4-2ndedition.pdf
i found pretty ok when starting with qt.
Its for qt4 but much of it still the same in Qt5.5.I have that book but haven't read it still! I like to start straightly with Qt5. Anyway, thanks for your remarks :-)
@SGaist said:
To develop for iOS and OS X you will indeed need to install Qt Creator on your Mac machine (be it virtual or not) but you will be using the same for both platform. Xcode is mandatory to develop for OS X and iOS. It provides the SDKs and emulators needed as well as the software stack needed to connect to your device and make your application available through the App Store.
Thanks, these are great info. Now I've VmWare workstation containing Win XP, Win 10, Linux(Ubuntu) and FreeBSD installed on my Win 7 machine. I'll add another virtual machine (the Mac OS) on it before starting developing iOS apps.
Thanks. :-) -
wrote on 2 Feb 2016, 13:49 last edited by tomy 2 Feb 2016, 13:50
Hi guys,
Along the way I chose for starting to learn Qt 5, I went to create a Qt Quick Application in here: http://doc.qt.io/qtcreator/qtcreator-transitions-example.html
Now one of my problems is that I cannot find that (Export) button (said in item #11 of Creating the Main View section of the above link) in the navigator pane on my Qt creator IDE :-(
Can anybody please help me? -
Hi guys,
Along the way I chose for starting to learn Qt 5, I went to create a Qt Quick Application in here: http://doc.qt.io/qtcreator/qtcreator-transitions-example.html
Now one of my problems is that I cannot find that (Export) button (said in item #11 of Creating the Main View section of the above link) in the navigator pane on my Qt creator IDE :-(
Can anybody please help me?wrote on 2 Feb 2016, 14:01 last edited by@tomy This button is aside the "eye" button for each element listed in the navigator pane.
In the example, in the bottom left, you will see the navigator panel. The panel contains Item which contains "Icon" and at the end of this "Icon" row you will find the toggle property export and toggle visibity controls.
Hope this helps. If not just send me a screenshot and I will return it to you with a marking. -
wrote on 2 Feb 2016, 21:54 last edited by tomy 2 Feb 2016, 22:00
@Charby said:
@tomy This button is aside the "eye" button for each element listed in the navigator pane.
In the example, in the bottom left, you will see the navigator panel. The panel contains Item which contains "Icon" and at the end of this "Icon" row you will find the toggle property export and toggle visibity controls.
Hope this helps. If not just send me a screenshot and I will return it to you with a marking.Thanks for the reply.
I retried that application creation for 5 times from beginning to the end, but neither that export button appeared nor my code (the one below) is exactly like this (http://doc.qt.io/qtcreator/qtcreator-transitions-mainform-ui-qml.html) :-(
I don't know how I can learn Qt from the documentation if I have those many problems at the first step! :-( Very disappointing.import QtQuick 2.5
import QtQuick.Controls 1.4
import QtQuick.Layouts 1.2Item {
id: item1
width: 640
height: 480property alias button1: button1 property alias button2: button2 Image { id: icon x: 10 y: 20 source: "qt-logo.PNG" } Rectangle { id: topLeftRect width: 46 height: 55 color: "#00000000" radius: 6 anchors.left: parent.left anchors.leftMargin: 10 anchors.top: parent.top anchors.topMargin: 20 border.color: "#808080" MouseArea { id: mouseArea1 anchors.fill: parent } } Rectangle { id: middleRightRect x: -9 y: -7 width: 46 height: 55 color: "#00000000" radius: 6 anchors.right: parent.right anchors.rightMargin: 10 anchors.horizontalCenter: parent.horizontalCenter border.color: "#808080" MouseArea { id: mouseArea2 anchors.fill: parent } } Rectangle { id: bottomLeftRect y: 1 width: 46 height: 55 color: "#00000000" radius: 6 anchors.left: parent.left anchors.leftMargin: 10 anchors.bottom: parent.bottom anchors.bottomMargin: 20 border.color: "#808080" MouseArea { id: mouseArea3 anchors.fill: parent } }
}
Apparently uploading images to the posts is not allowed so I uploaded my design page of the IDE of that code here: http://uploads.im/ip2hb.png
-
@Charby said:
@tomy This button is aside the "eye" button for each element listed in the navigator pane.
In the example, in the bottom left, you will see the navigator panel. The panel contains Item which contains "Icon" and at the end of this "Icon" row you will find the toggle property export and toggle visibity controls.
Hope this helps. If not just send me a screenshot and I will return it to you with a marking.Thanks for the reply.
I retried that application creation for 5 times from beginning to the end, but neither that export button appeared nor my code (the one below) is exactly like this (http://doc.qt.io/qtcreator/qtcreator-transitions-mainform-ui-qml.html) :-(
I don't know how I can learn Qt from the documentation if I have those many problems at the first step! :-( Very disappointing.import QtQuick 2.5
import QtQuick.Controls 1.4
import QtQuick.Layouts 1.2Item {
id: item1
width: 640
height: 480property alias button1: button1 property alias button2: button2 Image { id: icon x: 10 y: 20 source: "qt-logo.PNG" } Rectangle { id: topLeftRect width: 46 height: 55 color: "#00000000" radius: 6 anchors.left: parent.left anchors.leftMargin: 10 anchors.top: parent.top anchors.topMargin: 20 border.color: "#808080" MouseArea { id: mouseArea1 anchors.fill: parent } } Rectangle { id: middleRightRect x: -9 y: -7 width: 46 height: 55 color: "#00000000" radius: 6 anchors.right: parent.right anchors.rightMargin: 10 anchors.horizontalCenter: parent.horizontalCenter border.color: "#808080" MouseArea { id: mouseArea2 anchors.fill: parent } } Rectangle { id: bottomLeftRect y: 1 width: 46 height: 55 color: "#00000000" radius: 6 anchors.left: parent.left anchors.leftMargin: 10 anchors.bottom: parent.bottom anchors.bottomMargin: 20 border.color: "#808080" MouseArea { id: mouseArea3 anchors.fill: parent } }
}
Apparently uploading images to the posts is not allowed so I uploaded my design page of the IDE of that code here: http://uploads.im/ip2hb.png
@tomy said:
I uploaded my design page of the IDE of that code here: http://uploads.im/ip2hb.png
The "Export" button is a new feature in Qt Creator 3.6. It looks like you are using Qt Creator 3.5 (which is the version that was bundled with Qt 5.5.1)
If you want to use that tutorial as a starting point, you have 2 options:
- Use the older version of the documentation. In Qt Creator 3.5, click Help -> Index and search for "Creating a Qt Quick Application", OR
- Go to http://www.qt.io/download-open-source/ and download Qt Creator 3.6 (Note: This means you will have 2 copies of Qt Creator on your system)
-
wrote on 3 Feb 2016, 11:00 last edited by
As a rank beginner myself I'm following this thread with some interest.
Please view this post as beginner's notes to add to advice you receive from experts.I had to jump through the same hoops in getting Qt 5.5.1 up and running.
Recently I started on my Qt 5+ learning curve by first installing the older version of Qt 4 from Ubuntu Software Centre. But I soon realised that I needed Qt 5.5.1.
So I uninstalled all older versions of Qt to avoid conflicts and started afresh.
It seems that you are on Windows 64 and previously you installed Qt 5.1.0.
My experiences are on Linux Ubuntu 14.04 32bit.
However I see that you have installed several OS virtual machines including Ubuntu so you could use Ubuntu VM to try the following Qt 5.5.1 installation workflow.http://softmemos.blogspot.co.uk/2015/11/qt551-on-ubuntu-1404-at-virtualbox.html
Note: VirtualBox is similar to VMWare.
I followed just Step 2A: The easy way
and Qt 5.5.1 was installed successfully in directory /opt/qt55 (I didn't use /opt/qt5.5.1 as suggested).More details here on Qt 5.5.1 PPA installation on Ubuntu ..
https://launchpad.net/~beineri/+archive/ubuntu/opt-qt551-trustyAfter installation run terminal commands
qtchooser -print-env
and
qmake -vNow since I wanted Python bindings and to use eric6 Python IDE I next installed PyQt5.
https://www.riverbankcomputing.com/software/pyqt/download5
Prerequisites .. qscintilla and eric6 installation advice found here ...
http://stackoverflow.com/questions/30730288/how-do-i-compile-qscintilla-and-eric6-on-linuxAfter all this I now have under Applications > Programming these launchers
eric6
Qt 5.5 Assistant
Qt 5.5 Creator (this is Qt Creator 3.6.0 based on Qt 5.5.1)
Qt 5.5 Designer
Qt 5.5 LinguistI use Sublime Text 3 as my editor.
eric6 launches Qt 5.5 Designer from its IDE.
...Regarding getting into Qt 5.5.1 I refer to examples in Qt Creator to get an idea of the app layout.
Qt 5 + documentation does seem to be scattered around so it helps to keep notes.
I use CherryTree from http://www.giuspen.com/cherrytree/ as notes manager.
...This book can be added to your reading list.
https://qmlbook.github.io/ -
wrote on 3 Feb 2016, 11:05 last edited by tomy 2 Mar 2016, 11:13
Thank you very much eureka for your comprehensive explanations. I want to firstly go for Qt on Windows. Some later time I may go for it on Linux. At that time I will follow and do your instructions carefully. :-)
Thank you JKSH.
I went for your link and the system is downloading it. But apparently this one is also Qt creator 5.5! Further more, I had tried downloading the Qt using that file before. And I had faced an error when downloading. The error at the time was: http://uploads.im/QXBsp.png
But this I hope it can be downloaded successfully.If that version be downloaded, is it the most recent version (Qt creator 3.6) please?
-
Thank you very much eureka for your comprehensive explanations. I want to firstly go for Qt on Windows. Some later time I may go for it on Linux. At that time I will follow and do your instructions carefully. :-)
Thank you JKSH.
I went for your link and the system is downloading it. But apparently this one is also Qt creator 5.5! Further more, I had tried downloading the Qt using that file before. And I had faced an error when downloading. The error at the time was: http://uploads.im/QXBsp.png
But this I hope it can be downloaded successfully.If that version be downloaded, is it the most recent version (Qt creator 3.6) please?
@tomy said:
I went for your link and the system is downloading it. But apparently this one is also Qt creator 5.5!
It is useful to know the difference between Qt and Qt Creator:
- Qt is the library. Qt contains the C++ classes that you can use in your app. The latest version is Qt 5.5.1.
- Qt Creator is the Integrated Development Environment (IDE). Qt Creator lets you manage multiple compilers and multiple versions of Qt. It also lets you write code and compile your app. The latest version is Qt Creator 3.6.0.
If you install Qt, it gives you the Qt library AND the Qt Creator IDE. However, Qt 5.5.1 only comes with Qt Creator 3.5.1.
If you install Qt Creator, you only get the IDE.
Right now, you already have Qt 5.5 and Qt Creator 3.5 in your system. You want to install Qt Creator 3.6, so you don't need to download Qt anymore.
Go to http://www.qt.io/download-open-source/ and click on "Qt Creator". Then, click on "Qt Creator 3.6.0 for Windows (80 MB)".
-
After you install Qt Creator 3.6.0, you need to do some setup, because does not know about the previous version that you installed:
- See Adding Compilers to tell Qt Creator where to find your compiler.
- See Adding Qt Versions to tell Qt Creator where to find the Qt binaries.
- Finally, see Adding Kits to tell Qt Creator how to combine your compiler with the Qt binaries.
-
wrote on 3 Feb 2016, 13:51 last edited by
@JKSH said:
However, Qt 5.5.1 only comes with Qt Creator 3.5.1.
I my Qt 5.5.1 installation (Ubuntu 14.04) when I click on Qt 5.5 Creator > Help
I see ... "Qt Creator 3.6.0
Based on Qt 5.5.1 (GCC 4.8.4, 32 bit)"just to add to the confusion.
-
wrote on 3 Feb 2016, 13:59 last edited by
@JKSH said:
Right now, you already have Qt 5.5 and Qt Creator 3.5 in your system.But surely the version of Qt shown in this link refers to Qt 5.1.0 .. not Qt 5.5?
http://uploads.im/QXBsp.png
/qt5/qt.510.win64_msvc2012_64 ... etc -
@JKSH said:
Right now, you already have Qt 5.5 and Qt Creator 3.5 in your system.But surely the version of Qt shown in this link refers to Qt 5.1.0 .. not Qt 5.5?
http://uploads.im/QXBsp.png
/qt5/qt.510.win64_msvc2012_64 ... etc@eureka said:
@JKSH said:
However, Qt 5.5.1 only comes with Qt Creator 3.5.1.
I my Qt 5.5.1 installation (Ubuntu 14.04) when I click on Qt 5.5 Creator > Help
I see ... "Qt Creator 3.6.0
Based on Qt 5.5.1 (GCC 4.8.4, 32 bit)"just to add to the confusion.
Did you use the Online installer? That lets you install multiple versions of Qt, and lets you upgrade Qt Creator to the latest version.
The Offline installer doesn't provide that. It only contains one fixed version of Qt and one fixed version of Qt Creator.
But surely the version of Qt shown in this link refers to Qt 5.1.0 .. not Qt 5.5?
http://uploads.im/QXBsp.png
/qt5/qt.510.win64_msvc2012_64 ... etcYes, that image shows an attempt to download Qt 5.1.0 via the Online installer.
But before that, @tomy already installed Qt 5.5.1 + Qt Creator 3.5.1 (using the Offline installer): https://forum.qt.io/topic/63499/how-and-where-to-start-qt5/21
-
wrote on 3 Feb 2016, 16:07 last edited by tomy 2 Mar 2016, 16:10
@JKSH said:
After you install Qt Creator 3.6.0, you need to do some setup, because does not know about the previous version that you installed:
- See Adding Compilers to tell Qt Creator where to find your compiler.
- See Adding Qt Versions to tell Qt Creator where to find the Qt binaries.
- Finally, see Adding Kits to tell Qt Creator how to combine your compiler with the Qt binaries.
Since I had the file qt-opensource-windows-x86-mingw492-5.5.1 (size = 997 MB) on my system so first I uninstalled it and tried to install Qt creator though the online method via that small file. And then when you said it's not needed to download/install Qt creator that way because I had it already, so I canceled the process and reinstalled the file above (997 MB) and then went for Qt Creator 3.6.0 for Windows (80 MB). Now I have two Qt creator icons on my desktop named Qt Creator 3.6.0 and Qt Creator (Community).
PS: When I installed the Qt creator (the 997 MB one) I selected all the options:
http://uploads.im/RuZQ9.pngNow the tasks I have done are:
For the #1 (Adding Compilers) whatever I could to do is in the link below:
http://uploads.im/5K23g.png
The Compiler path field and Platform codegen flags field are empty. I don't know the path of what file I should insert into those paths.For the #2 (Adding Qt Versions) I did this: http://uploads.im/mgBTo.png
And for the #3 (Adding Kits) I did this: http://uploads.im/kufsC.pngThen I recreated the project and the Export icons appeared this time :-)
Isn't there any wrong done task in my works please?
And which one of the Qt creator apps should I use for my projects, Qt Creator 3.6.0 or Qt Creator (Community) from now on please?
28/59