|
I recently started looking into Qt (I installed Qt 4.5.2 and installed their Eclipse-CDT plugin called "qt integration v1.5.2" and I will do all my development in Linux-Eclipse-CDT-QTintegration).
Originally I thought Qt was a straight vanilla C++ library...
Started by Trevor Boyd Smith on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Qt in particular doesn't look like straight vanilla C++ because like signals and slots; these extensions are implemented using Qt's moc, which acts as a C++Qt is a set of C++ libraries....
On some of what it has to offer.
|
|
I'm now with a idea to start the development of a bare bones Qt/GTK+-like framework, but I want to know some things before I start the creation of this project:
What is the structure of GTK+ and Qt? Do I need to develop a window manager to build my own...
Started by Nathan Campos on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
That sounds like a major....
Not start there?
GTK: git clone git://git.gnome.org/gtk+ Qt: git clone git://gitorious.org/qt/qt.git Ed You ask what the structure of GTK and Qt are, whether you need to write your own widow manager.
|
|
We're about to commit to Qt and C++ (sigh) to do some cross-platform development. The latest version of Qt 4.5 seems very nice as does the QT Creator IDE, which although simple compared to other IDEs, is a good way to get started.
I'm trying to understand...
Started by David on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I suppose this is really a question for the QT creator forum though, sounds like....
Can you edit you rebuild your app with QT creator environment.
I've never used QT creator environment, but I assume it spits out code afterward.
|
Ask your Facebook Friends
|
While attempting to link with QT 4.5 release, I run into this error message
fatal error C1047: The object or library file 'c:\qt\2009.02\qt\lib\qtmain.lib' was created with an older compiler than other objects; rebuild old objects and libraries
I have...
Started by Extrakun on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
From the comments in this thread it looks like Qt 4.5.0 now uses the /GL C:\Qt\4.5.1\mkspecs\win32-msvc2008\qmake.conf (or the one that corresponds to your version of MSVC that is created will not have....
But all the examples now run.
|
|
Platform: Windows XP, Qt Creator Ide 4.5.2
MySql is setup here as well.
I want to establish database connection with Qt and mysql. The line
QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL");
generates error like below: QSqlDatabase: QMYSQL driver ...
Started by Samir on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The output in my pc as instructed in the documentation is:
*C:>cd C:\qt-win-opensource-src-4.5.2\src\plugins\sqldrivers\mysql
C:\qt:\mysql-5.1.39-win32\include" "LIBS....
See the documentation.
You need to build the Qt/MySQL driver.
|
|
Hello.
Is it any uml-like modeling tool available that can design (draw) classes and can visually represent QT signals and slots, they connections?
Started by Eye of Hell on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
From the code, it should....
You create two objects and then connect them).
Also, most often, they are tightly bound in time and code (i.e .
These connections are dynamic, so I'm not sure it's even possible to represent them in a static way (as in a diagram) .
|
|
I realize that there have been similar questions, but they seem to have been from when Qt Creator was still in beta, so the answer might have changed since then:
We are going to start a project with a small amount of GUI that needs to work on Windows,...
Started by Rasmus Faber on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
It also integrates with git, subversion rudimentary refactoring....
It seems like Qt creator has really good code navigation features.
A familiar debugging enviroment across platforms, with support for stuff like Qt collections.
|
|
Hi!
I want to create a Qt popup window which will behave like a message box in Qt. That means the rest of the GUI must blocked until that popup window is dismissed. This may be a child question, but can anyone pls help me with this ?
Thanks... :)
Edit...
Started by Morpheus on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Users must finish interacting with the dialog and close it before they can access any other window in the application... .
Modal Dialogs
A modal dialog is a dialog that blocks input to other visible windows in the same application .
You can use QMessageBox.
|
|
Are there any GUI toolkits built on top of HTML Canvas like swing,swt,gtk or qt? So that it is possible to build applications like applets or flex gui:s inside the html canvas.
Started by Per Arneng on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
XUL is fully.
Never used it, but I know it uses the DOM and a subset of CSS plus it's own CSS-like properties, which when combined with HTML5 features like canvas can make some impressive gui's.
|
|
My initial goal was to get Qt Creator and Visual Studio 2008 to create compatible libraries, so what I've done so far was open a VS command prompt, go to my Qt folder and then run configure.exe followed by nmake to recompile the Qt libraries with VS. ...
Started by Graphics Noob on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Then add this QTDIR to....
The path and version will show repository.
Depending on what you downloaded Qt Creator uses gcc but you can specify alternative QT directories under Options > Qt4 > Qt Versions.
If you want the two).
|