Difference between revisions of "Installing Qt SDK from scratch"

From Granite Devices Knowledge Wiki
Jump to: navigation, search
[checked revision][checked revision]
(Created page with "Installing open source Qt with compiler and IDE for Windows may be done by following this article. ==Steps== #Navigate to http://qt-project.org/downloads and download the late...")
 
m (Text replacement - "{{param|GUI}}" to "GUI")
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
Installing open source Qt with compiler and IDE for Windows may be done by following this article.
+
Installing open source Qt with compiler and IDE for Windows may be done by following the steps below.
==Steps==
+
==Installation steps==
#Navigate to http://qt-project.org/downloads and download the latest '''Qt Online Installer for Windows'''.
+
#Navigate to http://www.qt.io/download-open-source/ and download the latest Open Source Qt installer.
#Launch the installer and make sure that Qt library, Qt Creator and MinGW has been selected  
+
#Launch the installer and make sure that a Qt library (4.x or 5.x), Qt Creator and MinGW has been selected <br/>[[File:Qt installer win.png]]
[[File:Qt installer win.png]]
+
 
#Click next to begin installation
 
#Click next to begin installation
 +
#All done! Launch Qt Creator
 +
 +
==Using an example project==
 +
===Opening and building===
 +
#Open the project (.pro) file from Qt Creator
 +
#If the project is opened first time, a following style dialog will show up <br/>[[File:Qt open project.png]]
 +
#Check that correct Qt version has been ticked. In this case we installed MinGW compiler, so choose it. Untick all other Qt versions.
 +
#Click Configure project.
 +
#Now the project is open and may be browsed and edited <br/>[[File:Qt_build_project.png]]
 +
#Hit '''Ctrl+B''' to build a project or '''Ctrl+R''' to run it<br/>
 +
{{tip|If something goes wrong in configuration and project refuses to compile even if the code is fine, you may start over by deleting the ''somefile.pro.user'' file from the project folder and Qt Creator will show up the configuration dialog again.}}
 +
===Editing===
 +
To create new controls in the [[GUI]], expand Forms from the projects pane and doubleclick the .ui file. In this example we add a button to the GUI:
 +
#Double click '''.ui''' file to open a UI editor <br/>[[File:Qt edit ui.png]]
 +
#Drag'n'drop a '''Push button''' from left side list to the UI
 +
#Double click the new button to the change the text from "Push button" to anything you want on it. Also rename the object from the right side pane ('''objectName''' line).<br/>[[File:Qt_newbutton.png]]
 +
#Select the button and right-click it to and choose '''Go to slot...'''
 +
#Choose '''clicked()''' from the list and click Ok.
 +
#A new function will be created to the code. The code will be executed on when the button is clicked.
 +
 +
The generated code looks like:
 +
 +
<code>void MW::on_mybutton_clicked()
 +
{
 +
   
 +
}
 +
</code>
 
[[category:Development]]
 
[[category:Development]]

Latest revision as of 19:59, 28 August 2015

Installing open source Qt with compiler and IDE for Windows may be done by following the steps below.

Installation steps[edit | edit source]

  1. Navigate to http://www.qt.io/download-open-source/ and download the latest Open Source Qt installer.
  2. Launch the installer and make sure that a Qt library (4.x or 5.x), Qt Creator and MinGW has been selected
    Qt installer win.png
  3. Click next to begin installation
  4. All done! Launch Qt Creator

Using an example project[edit | edit source]

Opening and building[edit | edit source]

  1. Open the project (.pro) file from Qt Creator
  2. If the project is opened first time, a following style dialog will show up
    Qt open project.png
  3. Check that correct Qt version has been ticked. In this case we installed MinGW compiler, so choose it. Untick all other Qt versions.
  4. Click Configure project.
  5. Now the project is open and may be browsed and edited
    Qt build project.png
  6. Hit Ctrl+B to build a project or Ctrl+R to run it

Editing[edit | edit source]

To create new controls in the GUI, expand Forms from the projects pane and doubleclick the .ui file. In this example we add a button to the GUI:

  1. Double click .ui file to open a UI editor
    Qt edit ui.png
  2. Drag'n'drop a Push button from left side list to the UI
  3. Double click the new button to the change the text from "Push button" to anything you want on it. Also rename the object from the right side pane (objectName line).
    Qt newbutton.png
  4. Select the button and right-click it to and choose Go to slot...
  5. Choose clicked() from the list and click Ok.
  6. A new function will be created to the code. The code will be executed on when the button is clicked.

The generated code looks like:

void MW::on_mybutton_clicked() {

}