1 typedef signed char qint8; /* 8 bit signed */ 2
typedef unsigned char quint8; /* 8 bit unsigned */ 3 typedef short qint16; /* 16
bit signed */ 4 ty....
分类:
其他好文 时间:
2014-05-05 11:39:45
阅读次数:
503
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
应用程序中经常需要设置字体,例如office软件或者是其他的编辑器软件等等。这里主要涉及到如下几个概念:字体,字号以及风格(例如:粗体,斜体,下划线等等)。Qt里面也有对应的类。接下来我们主要对这几个类进行详细的说明,最后举例说明它们的应用。
1、Qt中相关的类:QFontDatabase、QFont、QFontInfo和QFontMetrics、QFontMetricsF;
(1)QFont...
分类:
其他好文 时间:
2014-05-04 09:29:54
阅读次数:
505