Tagged Questions
Qt 4.x is a specific series of releases of the Qt application library. See the Qt tag for more information.
38
votes
11answers
3k views
Hidden features of Qt
A little is hidden in Qt given splendid documentation.
But given vastness of Qt functionality paradoxically many useful features have been overlooked by me (and reimplemented or work-arounded).
What ...
17
votes
3answers
9k views
How can I create a HTTP POST request with Qt 4.6.1?
How can I create a HTTP POST request with some URL encoded parameters using Qt 4.6.1?
I figured out that I can create a QNetworkRequest, set all the parameters there and send it via ...
16
votes
3answers
4k views
Using QTDesigner with PyQT and Python 2.6
I'm new to Python and am starting to teach myself GUI programming (hopefully) using PyQT4.7 and Python 2.6
I just downloaded the whole PyQT/QT4 package (including QTDesigner) from the PyQT website, ...
14
votes
1answer
406 views
Triple inheritance causes metaclass conflict… Sometimes
Looks like I stumbled upon a metaclass hell even when I didn't wanted anything to do with it.
I'm writing an app in Qt4 using PySide. I want to separate event-driven part from UI definition, which is ...
13
votes
3answers
4k views
How to integrate Boost.Asio main loop in GUI framework like Qt4 or GTK
Is there any way to integrate Boost.Asio with Qt4 (prefered) or GTK main loop?
GTK provides poll(2) like API so technically is should be possible. Qt provides its own networking layer, however I ...
12
votes
7answers
718 views
Should the name of my classes begin with 'Q' in Qt?
When I first started working with Qt, it was extremely annoying that every class has a name beginning with 'Q', but now I've got used to it.
I'm using Qt Creator, and it highlights code quite well.
...
11
votes
3answers
3k views
Visual C++ 2010 Express: How to use with Qt?
I'm confused about getting Qt working with Visual Studio Express. Most of the searches online have turned up instructions for compiling Qt using instructions such as:
Install MSVC2005 or ...
10
votes
10answers
1k views
Qt4.5 vs Cocoa for native Mac UI
Hey guys,
I've been developing for Windows and *nix platforms for quite some time, and am looking to move into Mac development. I am tossing up between using ObjC/Cocoa and C++/Qt4.5.
The C++/moc ...
10
votes
2answers
895 views
How signal and slots are implemented under the hood?
This question is already asked in this forum but I don't understand the concept.
I was reading around and it seems that signal and slots are implemented using function pointers i.e the signal is one ...
9
votes
1answer
4k views
what is the correct way to implement a QThread… (example please…)
The qt documentation for QThread, it 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 ...
9
votes
4answers
887 views
What features or concepts annoy you in Qt?
Qt is a nice framework and great UI toolkit and it has many useful features and concepts. Most of us probably agree that Trolltech, lately Nokia, have done pretty nice job developing it. One of the ...
9
votes
4answers
12k views
9
votes
1answer
4k views
Serialization with Qt
I am programming a GUI with Qt. In my GUI I have a huge std::map. And "MyType" is a class that has different kinds of filds. So, in a word, I want to serialize the std::map. How can I do that? Does Qt ...
9
votes
1answer
969 views
Using multiple QStyledItemDelegate with stylesheets
I'm creating a styled QTreeView using double-dispatch to resolve specific delegate for data items, which is working great. I subclassed the delegates from QStyledItemDelegate to take advantage of ...
8
votes
1answer
362 views
Showing a Hidden QTableView Column
I'm trying to do something that seems like it should be very simple, but the more I look into it I wonder if it's a Qt bug.
So, I have a QTableView that has columns that can be shown/hidden as the ...
8
votes
1answer
916 views
Exception handling doesn't work with Qt on Windows
I'm facing strange problem. Namely, Qt somehow turns off exception handling in my program. I can't catch any exception, and when I throw an exception application crashes.
I'm using Qt 4.7.0 (32 bit) ...
8
votes
4answers
2k views
Encrypt/Decrypt SQLite-database and use it “on the fly”
Here's the thing:
In my Qt4.6-Project, I use a SQLite-Database. This database shouldn't be unencrypted on my harddrive. So I want, that on every start of my program, the user gets asked to enter a ...
8
votes
3answers
744 views
Architecture for Qt SIGNAL with subclass-specific, templated argument type
I am developing a scientific data acquisition application using Qt. Since I'm not a deep expert in Qt, I'd like some architecture advise from the community on the following problem:
The application ...
8
votes
2answers
887 views
QTableView has unwanted checkboxes in every cell
I'm just getting started with Qt programming, and I'm trying to make a simple tabular data layout using a QTableView control with a model class of my own creation inheriting from QAbstractTableModel. ...
8
votes
6answers
858 views
Is there a good source for 3rd party QT GUI controls?
I have tried to find them through Google but haven't had much luck. I know the number of 3rd party controls is not as big as .NET or Java, but surely there are some out there better than what comes ...
8
votes
2answers
3k views
Qt: Defining a custom event type
I have created a custom event in my Qt application by subclassing QEvent.
class MyEvent : public QEvent
{
public:
MyEvent() : QEvent((QEvent::Type)2000)) {}
~MyEvent(){}
}
In order to ...
8
votes
6answers
1k views
Qt in a professional setting
While I have played with parts of Qt in the past I am thinking of putting some real effort into learning it but also wondering what the potential monetary payback might be down the road. So I have ...
8
votes
7answers
23k views
Building Qt 4.5 with Visual C++ 2010
Did somebody tried to build Qt 4.5 with Visual Studio 2010 (Beta 2)? Any hints on doing that successfuly?
Later edit
I tried to run configure from a Visual Studio 2010 console. There is no makespecs ...
7
votes
2answers
128 views
How to copy Qt runtime DLLs to project output
I have a simple project created in Qt Creator (installed using Qt SDK 1.1.4). It runs just fine from within Qt Creator, but if I then browse to the output directory in Windows and double-click the ...
7
votes
1answer
216 views
“this” pointer getting corrupted in stack trace
I have seen this thread. My case is slightly different and I'm struggling to figure out how "this" pointer is getting corrupted.
I'm using the Qt 4.6.2 framework, using their QTreeView with my own ...
7
votes
2answers
511 views
How to integrate QT internationalization to CMake?
Greetings all,
I am trying to use QT internationalization with CMake.
I have configured my cmake file as follows :
#Internalization - this should generate core_jp.ts ?
SET(rinzo_core_TRANSLATIONS
...
7
votes
2answers
476 views
Qt / C++ - how to store configuration data
What is the best way to store application configuration in a Qt application?
7
votes
3answers
527 views
QDockWidget Draggable Tabs
I am using QDockWidgets and placing two of them on the left side of my application so that tabs can be used to select between them. However, Qt's default behavior for this looks horrible and is ...
7
votes
2answers
872 views
Debug Qt signals, slots and connections
Is there a way to see which signals are fired, and if there is a slot connected to them? Ideally, we'd like to see all signals, not just those of a particular class or method; e.g. QSignalSpy only ...
7
votes
1answer
620 views
How to use the `itemDoubleClicked(QTreeWidgetItem*,int)` signal in qtHaskell
I want to use the itemDoubleClicked(QTreeWidgetItem*,int) signal in a Haskell program I'm writing where I am using qtHaskell for the GUI. To connect a function I have at other places done the ...
7
votes
3answers
5k 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 ...
7
votes
3answers
5k views
QT 4.5 - Is emitting signal a function call, or a thread, and does it blocks?
I am not sure about the nature of the signal/slot mechanism in QT 4.5. When a signal is emitted, is it a blocking function call or a thread? Say this
emit GrabLatestData();
// proceed with latest ...
7
votes
3answers
930 views
Does a Qt application work in Google Native Client?
I'm not familiar with Qt or with Google Native Client. Is it possible for a TRIVIAL Qt console application to be ported to Google Native Client? I understand that some work would be involved. But the ...
7
votes
9answers
9k views
Command line parser for Qt4
I am looking for a command line parser for Qt4.
I did a small google search, and found this: http://www.froglogic.com/pg?id=PublicationsFreeware&category=getopt however it lacks support for ...
7
votes
10answers
11k views
How do I create a custom slot in qt4 designer?
I don't know how to do this. Whenever I use the signal/slot editor dialog box, I have to choose from the existing list of slots. So the question is how do I create a custom named slot?
Thanks
7
votes
4answers
5k views
How can I hide/delete the “?” help button on the “title bar” of a QT Dialog?
I am using QT Dialogs in one of my application.
I need to hide/delete the help button. But i am not able to locate where exactly i get the handle to his help button. Not sure if its a particular flag ...
6
votes
1answer
121 views
How to attach a 'descending panel' to the bottom of the Menubar in QMainWindow
When you save a file on a Mac, a panel kinda descends down from the top bar in a really cool way. I want to create a class that does a similar thing using the Qt framework. There are a number of ...
6
votes
2answers
334 views
What is the correct way of QSqlDatabase & QSqlQuery?
I got confused with the manual , should i work like this:
{
QSqlDatabase db = QSqlDatabase::addDatabase (...);
QSqlQuery query (db);
query.exec (...);
}
QSqlDatabase::removeDatabase (...);
As ...
6
votes
1answer
216 views
How to translate gendered pronouns in Qt's QTranslator
I'm looking at an open source QT4 game (http://cockatrice.de), and it uses QTranslator for internationalization. However, every phrase that refers to the player uses a masculine pronoun ("his hand", ...
6
votes
2answers
211 views
Tips/Resources for Large Scale Cross-Platform Software Projects
I'm going to be starting a large scale software project involving a cross-platform GUI and heavy number crunching. I plan on writing most of the application back-end in C++ and CUDA, and the GUI in ...
6
votes
6answers
9k views
Qt: Qmake does not support build directories below the source directory
Heyo, Qt Newbie here.
I have created an application that compiles and runs like a charm on OS-X. I would now like to start getting it to work on Windows. To start, I copied the project to a windows ...
6
votes
1answer
2k views
Setting application info in Qt
Anyone have an tips on setting the application info (ie. right click on .exe->properties) from Qt?
I can add arbitrary version strings to Qt resource file (qrc) and display them.
But most Windows ...
6
votes
1answer
960 views
Updating a QProgressDialog with a QFuture
What's the proper way for the main GUI thread to update a QProgressDialog while waiting for a QFuture. Specifically, what goes in this loop:
QProgressDialog pd(...);
QFuture f = ...;
while ...
6
votes
2answers
7k views
Loading a simple Qt Designer form in to Pyside
I create a simple form in Qt designer and am trying to load it in to a Qt application I'm creating with PySide but without much luck.
Here's the generated code from `pyside-uic':
# -*- coding: utf-8 ...
6
votes
2answers
2k views
Loading Qt plugins when linking to Qt statically?
I'm trying to use SVG graphics in QIcons. I have a static library that contains all my graphics resources, and a method in that static library that returns QIcons pre-loaded with the correct graphics. ...
6
votes
6answers
6k views
How to encrypt and decrypt a file with Qt/C++?
I want to create a program, which can encrypt and decrypt a complete file with an individual password. Is there any way to manage this in Qt and/or C++ and how?
6
votes
5answers
5k views
PyQt: how to handle auto-resize of widgets when their content changes
I am having some issues with the size of qt4 widgets when their content changes.
I will illustrate my problems with two simple scenarios:
Scenario 1:
I have a QLineEdit widget. Sometimes, when I'm ...
6
votes
3answers
2k views
Problem with QSqlTableModel — no automatic updates
After setting up a table model in Qt 4.4 like this:
QSqlTableModel *sqlmodel = new QSqlTableModel();
sqlmodel->setTable("Names");
...
6
votes
8answers
3k views
Best crossplatform C++/QT4 development environment
I would like to develop cross-platform applications using C++ and QT4.
I code on both Linux and Windows (MinGW).
Currently I'm using KDevelop and it's QMake integration. On Windows I'm trying out
...
6
votes
2answers
960 views
Visual studio intellisense for headers without .h
I am using a library that has headers without the .h
This defeats visual studio's intellisense (declaration/definition lookup)
Anyone know how to tell VS2008 that a file is a header?