(1)c++文件中不同类如何共用一个变量
头文件1.h 源文件1.cpp
其他源文件2.cpp,3.cpp这些源文件都包含头文件1.h
方法:
在1.h声明全局变量 extern int n;
在1.cpp定义该全局变量 int n=0;
2.cpp和3.cpp均可直接使用变量n。
第一章
关于创建qt项目
1. 添加头文件
#include< QLabel>
#include< QLineEdit>
#include< QPushButton>
2. 在私有属性中创建对象
Qlabel*label1,*label2;
QLineEdit *lineEdit;
QPushButton *button;
3. 将控件位置固定(用于布局管理器)
*QGridLayout mainLayout=new QGridLayout(this);
mainLayout->addWidget(对象,0,1);(01代表位置)
4. 添加槽函数在private slots
Void showArea();
5. 信号与槽机制
一个信号可以与另一个信号相连;
同一个信号可以与多个槽相连;
同一个槽可以响应多个信号;
connect(button,SIGNAL(clicked()),this,SLOT(槽函数)));
第二章
字符串的转换
Qstring str="125";
bool ok;
int hex=str.toInt(&ok,16); //ok=true,hex=293
Int dec=str.toInt(&ok,10); //ok=true,dec=125
第三章
QBoxLayout可以在水平方向或垂直方向上排列控件。
QHBoxLayout:水平布局,在水平方向上排列控件。
QVBoxLayout:垂直布局,在垂直方向上排列控件。
第四章
关于QTIME类的使用
QTimer *timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(update()));
timer->start(1000);
SIGNAL(timeout())表示:每当计时结束计时器归零并重新计时。
timer->start(1000)表示:1000指1000毫秒,表示每次timeout的时间间隔是1000ms
第五章
关于在QT中进行文件操作的功能
实现新建文件功能
ImgProcessor *newImgProcessor=new ImgProcessor;
newImgProcessor->show();
获得QTextEdit的文档
QTextDocument *doc=showWidget->text->document();
doc->print(&printer);
第六章
实现图形方法
QPainterPath path;
Path.moveTo(0,0);
path.lineTo(200,0);
path.lineTo(200,100);
path.lineTo(0,100);