Tagged Questions

1
vote
1answer
144 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
1answer
853 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
275 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
415 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
263 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
3answers
753 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 ...