Tagged Questions
3
votes
1answer
522 views
Can I draw Qt objects directly to Win32 DC (Device Context)?
I can draw Qt objects to an QImage and then draw the image to HDC or CDC. This may hurt our application's performance. It would be great if I can draw Qt objects directly to Win32 HDC or MFC CDC. I ...
2
votes
1answer
102 views
How to print QGraphicsTextItem in MFC application
I have used QGraphicsTextItem in my MFC applications for text editing, then converted the results to a bitmap to show in the view (screen). But it has issues when printing. For example, if I print to ...
1
vote
1answer
143 views
Does wxWidgets have something comparable to Qt's MFC Migration framework?
I want to build a DLL plugin for a 3rd party MFC-based application. The "official" way to do this is to build the plugin using MFC as well. I'm looking to see if it's possible to use any other gui ...
1
vote
2answers
131 views
QWinWidget's position is always 0 (zero)
I hosted a QWinWidget in a CView and want it to stay at a designated position when resizing. But QWinWidget always moves to (0, 0), i.e. left-top corner of the CView.
I tried to debug in this way:
...
1
vote
1answer
850 views
MFC Control in a Qt Tab Widget
I'm working on a project that is using the Qt/MFC Migration Framework and I'm trying to reuse some existing MFC controls inside of a Qt dialog.
Does anyone know if it is possible to insert an MFC ...
0
votes
2answers
411 views
Qt/MFC Migration Framework tool: properly exiting DLL?
I'm using the Qt/MFC Migration Framework tool following this example:
http://doc.qt.nokia.com/solutions/4/qtwinmigrate/winmigrate-qt-dll-example.html
The dll I build is loaded by a 3rd party ...
0
votes
3answers
749 views
QWinWidget Inside MFC Dialog Not Repainting or Responding to Tab/Arrow keys
I am using a QWinWidget inside of an MFC dialog and the QWinWidget is not drawing itself correctly and it is not handling keyboard input correctly.
Repainting [Unsolved]
Within the QWinWidget, I ...