Tagged Questions

Qt is a cross-platform application development framework widely used for the development of GUI programs, and also used for developing non-GUI programs such as console tools and servers.

learn more… | top users | synonyms

5
votes
2answers
546 views

Any good implementation of Qt + Lisp?

I was searching for a good Qt + Lisp implementation on the internet and couldn't find any. Most projects were closed down or so. Does anybody know of a good Common Lisp + Qt integration? Thanks in ...
4
votes
3answers
495 views

QCompleter Custom Completion Rules

I'm using Qt4.6 and I have a QComboBox with a QCompleter in it. The usual functionality is to provide completion hints (these can be in a dropdown rather than inline - which is my usage) based on a ...
4
votes
4answers
356 views

How to overwrite the “next” slot in a QWizard?

Hi: I'm using a QWizard class, which contains several QWizardPage. For some pages, I need to do something when "Next" button is clicked. I tried to overwrite the "next" slot in QWizard class, ...
3
votes
2answers
788 views

how to print a QGraphicsScene that has text and graphics

I have a QGraphicsScene that has graphics as well as text drawn on it. When I try to print, the graphics are fine, but the text is using a font size defined in points, so scene->render() when I ...
3
votes
1answer
801 views

How to use OpenGL functions on a QT OpenGL Widget?

I'm starting off QT 4.6's example "OpenGL - 2D painting" It uses a subclass of QGLWidget, and makes painting operations with the class QPainter. I'd like to know how to do drawing directly with OpenGL ...
2
votes
2answers
502 views

How to work with OpenGL and QT?

I'm Working on a small project and i need to work with OpenGL + QT I'm Newbie in both of them. So i need a good tutorial that illustrates how to work with them each other not individually is it ...
2
votes
2answers
675 views

How to trigger the edit mode of an item in a QTableView?

I'm using QTableView and QStandardItemModel now. In the QTableView, if you double-click a cell, this cell will get into edit mode and you can edit its content. Now I have a problem, I want to ...
2
votes
2answers
477 views

how to center a Qt mainform on the screen?

I've tried these in my mainform's constructor: QRect desktopRect = QApplication::desktop()->availableGeometry(this); move(desktopRect.center() - frameGeometry().center()); QRect desktopRect = ...
2
votes
2answers
950 views

Where to control the QWizard button?

