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

learn more… | top users | synonyms

0
votes
1answer
31 views

.qrc file does not work properly

I created a .qrc file in Qt 5.0.1: <RCC> <qresource> <file>105.ico</file> </qresource> </RCC> and I edited my .pro file: RESOURCES += \ Icons.qrc when I ...
0
votes
0answers
22 views

Qt and Gstreamer on Mac Os

Good day,i created an application where i use Gstreamer library. I am started develop on linux, but now needed ported this solution on Mac. When i builded new version i got many crashes, some warning ...
1
vote
1answer
62 views

When to emit dataChanged from a QAbstractItemModel

In Qt, I have a model subclassing QAbstractItemModel - it's a tree displayed in a QTreeView. The model supports various forms of change which all work OK. The two of relevance are: 1) Some data in ...
0
votes
0answers
18 views

How to change text direction in QWebView using javascript?

I use action triggered signal for changing direction, and when the SLOT is going to call, I use execCommand() for other actions like justifyLeft and justifyRight and etc. like this: QWebFrame *frame ...
1
vote
2answers
32 views

my QT designer plugin does not find externals

I built a QT Designer custom plugin which works just fine..until i add a header which is not in the same library... if i add this to the MTBFWidget.cpp/.h : #include "KinectHandler.h" the plugin ...
1
vote
2answers
32 views

What is the difference between logicalDpiX and physicalDpiX in Qt?

In the documentation of QPaintDevice (which all paintable-to entities derive from, such as QWidget, QPixmap, etc), there are two functions to receive the DPI of the device int logicalDpiX() const; ...
0
votes
1answer
32 views

linker error when compiling a project written with QT

I have a project which was written by somebody else. It is based on QT. I downloaded QT and compiled it with VS 2012. Now I am compiling my application with VS2012 and getting this linker error: ...
0
votes
1answer
22 views

Setting up Qyoto in Visual Studio

I’m trying to develop an application using Qyoto with Visual Studio,but I’m having trouble setting up the IDE.I have downloaded the binary package for windows, but I could not find any documents on ...
-2
votes
0answers
19 views

Installing VS2010 [closed]

I just have a trial version of VS2010 which is expired now. And I bought a full version. But it doesn't contain an online key. I should uninstall the free version that I was using and then, install ...
3
votes
3answers
90 views

std::vector::assign equivalent for QVector

