Qt is a cross-platform application development framework widely used for the development of GUI programs.

learn more… | top users | synonyms

46
votes
2answers
4k views

What C++ Smart Pointer Implementations are available?

Comparisons, Pros, Cons, and When to Use? This is a spin-off from a garbage collection thread where what I thought was a simple answer generated a lot of comments about some specific smart pointer ...
91
votes
2answers
33k views

How to build Qt for Visual Studio 2010

I struggled finding a how-to which provides a stable solution for using Qt with Visual Studio 2010, so after collecting all the bits of information and some trial and error, I would like to write my ...
30
votes
5answers
74k views

Adding external library into Qt Creator project

How can I add external library into a project built by Qt Creator RC1 (version 0.9.2)? For example, the win32 function EnumProcesses() requires Psapi.lib to be added in the project to build.
104
votes
12answers
56k views

Java Swing or Java Qt? [closed]

Can someone with extensive experience with both Qt and Java Swing please discuss whether you would use Swing or Qt under Java, and why? Secondly, what is the business impact of using Qt? Is it ...
13
votes
8answers
2k views

Gui toolkits, which should I use?

I am writing a fairly large and complex data analysis program and I have reached the point where I think it is about time to build a GUI for the program. So my question is: Which GUI toolkit should I ...
18
votes
3answers
26k views

Qt static linking and deployment

I am trying to deploy(release to public) a simple qt application I made recently, but got stuck at static linking qt libs. I followed the guide on qt docs to re-build qt and my app statically. But ...
26
votes
4answers
12k views

Memory management in Qt?

I'm quite new to Qt and am wondering on some basic stuff with memory management and the life of objects. When do I need to delete / destroy my objects? Is any of this handled automatically? In the ...
19
votes
5answers
12k views

Qt Tutorials? [closed]

Does anyone know of a great Qt tutorial for using the designer, I'm new to Qt but I'm intermediate in C++.
23
votes
1answer
13k views

what is the correct way to implement a QThread… (example please…)

The Qt documentation for QThread says to create a class from QThread, and to implement the run method. Below is taken from the 4.7 Qthread documentation... To create your own threads, subclass ...
31
votes
5answers
6k views

Detect if stdin is a terminal or pipe in C/C++/Qt?

When I execute "python" from the terminal with no arguments it brings up the Python interactive shell. When I execute "cat | python" from the terminal it doesn't launch the interactive mode. Somehow, ...
21
votes
1answer
10k views

Serialization with Qt

I am programming a GUI with Qt library. In my GUI I have a huge std::map. "MyType" is a class that has different kinds of fields. I want to serialize the std::map. How can I do that? Does Qt ...
11
votes
3answers
5k views

How to know when a web page is loaded when using QtWebKit?

Both QWebFrame and QWebPage have void loadFinished(bool ok) signal which can be used to detect when a web page is completely loaded. The problem is when a web page has some content loaded ...
13
votes
6answers
11k views

how to convert an opencv cv::Mat to qimage

I am wondering how would I convert the OpenCV C++ standard cv::Mat type to Qimage. I have been searching around, but have no luck. I have found some code that converts the IPlimage to Qimage, but that ...
12
votes
2answers
2k views

Image scaling (KeepAspectRatioByExpanding) through OpenGL

I'm trying to implement image scaling in OpenGL using only glTexCoord2f() and glVertex2f(). Let me explain: after loading a QImage and sending it to the gpu with glTexImage2D() I have to perform ...
2
votes
7answers
12k views

Hide console of Windows Application

I have a Qt application, and when I run this application, there is a console opening behind it. In development it is nice because i see debug outputs on the console, but when I want to give this ...
42
votes
13answers
2k views

At what point is it worth using a database?

I have a question relating to databases and at what point is worth diving into one. I am primarily an embedded engineer, but I am writing an application using Qt to interface with our controller. ...
20
votes
3answers
19k views

Compiling Qt 4.8.x for Visual Studio 2012

What steps should I take to compile Qt (version 4.8.x) for Visual Studio 2012? I already carefully followed the instructions in the accepted answer of this question (which is for VS 2010), but WebKit ...
22
votes
2answers
30k views