and I use a QWizard object which contains several pages. when it comes to a specific page, I want to hide the "Next" button first, and shows it after the user do something (such as clicking on a ...
2
votes
1answer
417 views

Reduce a table view's cell padding or margin

I'm using a Table View. I'd like to remove the cell padding (or margin) so I can squeeze more cells in less space. How can this be achieved? The cells size is set to 32 pixels on QT designer, if I ...
2
votes
1answer
1k views

Hook key & key combinations from keyboard with Qt 4.6

Let's say I have a window-less application which has only an icon on the Taskbar (Windows, Mac OS X & Linux). I want it to capture some key & key combinations, let's say Right Control + Right ...
1
vote
1answer
56 views

How can I paint a number of animated bubbles ? (Qt4.6)

Recently in trouble, I hope you will help me . I created three buttons in a widget ,I use the QPropertyAnimation class to achieve the position of the three buttons move . such as this example: ...
1
vote
1answer
115 views

Debugger for qt in windows?

While I try to debug the application , it popup the dialog box and shown as below. How to overcome this issue? waiting for your reply
1
vote
0answers
177 views

QSpinBox buttons size

Is there a way to obtain the size of the buttons/arrows of a Qt QSpinBox? Note: This question has nothing to do with changing the style of a QSpinBox. On the contrary: The intent is to use the ...
1
vote
2answers
892 views

How to integrate opencv2.2 with Qt4.7 in OSX 10.6.6?

I'm trying to integrate the opencv2.2 library with Qt4.7 creator on the mac and running into problems. Most of which I've resolved to some degree. I downloaded the opencv2.2 tar.gz library and ...
1
vote
1answer
56 views

How to make keyword to work instantly with no delay in Qt::4.6 (C++)?

OS:: win xp sp3. Qt:: 4.6 I have class Gameboard in which i have some rectangle.I defined keyPressEvent for that rectangle in order to move him around the screen.Key_A :: rectangle.moveToLeft & ...
1
vote
1answer
114 views

How to get frameGeometry without showing the window

Is there anyway to get the correct frameGeometry for a window for which show() has not yet been called? In general it seems that frameGeometry() == geometry() before a window is shown on the screen. ...
1
vote
1answer
93 views

How can I add a package to Qt

I downloaded a package called QtIOCompressor, I need to use the functionality like zipping a directory gzipping a directory etc etc in a application I am coding. But I dont know how to add this ...
1
vote
3answers
304 views

how to use Qt setWindowFilePath

I can't seem to get setWindowFilePath to work in any of my projects. The value is stored and can be retrieved, but it never shows up in the title bar of my app. It does work correctly in a sample ...
1
vote
1answer
482 views

How can I make a transparent window stay on top?

I'm trying to make a transparent window stays on top (z-order). I want to implement something like layer that indicates some parameters on the other program. So what I need is to make background ...
1
vote
2answers
541 views

Qt: Animating the 'roll down' of a QWidget

I have a QWidget that contains various other widgets. I want to animate it appearing on the screen by gradually revealing it from the top down, increasing it's height from 0 to whatever it's natural ...
1
vote
1answer
241 views

PyQt4: My database displays empty cells

I am using the pyqt4 framework to do some displays for database forms. Unfortunately, I hit a snag while trying to filter and display my database by last name. Assume that the database connection ...
0
votes
0answers
21 views

Terminating a QThread running a series of WGET command

I am trying to implement a QObject class which executes a script having a series of wget commands. This object is running in a thread as shown in code below: ...
0
votes
1answer
35 views

“Refreshing” column header names in QT model

Does anyone know how you "refresh" the names of the columns (the column headers) in QT? I have code that, in certain cases, changes the name of a column. model_ptr->header_list.replace( 1, ...
0
votes
1answer
75 views

Identifying messages in a Qt Linguist translation file (TS file)

I hope this is the right forum to ask this question. If it is not, please redirect me to a more suitable forum. I am trying to understand the format of a Qt Linguist TS file. I have modified a file ...
0
votes
1answer
82 views

How to solve error LNK2001: unresolved external symbol?

I am new to Qt and now I am developing a simple application in using Visual Studio 2008 and when am building the code, the following errors occur: error LNK2001: unresolved external symbol "public: ...
0
votes
0answers
17 views

Steps to develop a Qt application in Visual Studio 2008?

I have installed Nokia QT 4.6.3 with Visual Studio 2008. I am new to the Qt environment and now I need to develop an application to display a message box using QT classes. Can anyone give me the ...
0
votes
2answers
104 views

Set a cross in QImage at the position, where mousepressed

I have a graph shown in a QImage and want to set a cross (+) in yellow colour for measurement, if right mouse button is pressed. void foo::mousePressEvent(QMouseEvent *event) { ...
0
votes
1answer
61 views

How to identify QEvent sender

I have reimplemented QWidget::event() handler, where I am handling windowStateChange event. I was wondering if there is any way to identify which widget sends this event.
0
votes
0answers
48 views

how to connect two different applications in Qt4.6.3

I am working with Qt4.6.3 with Linux os. My question is: I have a Qt application(applicationA) that contains a button. When i click that button, the Qt should open a new application(applicationB) to ...
0
votes
1answer
73 views

How to resize the menu Icons in main window toolbar

I want to find a way to change the size of icons in the menus (like New,Open,etc.) main window toolbar http://i.stack.imgur.com/lKSjV.png i want this images of the icons become greater than this ...
0
votes
0answers
194 views

USB Mouse with QT application

Hey, I am using Qt application on TI’s DaVinci TMS320DM6446 board. I need USB mouse to control my application. I have enabled all options related to USB mouse in make menuconfig. Also the usb ...
0
votes
1answer
373 views

How to convert colour to greyscale image in openCV?

Hi I have read the openCV reference from this site and using the following code: VideoCapture mCap; Mat mcolImage, mbwImage; mCap >> mcolImage; // New frames from the camera ...
0
votes
2answers
533 views

Using QGraphicsWebView to render HTML and access the raw bits

I believe it's possible to render HTML to a QGraphicsWebView and get access to the raw bits that comprise the page. My question is: do I also need a QGraphicsScene, QGraphicsView etc. etc. if all I ...
0
votes
1answer
192 views

Link error while using Qt 4.7

I am using Qt 4.7 for VS08 and i am building a http webser, but i am getting some link errors while compiling it and cant figure it out though here is one of them error LNK2028: unresolved token ...
0
votes
3answers
469 views

Howto crop polygon(fill with poly-image) out of QImage (Qt 4.6)

OS::win xp sp3 Qt::4.6 I am working on the PUZZLE game based on Qt framework and need some help. In project is included main picture which needs to be disassembled to smaller parts (polygons with ...
0
votes
1answer
96 views

how to make parallel events in c++ (specific Qt 4.6)

I have a problem with the execution of multiple functions at once. Specific , I have two classes (MyRect and space). The Idea is similar to space invaders but I stuck on the beginning. In class MyRect ...
0
votes
1answer
366 views

QT4 Linux will not “make” because of undefined reference to Main . What is wrong?

I am using Linux 10.10. Trying to use QT4 as I would like to avoid alternative IDEs and languages. I can not get past the $ make g++ -Wl,-O1 -o slider -L/usr/lib -lQtGui -lQtCore -lpthread ...
0
votes
0answers
329 views

QMainWindow+QMenubar on Mac OS X (have been edit)

I'm trying to use Qt on Mac, now I meet a problems, it's simple but I don't have idea how to overcome. I will really appreciate if anyone can help me solving this problem. The problem is on Qt. In my ...
0
votes
0answers
167 views

QMainWindow problem on Mac OS X

I have a Qt-based program, and I uses QMainWindow somewhere in the UI part. This program works fine on both Windows (windows 7) and linux (Ubuntu 10.04), however, when I try to run it on MAC, some UI ...
0
votes
1answer
915 views

how to calculate qfont pixel size from point size

How do I convert my font on a QGraphicsObject from point size to pixel size? I need to do this so the fonts will look right when I print my QGraphicsScene using QGraphicsScene::render().
0
votes
1answer
184 views

how to drag and drop from another widget on to a QGraphicsScene

I need to drag from a QListWidget or something similar and drop on a QGraphicsScene, and create a subclass of QGraphicsItem at the drop location. Anyone have any ideas? I'm using Qt 4.6.3.
0
votes
1answer
301 views

Customize the buttons in a QWIzard?

QWizard have some options related to the buttons as follows: NoDefaultButton NoBackButtonOnStartPage NoBackButtonOnLastPage DisabledBackButtonOnLastPage HaveNextButtonOnLastPage ...
0
votes
1answer
501 views

Need help with configuration of codeblocks for Qt !

codeblocks 8.02. , win xp SP2 , Qt 4.6 After installing Qt SDK, I installed QtWorkbench (codeblocks plugin that allows you to create Qt applications.) http://code.google.com/p/qtworkbench/. I worked ...
0
votes
1answer
601 views

How to produce Capital hexadecimal digits with QString::arg() ? [QT]

I'm trying to create a QString which is a hexadecimal number with its letter digits in Capitals instead of small caps, how can it be done? QString( " %1" ).arg( 15, 1, 16 ) yields f and I'd like F
0
votes
2answers
129 views

Where to put app's code on a QT app?

I'm starting with QT4, I'm wondering where to put my application code. Here? void MainWindow::changeEvent(QEvent *e) {...} Or here? (where exactly?)int main(int argc, char *argv[]) { ...
0
votes
1answer
161 views

QT QFileDialog how to hide hidden/backup folders (“.folder”)

Basically when browsing folders inside a QFileDialog I find very annoying to have everything bloated with hidden or backup folders (don't know how to call them really); specially on home. Is there a ...
0
votes
1answer
286 views

Error building QtDeclarative with Qt 4.6.2 on Mac OS X

I tried hard to build QtDeclarative with Qt 4.6.2 on Mac OS X (Leopard) and did lots of Googling without finding any cure. Could anyone please help to solve this problem? Thanks. Here goes the error: ...