Questions specifically about version 4.x of the Qt C++ GUI library. If your question applies to other versions of Qt, use the tag [qt].
0
votes
1answer
24 views
Unable to connect signal to a function inside main()
I am aware that to use the signals and slots mechanism of Qt inside a class, the class must include the Q_OBJECT macro, but I am attempting to use signals and slots in main(), without using any class.
...
0
votes
1answer
40 views
How to add a context menu entry in OS file explorer using Qt
I want to know if is is possible to add an entry in the context menu (right click menu) of the OS file explorer (e.g. Windows Explorer) for my program developed with Qt.
The objective is that when I ...
0
votes
1answer
21 views
How to distinguish objects that inherits QGraphicsItems when stored on QGraphicsScene.selectedItems()
Here is the situation:
There are two classess that inherits both QGraphicsItem and QObject - Car and Bike.
There are several objects of each class visualized using QGraphicsScene myScene.
At some ...
-2
votes
1answer
30 views
Is it possible to add mp3 to a hand posture gesture using QT4
I am really new to QT development. I recently found a way to play mp3 sound using phonon. I want to assign that mp3 sound for a particular static hand posture gesture in my Qt-project. Is there any ...
2
votes
1answer
35 views
dynamic QGridLayout with Qt (adapt to widget size)
Is that possible to create a QGridLayout (with witdh/height boxes fixed) but which can adapt with the widget size.
In other words, when we stretch the width of the widget, the GridLayout is modify.
...
0
votes
2answers
25 views
QListView width
I am writing a file manager, and I display the icons via a QListView. I want to be able to change the grid size depending on the QListView size, like in Dolphin. (In dolphin changing the window size, ...
0
votes
1answer
46 views
How to show text on a QProgressBar with a busy indicator?
I'd like to show text on a QProgressBar. I'm using setRange(0, 0) to display a busy indicator.
progressBar = QProgressBar()
progressBar.setFormat('some text')
progressBar.setValue(0)
...
0
votes
1answer
38 views
Implement slots in derived class - qt4/c++
I'm trying to make the example Communicate (which can be found at the web-tutorial First program in qt4), but in a different way: the buttons 'plus' and 'minus' are not built at the constructor, but ...
0
votes
1answer
21 views
how to reflect download progress onto QtableView or QtableWidget?
I want to make a download tool .I use the following part code for downloading
see the code here
now I am facing a problem :I don’t know how to reflect download progress onto QtableView or ...
-1
votes
0answers
13 views
IDMEF Format Implementation in c/c++ [closed]
I have been developing a code for translating a security alert of an IDS to IDMEF Format...
I Study the XML format of it and I want to Know how can I have mentioned format in C or C++?
Is there any ...
0
votes
1answer
15 views
Temporarily disable QCompleter?
I have a QLineEdit plus a QListView widget,
When then QListView is visible, the completer should be disabled
Otherwise the completer is enabled
But looks like there's no enable / disable ...
2
votes
1answer
37 views
How to create a QGLWidget from a CGLContextObj?
I'm using Qt 4.8.4 on Mac OS 10.8.
I already have a CGLContextObj (created outside my control).
I would like to create a QGLWidget from (or at least shared with) my existing CGLContextObj — so I can ...
0
votes
1answer
20 views
QTableWidget::row() not behaving as expected
When calling QTableWidget::row( const QTableWidgetItem * item ) with a pointer to a valid vertical header item, the function is returning -1. I wouldn't expect this though, since I explicitly set the ...
1
vote
1answer
47 views
Remove titlebar of QMessageBox when use static method QMessageBox::information()?
Follow the title, I use this code:
int ret = QMessageBox::question(this,"Title","Stupid code",QMessageBox::Yes | QMessageBox::No);
The message box showing cool.
But now, I want to remove the ...
0
votes
2answers
29 views
How do I use QuaZip to extract multiple files?
I have the below code to move through a list of the folders and files in a zip archive creating them as I goes (also creating paths for files if not created yet).
The application crashes when I use ...
0
votes
0answers
13 views
qt creator set breakpoint opens different file
I am currently using Qt Creator as a debugger for my C++ Qt project. Recently while in debug mode, whenever I set a breakpoint, Qt opens up a "random" .c file. These include of dl-open.c, poll.c, ...
0
votes
1answer
33 views
“Underlying C/C++ object has been deleted”
I'm having an exception running a simple application in python 2.7 with Qt.
Code:
# *-* coding: utf-8 *-*
__author__ = 'luismasuelli'
import sys
from PyQt4 import QtGui
class ...
0
votes
2answers
74 views
Widgets within a QGraphicsScene
I'm trying to add a QgraphicsView(QColorDialog) widget onto a Palette dialog, but the QGraphicsscene corresponding to the QColorDialog widget is always blank and it would be of great help if readers ...
0
votes
0answers
10 views
QWizard adjustSize() glitch when using QWizardPages with subtitles
When I try to adjustSize() of a QWizard with a subTitle set (either in Designer or manually), some of the UI objects aren't given enough vertical space (see screenshot below - in this example it's the ...
0
votes
1answer
22 views
Qt4.8 The effect of setSizePolicy(QSizePolicy ::Expanding , QSizePolicy ::Expanding) When I using QGridLayout
I want slice the main windows as like this
my layout code is follow:
QGridLayout *gLayout = new QGridLayout ();
viewWidget->setStyleSheet("background-color: #333;" );
for ( i = 0; i < ...
1
vote
0answers
23 views
Use custom tab bar with QMdiArea
I see that QMdiArea has tabbed view mode. I want to be able to split the main window with two QMdiArea widgets and to be able to drag and drop tabs between each of them. I have already done it with a ...
4
votes
2answers
44 views
Detect hiDPI mode
Working with Qt 4.8.4 on OS X -- Desktop Application development. I need to be able to detect, at paint time, if I am on a hiDPI display ("retina") or not. Does anyone know how to achieve this?
0
votes
0answers
34 views
How to make effective use of icons with QToolButton in Qt4 or Qt5?
Look at the code sample below:
...
QToolButton *tb0 = new QToolButton() ;
QIcon icon("Icon.ico") ;
QSize size(64, 64) ;
tb0->setIconSize(size) ;
tb0->setIcon(icon) ;
tb0->setFixedHeight(70) ...
0
votes
0answers
206 views
Ubuntu 13.04 CMake and Qt4 and Qt5
I'm using the new Ubuntu 13.04 and installed qt via apt-get install. It seems that qt5 is installed now. A CMake Project using qt5 workes well.
I had the same code running on a machine with qt4 ...
0
votes
2answers
46 views
Getting focus/activeFocus status from QML ListView
I've a two column layout with a ListView in the left column. With the Left/Right Keys I can change focus between the two parts of the app.
The active focus of the left column is delegated to the ...
0
votes
1answer
35 views
qmake subproject in CMake project
I've got a CMake based project with the following "design":
add_subdirectory(first_lib)
add_subdirectory(second_lib)
add_subdirectory(qt_application)
My question is - can I create a qt_application ...
2
votes
1answer
43 views
How to retrieve the display resolution?
How do I retrieve the current display resolution in Qt4 or Qt5? For example, if I have my display resolution set to 1366x768, then how do I obtain this value in my application?
0
votes
0answers
23 views
qtcreator ui file to source file automation
I am using qt creator in ubuntu(qt 4.7). The creator generated .ui file. But I need the source code (.h and .cpp) file as I need to modify some code there.
I use uic utility to generate the .h ...
0
votes
0answers
32 views
QTreeWidget filter and finditems not work
My code doesn't work. I want a filter a QTreeWidget by text(RegExp) - only 0 column
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QTreeWidgetItem>
#include <QDebug>
...
0
votes
1answer
44 views
How to build Qt5 app with their static libs?
I'm a Qt beginner and I want to know how to build Qt5 apps with their static libraries. Is that possible to build with static libs everything that can be build with dll's ?. I want to know because I ...
0
votes
1answer
65 views
Widgets must be created in the GUI thread Error !. How to correct the code?
I have some experience with C++ but I'm a Qt beginner just for a few days. Look at my simple application code below, that is "main.cpp" which is only code file in the project. The problem is that when ...
0
votes
1answer
25 views
QScollArea doesn't autoscroll when dragging inside it
I have some widgets inside a QScrollArea and I'm dragging between these widgets, the problem is that the QScrollArea doesn't scroll when I'm dragging inside it, so if I want to drag between a widget A ...
0
votes
1answer
58 views
How do I connect a hardware interrupt to Qt Emit?
I'm building and embedded app and I rather use a hardware interrupt listener then chew up cpu cycles by polling every 10th of a second.
This obviously can be done since there are listener for ...
-1
votes
0answers
19 views
detect all the network erroneous cases with Qt [closed]
detect all the network erroneous cases with Qt
I want to get Page Source by the following code ,I wonder is it enough to detect all the network erroneous cases with the following code ?
0
votes
2answers
70 views
QWidget pos() not updated during resizes involving origin
I am desperately failing at the supposedly simple problem to obtain the position and geometry of a Qt window on the screen. I originally stumbled upon this problem in a Python/PyQt context, but have ...
6
votes
2answers
87 views
Multiple QGraphicsView for a single QGraphicsScene
I am having one QGraphicsScene to which i have added some QGraphicsItem.
I want to create multiple QGraphicsViews each of which displays a particular section of my QGraphicsScene(not similar portion)
...
1
vote
1answer
25 views
sharing the same delegate between columns of QTableWidget
I want to use my own delegates for filtering user input in some columns of QTableWidget.
According to the QAbstractItemView class reference I need to delete delegates myself.
I don't want to create ...
0
votes
1answer
43 views
Qt 4.8.4 MAC Address QRegExp
I'm trying to get Qt to match a MAC Address ( 1a:2b:3c:4d:5e:6f ) using a QRegExp. I can't seem to get it to match - what am I doing wrong?
I am forcing it to try and match the string:
...
0
votes
1answer
33 views
QThreads interruption with slots and signals
I have a class which contains QThread. In the initialization function of this class the thread should be started. This works correct. in the thread there I have a while(bool certainCondition){} this ...
1
vote
1answer
60 views
QtCreator (2.7.0) does not process properly LIBS.
I have defined the following environment variable:
PLATFORM_SDK=C:\Program Files\Microsoft SDKs\Windows\v7.0
Inside my project file I declared:
LIBS += $$quote($(PLATFORM_SDK)/lib/SHFolder.lib)
...
2
votes
1answer
47 views
Why do we declare a namespace for the ui object in Qt when dealing with forms?
I'm new to Qt. So when we create a new GUI project with Qt Creator the auto generated code looks like this :-
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
...
1
vote
1answer
31 views
How to align QProgressBar label in QGIS messagebar?
Unable to align the QProgressbar label in Qgis Messagebar. see the image below
While progressbar is updating,the label is vanished. so i tried the alignment for progressbar as shown below but its ...
1
vote
1answer
34 views
How to get Total and Used Space of a SD Card in Qt Application?
Hi friends I am working on a Qt application where I need to display the total space and used space of a SD Card which is connected to my PC. I need to display them in the form of a string. E.g. 7.6 ...
0
votes
0answers
72 views
Building QT 4.7.0 libraries on Ubuntu Linux
I am trying to build QT 4.7.0 libraries on Ubuntu Linux (Amazon EC2 instance) by following the below steps:
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get build-dep qt4-qmake
...
0
votes
0answers
21 views
Qt graphics overlay on top of a QAbstractScrollArea draws graphics in the wrong position
I'm trying to create an overlay layer on top of a qt widget according to the following example:
http://qtcenter.org/wiki/index.php?title=Widget_Overlay
This works fine when using on top of a ...
2
votes
1answer
74 views
QPushbutton does not connect
In the following code I'm trying to replace "original text" with "new text" when "click" button is pressed. I dont get any errors, but the label's text doesnt change.
QPushButton *button=new ...
0
votes
0answers
30 views
Static linking of qt
I am trying to produce a statically linked .exe of qt4.8 without any presence of .dll like QtCore4.dll and QtGui4.dll. I am making use of Visual Studio 2010.
I tried making use of this tutorial. But ...
0
votes
2answers
50 views
QPushButton focus
I have a pushbutton which its background image gets changed regularly according to the packets ui receives from serial. When the user clicks the button, it becomes red with borders.
pb_Jack1Up ...
1
vote
1answer
27 views
Accessing QNetworkRequest data before it's sent
Is there any way to see the data that will be sent (or has been sent) during (or after) a call to QNetworkAccessManager::post(QNetworkRequest,QByteArray) on the client side?
In other words, I would ...
0
votes
0answers
25 views
qt4 - MacOSX unified toolbar buttons
How can I get the native unified toolbars buttons using qt4?
QToolButton looks not native at all on Mac OS X. I have enabled the uifiedTitleAndToolBarOnMac property, but this only changes the look ...