I have a C-style array, and I want to assign it to a QVector. If I were using std::vector, I would have used assign(): int arr[] = { 1, 2, 3, 4, 5 }; std::vector<int> v; v.assign(arr, arr + ...
0
votes
1answer
33 views

Compiler Command Line in Qt (Boost Related)

I have a problem when using <boost/thread.hpp> in my code. When I try to compile it in Qt, I get these errors: undefined reference to boost::system::generic_category() undefined reference to ...
0
votes
0answers
21 views

Google Contacts API for desktop applications in Windows ( using REST API / c++)

when writing PC apps where I am reading contacts from my gmail account. Is it really the way that I first need to get the authorization code, then copy it from browser window manually to my ...
0
votes
1answer
55 views

how to use terminal commmands on qt

I am QT for a project and I want to compile and run few C++ codes on QT. I have written the following code to compile a C++ file. But I don't know how to check if the program was compiled properly. If ...
0
votes
1answer
43 views

Freeing Memory for QPushButtons with QMessageBox

I've instantiated a QMessageBox and added a couple of buttons to it like so: QMessageBox message; cancelButton = message.addButton(tr("Cancel"), QMessageBox::RejectRole); okButton = ...
0
votes
2answers
42 views

disable progress bar animation in Qt

Is it possible to disable animation of the progress bar in Qt and make it behave like a meter instead? Below is the default behavior, and I would instead like it to not have the shiny wave go through ...
-1
votes
1answer
20 views

Using QList as the input for QwtPlotCurves setSamples

I have two QList (XList, YList) which saves the dynamic data. I want to use these as the input of the QwtPlotCurves by setSamples. After I check the documentation: void setSamples (const double ...
1
vote
1answer
45 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
27 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
1answer
49 views

QT, Force QWidget Child to have its own Window Handle

I am trying to create a small application using QT. What I want to do is to display in a dock widget a 3D Interface using directx11, other widgets in the qmainwindow will have properties to modify the ...
0
votes
1answer
35 views

undefined reference to function from log4cpp library

I have another problem ... I downloaded the log4cpp library and compiled it via Microsoft Visual Studio into a .lib-file. Now I want to link that library into a QT Project, but whenever I call a ...
0
votes
1answer
36 views

Python code in GDB init file .gdbinit

I'm trying to create a ~/.gdbinit that contains some Qt pretty printers for various Qt objects, especially QStrings. I want to do this without Qt Creator, using regular GDB. This is what I've ...
0
votes
0answers
20 views

Qt 4.2 Disable Tabs on QMainWindow's QDockableArea

How do you Disable Tabs on QMainWindow's QDockableArea in Qt 4.2? This is specific to Qt 4.2 please do not post links to qt-ver > 4.2 unless you are sure they apply to qt 4.2.
0
votes
0answers
32 views

QMainWindow::showMaximized() Doesn't Update Size

I'm trying to create a QMainWindow to encapsulate a QGraphicsView that I'm putting in it. I want it to start out maximized, so I do this: QMainWindow *mainWindow = new QMainWindow(); ...
0
votes
1answer
29 views

Converting mouse coordinates to label coordinates in Qt

I'm in trouble with such issue: I need to select some area with rect on my label, I'm using QRubberBand to do this, but there is one problem: I need to know coordinates of current rect on my label, ...
2
votes
2answers
84 views

Determine whether a program is a GUI or console application in Linux

I am programming in C++ using Qt-4 as framework, given a directory (i.e. /usr/bin) i would like to know whether the program is a GUI or console application. I came across some information on how to ...
0
votes
1answer
60 views

Undefined reference error at class instantiation

This is my main.cpp. My program starts here and this is where I have the problem: I get two errors: undefined reference to `BankController::BankController(TransactionRepository)* at line 23 and ...
0
votes
0answers
25 views

Read array of custom metatype from QSettings

I have a problem with reading custom metatype data from QSetting. I have a class: class MusicOwner { public: MusicOwner() : songs_count(0), id(0) {} explicit ...
2
votes
1answer
65 views

'long long long' is too long for GCC using log4cpp

I am developing a QT application where I use the logging library log4cpp. But now, where the headerfiles of log4pp are included, I get this compiling error: 'long long long' is too long for GCC When ...
-4
votes
0answers
28 views

Why the program is running noticeably slower when run manually from the folder [closed]

Why the program is running noticeably slower when run manually from the folder, but when I run at Qt creator working properly ?
0
votes
1answer
31 views

Parallel OpenMP reduction vs. function definition?

I'm using OpenMP but the problem is that I'm declaring/defining a function as follow: void compute_image(double pixel[nb], double &sum) { #pragma omp parallel for reduction(+:sum) for ...
0
votes
1answer
66 views

Qt, C++ - Reading control characters from a file

this is my first time asking a question so please have some patience with me. I'm trying to read the content of a text file which is meant to be sent to a printer. In the middle of the characters ...
0
votes
1answer
23 views

Groupbox alignment of title in qt doesn`t work. Why?

I created a simple MainWindow form in Qt 4.8.4 designer, in preview title is placed in top left corner as it should be, but when i use this form in a simple program which writen in Eclipse with QT ...
0
votes
2answers
26 views

Activate cursor in QTextEdit

I cannot find a way to activate a cursor inside a QTextEdit without clicking inside the actual widget. What I want to be able to do is, type something in side the QTextEdit window, click on a ...
0
votes
1answer
23 views

Unable to read shared memory data using boost created by Qt

I've created a Qt shared memory program to write a string into shared memory. Now After writing, I need to read it from Boost program. I tried using simple programs, but I couldn't read the string ...
0
votes
1answer
34 views

compile a Qt single file from command line: undefined reference to vtable

I'd like to compile a single file QT application from command line, for test in a quick way some features. See the code of the file below. I'm compiling with: qmake -project && qmake ...
2
votes
0answers
25 views

pyqt - displaying widget on top of widget

I'm making an application that shows a map of an area and I'm trying to draw nodes on top of it which can represent information. I made it all worked but did so simply by making 1 custom widget which ...
0
votes
0answers
73 views

Undefined reference when instantiating a class

This is my main.cpp. Here is where I have the problem: I get two errors: undefined reference to `BankController::BankController(TransactionRepository)* at line 23 and undefined reference to ...
0
votes
1answer
43 views

How to Show Bangla Font(UTF-8) in QTextBrowser / QTextEdit?

When i try to output some Bangla text, it turns out in empty box without showing Bangla/Unicode properly. I tried something like this, but it's not showing correctly ...
0
votes
0answers
24 views

How to use PhantomJS as standalone (static) library in an Objective-C project?

I need a headlead webbrowser for my project. PhantomJS seems quite well suited for my requirements. Now I want to use PhantomJS in my Objective-C project. I don't want to run it as an executable. I ...
0
votes
2answers
65 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
1answer
28 views

QT UIC does not automatically append the headers for custom widgets

i made a custom widget "DuwagWidget" and custom widget plugin "DuwagWidgetPlugin" which can be dragged&dropped inside qt designer to create my duwag.ui file. However, when i try to compile my ...
6
votes
1answer
85 views

Windows message loop instead of QApplication::exec() / QApplication::processEvents()

Do I miss any Qt functionality if I substitute QApplication::exec() with standard Windows message loop implementation? This should clarify what I mean: The ususal “Qt” way to run event processing: ...
0
votes
1answer
29 views

pyqt timer does not return a value or an error

I am trying to use a timer with pyqt. The code is below, but it does not print anything and I do not get an error. Does anyone know what is wrong? Thanks import functools from PyQt4.QtCore import ...
1
vote
0answers
25 views

PYQT is it possible to connect a listener to an image I printed?

I'm making a map with senors looking like this: The sensors in the code are a class on themselves 'MapNode' and are drawn on the map by the following method: def drawMapNode(self, painter, ...
0
votes
0answers
38 views

How to call a C# dll in QT Creator?

I have QT Creator latest version which works with the MS Visual studio 2010 compiler. My OS is windows 7 ultimate 32 bit. Now, the question. I have a dll created with C#. This DLL got only void ...
1
vote
0answers
108 views
+50

PySide / Qt : Too many arguments to connect a signal to a slot?

I'm trying to connect a custom signal (in a TCP client class) to a method that updates a log with the data sent by the server and whatnot. Here's the declaration of the TCP client class: class ...
0
votes
0answers
34 views

Binary operations and Simple Solver

I'm making a small demo to suggest Qt and OSG at my company to make some things easier to everyone working with me. But I need to do it rather quickly. I need a library for 2D and 3D binary operations ...
0
votes
1answer
22 views

Why am I getting a bps_remove_fd failure when trying to store a QSslSocket inside a QScopedPointer?

I am developing a networking-based app for the blackberry playbook using Qt4.8.3, part of which involves storing a QAbstractSocket in a QScopedPointer as follows: ...
0
votes
2answers
45 views

What's the equivalent std::deque in Qt?

I am on several lines codes from a Qt project to appending into a Qvector every 1s. I noticed that in STL deque could have a better performance in adding a new element into the end that vector. What's ...
0
votes
1answer
26 views

QT excel editor

I am working on a test case editor, which is something like a excel sheet. Where i need a excel sheet cells to enter data, combobox in excel sheet cells & few buttons, text editor. Something like ...

1 3 4 5 6 7 419