2
votes
2answers
61 views
Qt widget update later but when?
I'd like to know what happens exactly when I call a QWidget's update() method.
Here is the documentation:
http://doc.trolltech.com/4.5/qwidget.html#update
This function does n …
1
vote
2answers
37 views
Qt Increase QTabWidget’s QTabBar size
I need to make the tabs that I have oriented at the bottom of my QTabWidget larger. We'll be using a touch-screen, so the default sizes are a little too small.
I see no easy way t …
1
vote
2answers
21 views
Qt QHboxLayout cell size ssues
For those of you who haven't been reading my Qt questoins, I am learning Qt for a project. I have only limited experience with GUI design at all, and not in Qt.
I've got a horizon …
1
vote
2answers
83 views
How can I insert a widget into a mainwindow generated by Qt designer?
I have a Main window build with Qt Designer and I also have a widget built with Qt designer (both in a separate ui file). How can I instantiate my widget into my mainwindow at run …
0
votes
1answer
38 views
Is it possible to have a QWidget as a child to a QObject?
Hi,
My main application object is a QObject, that juggles a QSystemTrayIcon, a QDialog, a QWindow and a few other components. The app mostly sits in the tray, with some options di …
0
votes
1answer
34 views
Is there a way to emulate a QGroupVBoxLayout?
I am using Qt designer and I know how to use a QVBoxLayout and QGroupBox but it seems there is no such thing as a QGroupVBoxLayout. So I have to put a QVBoxLayout inside of a QGro …
2
votes
2answers
108 views
Painting Issue on QWidget outsite GUI thread
I am developing an appliation in which I want to continuously receive images from remote host and display them on my screen. for this I am following the given strategy
1) I have a …
0
votes
2answers
107 views
QCalendarWidget as “Pop-up”, not as new Window?
Hi there.
I want to create a Settings-Widget, where I can choose a Date.
Because it isn't nice to create 3 QLineEdits to call the QDate-Constructor with QDate(int year, int month, …
1
vote
1answer
134 views
QWidget::find(hwnd) always returning 0
Hey,
I'm grabbing a window handle with the following code:
HWND hwnd = FindWindow(L"QWidget", NULL);
and it returns a HWND to a QWidget (I checked with Spy++, the handles match) …
4
votes
2answers
216 views
Finding a 3rd party QWidget with injected code & QWidget::find(hwnd)
Hey,
I have a Qt Dll wich I inject into a third-party Application using windows detours library:
if(!DetourCreateProcessWithDll( Path, NULL, NULL, NULL, TRUE,
…
2
votes
2answers
170 views
Grab Information from “QWidget”
Anyone have any idea how to grab text from a QWidget window in a Windows application? This is what it looks like when I look at it using Winspector:
http://www.tightpoker.com/ima …
0
votes
2answers
275 views
Closing new nonchild window in Qt
Hello, i'm trying to make 2 windows. 2nd should be called in 1st. I don't connect them child->parent.
But when i called 2nd window and closed it 1st window closed too. What should …
1
vote
4answers
469 views
How to remove QWidgets from QSplitter
In my app have a window splitted by a QSplitter, and I need to remove an widget.
How can I do that? I can't find useful methods
