一.计算器界面设计
计算机界面程序分析:
需要用到的组件:
界面设计:
界面设计实现:
实验1:计算器界面设计
#include <QtGui/QApplication>
#include <QWidget> //主窗口
#include <QLineEdit> //文本框
#include <QPushButton> //按钮
int main(int argc, char *argv[])
{QApplication a(argc, argv);QWidget* w = new QWidget(NULL, Qt::WindowCloseButtonHint);//窗口去掉最大化最小化按钮QLineEdit* le = new QLineEdit(w);QPushButton* button[20] = {0};//对象指针数组//按钮字符串数组const char* btnText[20] ={"7", "8", "9", "+", "(","4", "5", "6", "-", ")","1", "2", "3", "*", "<-","0", ".", "=", "/", "C",};int ret = 0;//文本框 坐标,尺寸le->move(10, 10);le->resize(240, 30);le->setReadOnly(true);//文本框中不接受用户直接输入字符//将按钮界面视为二维数组。四行 五列for(int i=0; i<4; i++){for(int j=0; j<5; j++){button[i*5 + j] = new QPushButton(w);button[i*5 + j]->resize(40, 40);button[i*5 + j]->move(10 + (10 + 40)*j, 50 + (10 + 40)*i);button[i*5 + j]->setText(btnText[i*5 + j]);//按钮字符串}}w->show();w->setFixedSize(w->width(), w->height());//将窗口固定大小,不可以拉动窗口大小ret = a.exec();delete w;return ret;
}
小结:
- GUI应用程序开发前必须进行界面设计
- GUI应用程序界面需要考虑各个细节
- Qt库有能力实现各种GUI应用程序需求
- Qt帮助文档的使用对于开发时非常重要的