码迷,mamicode.com
首页 > 其他好文 > 详细

qt 单例程序

时间:2014-05-05 11:14:33      阅读:415      评论:0      收藏:0      [点我收藏+]

标签:style   color   get   int   string   http   


1.http://qt.nokia.com的网站把QtSingleApplication 的源代码qtsingleapplication-2.6_1-opensource.zip 下载下来,然后解压缩。假 设解压缩到路径: E:\qtsingleapplication-2.6_1-opensource

2.

编写程序代码如下:

#include <QLabel>

#include <QWidget>

#include <QMessageBox>

#include <QApplication>

#include "E:\qtsingleapplication-2.6_1-opensource\src\QtSingleApplication"

int main(int argc,char* argv[])

{

QtSingleApplication app(argc,argv);

if (app.isRunning())

{

QMessageBox::information(0, "test",

"An instance has already been running.");

return 0;

}

QLabel label("<h2>test</h2>");

label.show();

return app.exec();

}

3.

编译

qmake –project

qmake

nmake

 

 

第二种方案:

QApplicationapp(argc,argv);
HANDLEhMutex=CreateMutex(NULL,true,QString("[‘{EFEB2EF6-F8E0-AE44-BABE-1BBEF2C7FD56}‘]").toStdWString().c_str());
if(GetLastError()==ERROR_ALREADY_EXISTS)
{
CloseHandle(hMutex);
QMessageBox::information(NULL,QObject::tr("error"),QObject::tr("一个实例已经在运行,请关闭后重新打开"),"OK");
app.exit(1);
return1;
}

 

 

 

 

 

qt 单例程序,布布扣,bubuko.com

qt 单例程序

标签:style   color   get   int   string   http   

原文地址:http://www.cnblogs.com/lvdongjie/p/3706102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!