voidinitDir(){QStringuserFilePath=QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation)+"/Mysoft";QDir*doc=newQDir;if(!doc->exists(userF...
分类:
其他好文 时间:
2014-05-05 11:35:40
阅读次数:
270
(转自:http://blog.csdn.net/zerokkqq/article/details/6686912)CTRL+Enter发送信息的实现
在现在的即时聊天程序中,一般都设置有快捷键来实现一些常用的功能,类似QQ可以用CTRL+Enter来实现信息的发送。 在QT4中,所有的事件都继承与...
分类:
其他好文 时间:
2014-05-05 11:24:46
阅读次数:
380
QStringcmd;cmd.clear();QStringapplication_path=QCoreApplication::applicationFilePath();//带文件扩展名的全路径application_path.replace("/","\\");QStringregPath="...
分类:
其他好文 时间:
2014-05-05 11:17:55
阅读次数:
282
1.http://qt.nokia.com的网站把QtSingleApplication
的源代码qtsingleapplication-2.6_1-opensource.zip 下载下来,然后解压缩。假 设解压缩到路径:
E:\qtsingleapplication-2.6_1-opensourc...
分类:
其他好文 时间:
2014-05-05 11:14:33
阅读次数:
415
QApplication::addLibraryPath(QApplication::applicationDirPath());QApplication::addLibraryPath(QApplication::applicationDirPath()+"/plugins/");
分类:
其他好文 时间:
2014-05-04 20:57:49
阅读次数:
414
1.
以资源文件的形式设置控件样式QFiledata(QString(":/style.qss"));QStringqssFile;if(data.open(QFile::ReadOnly)){QTextStreamstyleIn(&data);qssFile=styleIn.readAll();d...
分类:
其他好文 时间:
2014-05-04 20:49:35
阅读次数:
317
widget *s =new
widget;s->move((QApplication::desktop()->width()-s->width())/2,(QApplication::desktop()->height()-s->height())/2);s->show();
分类:
其他好文 时间:
2014-05-04 20:39:22
阅读次数:
290
QTranslator* myTranslator=new
QTranslator;myTranslator->load("xxx.qm");app.installTranslator(myTranslator);QTranslator*
chTranslator=new QTranslator;c...
分类:
其他好文 时间:
2014-05-04 20:38:23
阅读次数:
527
//QTextCodec::setCodecForLocale(QTextCodec::codecForName("UTF-8"));QTextCodec::setCodecForLocale(QTextCodec::codecForName("GBK"));
分类:
其他好文 时间:
2014-05-04 20:37:57
阅读次数:
355
QVariant相当于一个包含大多数Qt数据类型的联合体将数据存储为一个Private结构体类型的成员变量d:1 QVariant::QVariant(Type
type)2 { create(type, 0); }1 void QVariant::create(int type, const vo...
分类:
其他好文 时间:
2014-05-04 19:30:20
阅读次数:
593