Tagged Questions

3
votes
1answer
540 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
104 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
2answers
138 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
871 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
0answers
276 views

Qt/MFC Migration Framework: Plugin DLL using a QMainWindow?

I have a plugin DLL that I am writing using Qt that serves as a plugin to an MFC application. I'm using the Qt/MFC Migration Framework tool and I want my plugin to have a main window. My ...
0
votes
2answers
461 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
1answer
272 views

Can't display modal QProgressDialog in MFC application

I'm having problems displaying a modal Qt dialog while starting up a Qt application from an MFC application. Specifically, a QProgressDialog instance won't display within the MFC application when I ...
0
votes
1answer
597 views

DllMain and Qt Mfc Migration

I am using the Mfc to Qt migration solution, to migrate my Mfc plugin to Qt. My Mfc plugin is loaded in third party Mfc app. Basically I am using the following example Qt based Application Extension : ...
0
votes
1answer
204 views

Deleting QWinWidget

I am using mfc to Qt migration and I am showing Qt dialogs in my Mfc app. Is it Ok to deleteLater QWinWidget in its winEvent handler? The thing is that I want all of my open Qt dialogs in My Mfc ...
0
votes
1answer
400 views

Minimizing Mfc application with open Qt dialog

I am using QtWinMigrate solution to show dialogs from my plugin dlls that are loaded in third party Mfc application. The problem is the following : When I minimize the main window of my Mfc ...
0
votes
0answers
479 views

Resizing Mfc dialog with embeded QWinWidget

Hello I asked my question on qt centre forum, but no answer yet. Hope someone will know something about this. I have an Mfc dialog with QWinWidget inside it. When I resize my dialog I want my ...
0
votes
3answers
768 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 ...