QT
password318
爱好新技术,新思想,是一个
展开
-
QT读取文件路径用C语言File打开
FILE *file; QByteArray byteArray = fileName.toLocal8Bit(); char * pc = byteArray.data(); pc[byteArray.length()]='\0'; file = fopen(pc,"rb"); //或者直接写成 file = fopen(fileName.toLocal8Bit().da原创 2012-02-16 19:13:25 · 4078 阅读 · 0 评论 -
QT图形程序中同时启动命令提示符窗口
然后就可以用,qDebug()原创 2012-02-25 10:46:19 · 872 阅读 · 0 评论 -
TiXmlNode 操作
/************************************************************************/ /* 按文件顺序读入门窗 /* modified by zheng zhe /* update 2012/03/30 /***************************原创 2012-03-31 13:26:29 · 1991 阅读 · 0 评论 -
QT QMessageBox
QMessageBox mb( "Application name here", "Saving the file will overwrite the original file on the disk.\n" "Do you really want to save?", QMessageBox::Information, QMes原创 2012-03-20 00:28:08 · 868 阅读 · 0 评论 -
QT打包
qt程序打包安装后无法显示jpg图片,无法正确显示gbk编码的网页。而这些在调试模式下都能正确显示。问题在于,打包时需要添加QT安装目录下的plugin文件夹中相关资源,一个是codecs里面的qcncodec4.dll,一个是imageformats下面的qjpeg4.dll原创 2012-04-09 19:10:34 · 886 阅读 · 0 评论 -
C++ Gui Programming with Qt4第20章第二个示例代码VowelCube
#ifndef MYPANEL_H#define MYPANEL_H#include "QtGui"#include #include "ui_mypanel.h"class MyPanel : public QGLWidget{ Q_OBJECTpublic: MyPanel(QWidget *parent = 0); ~MyPanel();protected: v转载 2012-05-07 14:55:27 · 1177 阅读 · 0 评论