How to emit cross-thread signal in Qt?

Qt documentation states that signals and slots can be direct, queued and auto. It also stated that if object that owns slot 'lives' in a thread different from object that owns signal, emitting such ...
18
votes
2answers
636 views

In a templated derived class, why do I need to qualify base class member names with “this->” inside a member function?

While I investigate source code of Qt I saw that trolltech guys explicitly use this keyword to access a field on destructor. inline ~QScopedPointer() { T *oldD = this->d; ...
10
votes
4answers
8k views

How to make item view render rich (html) text in Qt

Suppose my model has items with the following string for Qt::DisplayRole <span>blah-blah <b>some text</b> other blah</span> I want QTreeView (actually, any item view) to ...
6
votes
3answers
5k views

how to get vendor id and product id of a plugged usb device on windows

I am using Qt on windows platform. i want to get and display vendor id and product id of a plugged usb device from my local system. Below is my full source code to get the vendor id and product id ...
9
votes
4answers
3k views

Qt LGPL licencing for a free application with closed source

I'm working on an application developed with Qt 4.6.2. I'm linking dynamically and I don't want to share my source code. The application is totally free and I don't plan on selling any part of it. I ...
5
votes
6answers
2k views

Difference between creating object with () or without

i just run into the problem error: request for member ‘show’ in ‘myWindow’, which is of non-class type ‘MainGUIWindow()’ when trying to compile a simple qt-application: #include ...
2
votes
1answer
2k views

Qt dll deployment on windows

I have got a strange problem with my deployment of an Qt application. I created a Zip with all the necessary dlls and my binary on my Windows XP 32 bit box, where the application worked just fine, ...
5
votes
3answers
10k views

Upload file with POST method on Qt4

I'm looking for a basic code samples of how to upload files to server with HTTP POST method on Qt. My task: I have simple Qt program and I need to select any image file from the local host and upload ...
87
votes
15answers
58k views

How do you properly use namespaces in C++?

I come from a Java background, where packages are used, not namespaces. I'm used to putting classes that work together to form a complete object into packages, and then reusing them later from that ...
35
votes
4answers
20k views

How to specify different Debug/Release output directories in QMake .pro file

I have a Qt project and I would like to output compilation files outside the source tree. I currently have the following directory structure: / |_/build |_/mylib |_/include |_/src |_/resources ...
10
votes
3answers
3k views

How to tell QWebPage not to load specific type of resources?

How to tell QWebPage not to load specific type of resources like js, css or png?
12
votes
5answers
5k views

How do I find the DOM node that is at a given (X,Y) position? (Hit test)

I have the coordinates (X,Y) of a point in an HTML document. How do I determine what DOM node is at those coordinates? Some ideas: Is there a DOM hit test function that I missed, that takes a point ...
35
votes
6answers
36k views

How to convert QString to std::string?

I am trying to do something like this: QString string; // do things... std::cout << string << std::endl; but the code doesn't compile. How to output the content of qstring into the ...
32
votes
7answers
22k views

Qt commercial licenses? [closed]

Does anyone know the details of the Qt commercial license? Cost? Hidden policy gotchas, single and multi platform etc? Forgive my laziness, however their website offers few details and I thought I ...
17
votes
3answers
9k views

QT4: Transparent Window with rounded corners

How can i create a partially transparent window with rounded borders (no standard borders)? (i used Qt::FramelessWindowHint to disable standard borders) I tried stylesheets, but border-radius and ...
33
votes
3answers
15k views

Qt question: What does the Q_OBJECT macro do? Why do all Qt objects need this macro?

I just started using Qt and noticed that all the example class definitions have the macro Q_OBJECT as the first line. What is the purpose of this preprocessor macro?
15
votes
3answers
2k views

How to avoid entering library's source files while debugging in Qt Creator with gdb?

How can I configure Qt Creator and/or gdb so that while debugging my program using Qt libraries the debugger would avoid stepping into Qt's source files?
13
votes
5answers
14k views

OpenCV with other GUI (like Qt or WxWidgets) on Win32 VC++

I want to use OpenCV's image processing functions, but not the OpenCV GUI. I'm using OpenCV 2.0. I will use either Qt4 or WxWidgets for GUI functions. I compile with VC++ 2008 Express (VC++ 9.0). ...
6
votes
4answers
3k views

How to force my application to open one exe only? qt, linux

I want my application to open only one process, i.e. if the one process is already opened and the user want to open the exe again - it won't open another process. how can I do it in Qt - linux? 10x! ...
4
votes
1answer
4k views

Qt: Best practice for a single instance app protection

QSingleApplication? QMutex? QSharedMemory? I'm looking for something that will work smoothly in Windows, OSX and Linux (Ubuntu). Using Qt 4.7.1
0
votes
3answers
8k views

VC++ compiler for Qt Creator

I want to use the VC++ toolset to build programs for XP and Vista, but I do not want to buy the IDE, because I want to use Qt Creator. I would download the Windows SDK and the Windows Debugging ...
78
votes
14answers
16k views

Is Qt worth learning? [closed]

I am a C# developer and work on Windows, but back in High School I took some C++ classes. We worked on console applications only. I want to learn C++ GUI programming. I have been looking at Qt and was ...
41
votes
4answers
32k views

Building Qt Xcode Projects From the Command Line

I've been playing around with Qt for a few hours now. I found that qmake produces Xcode project files on Mac OS X instead of good ol' makefiles. I don't want to launch Xcode every time I want to build ...
12
votes
8answers
3k views

Is there a better layout language than HTML for printing?

I'm using Python and Qt 4.4 and I have to print some pages. Initially I thought I'd use HTML with CSS to produce those pages. But HTML has some limitations. Now the question is: is there anything ...
31
votes
2answers
21k views

Configuring the GCC compiler switches in Qt, QtCreator, and QMake

I recently tried to use Qt Creator 1.3.2, Qt 4.6.2, and GCC 4.4.0 (32-bit version) on Windows 7 (64-bit) to compile an application using some of the experimental C++0x extensions and encountered the ...
7
votes
3answers
5k views

Printing the stack trace in C++ (MSVC)?

In my C++ application (developed with Visual Studio 2003) and Qt4, I'd like to print the stack trace from a specific line of code, either to the console output or into a file. What would it take ? Is ...
23
votes
4answers
16k views

Best JSON parser for Qt? [closed]

I'm using QT for Symbian and need a simple json parser. I need to be able to go from json to Qt-variant and the other way around. Is there a simple json parser that I can use? I don't want to write my ...
8
votes
12answers
3k views

Enabling JPEG support for QImage in py2exe-compiled Python scripts?

I'm trying to use a JPEG image in a QImage object from a Python script, with PyQt4. The script itself works perfectly, the image loads and can be manipulated and rendered and all. However, when I ...
4
votes
1answer
2k views

How to get a list video capture devices NAMES (web cameras) using Qt (crossplatform)? (C++)

So all I need is simple - a list of currently avaliable video capture devices (web cameras). I need it in simple C++ Qt console app. By list I mean something like such console output: 1) Asus Web ...
11
votes
5answers
8k views

How can I POST data to a url using QNetworkAccessManager

I have a webservice that I need to POST some data to using Qt. I figured that I can use a QByteArray when POSTing to the web service. My question is, how can I format this array in order to be parsed ...
6
votes
4answers
8k views

QString to char conversion

I was trying to convert a QString to char* type by the following methods, but they don't seem to work. //QLineEdit *line=new QLineEdit();{just to describe what is line here} QString ...
4
votes
3answers
3k views

Should I cross-compile in Linux or Windows?

To create a .exe in Linux using Qt SDK, should I cross compile my application in Linux or cross-compile my application in Windows?
19
votes
10answers
31k views

Undefined reference to vtable. Trying to compile a Qt project

I'm using Code::Blocks 8.02 and the mingw 5.1.6 compiler. I'm getting this error when I compile my Qt project: C:\Documents and Settings\The Fuzz\Desktop\GUI\App_interface.cpp|33|undefined ...

1 2 3 4 5 34