可以供MFC调用的,QT实现的DLL(使用qt-solutions的qtwinmigrate实现)

MFC和QT的消息循环机制不同,所以,要让QT写的DLL可以供MFC调用,要做一点特殊的处理

  1. #include <qmfcapp.h>
  2. #include <qwinwidget.h>
  3. #include <QtGui>
  4. #include <QtGui/QMessageBox>
  5. #include <windows.h>
  6. #include <QTextCodec>
  1. #include "widget.h"
  2. BOOL WINAPI DllMain( HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpvReserved*/ )
  3. {
  4. static bool ownApplication = FALSE;
  5. //加入本地语言支持
  6. QTextCodec::setCodecForTr(QTextCodec::codecForLocale());
  7. QTextCodec::setCodecForCStrings(QTextCodec::codecForLocale());
  8. if ( dwReason == DLL_PROCESS_ATTACH )
  9. {
  10. ownApplication = QMfcApp::pluginInstance( hInstance );
  11. }
  12. if ( dwReason == DLL_PROCESS_DETACH && ownApplication )
  13. {
  14. qApp->quit();
  15. delete qApp;
  16. }
  17. return TRUE;
  18. }
  19. extern "C" __declspec(dllexport) int ShowDialog( HWND parent)
  20. {
  21. QWinWidget win(parent, NULL, Qt::Window);
  22. win.showCentered();
  23. win.center();
  24. QHBoxLayout hbox(&win);
  25. Widget *widget = new Widget(&win);
  26. widget->setWindowFlags(Qt::Window);
  27. hbox.addWidget(widget);
  28. win.show();
  29. qApp->exec();
  30. }

http://blog.csdn.net/small_qch/article/details/6743803

https://github.com/qtproject/qt-solutions/tree/master/qtwinmigrate

上一篇:Android 连接 SQL Server (jtds方式)——上


下一篇:Java实现MD5加密_字符串加密_文件加密