早闻Qt支持多操作系统,不妨试试看。在下列代码中分别将其在window XP和 fedora 13进行编译运行
基本上不用改任何代码,只需编译即可运行。
- #include <QtGui/QApplication>
- #include <QtGui/QHBoxLayout>
- #include <QtGui/QSlider>
- #include <QtGui/QSpinBox>
- int main(int argc,char *argv[]){
- QApplication app(argc,argv);
- QWidget *window =new QWidget;
- window->setWindowTitle("Enter your age::");
- QSpinBox *spinBox=new QSpinBox;
- QSlider * slider=new QSlider(Qt::Horizontal);
- spinBox->setRange(0,130);
- slider->setRange(0,130);
- QObject::connect(spinBox,SIGNAL(valueChanged(int)),slider,SLOT(setValue(int)));
- QObject::connect(slider,SIGNAL(valueChanged(int)),spinBox,SLOT(setValue(int)));
- spinBox->setValue(35);
- QHBoxLayout *layout= new QHBoxLayout;
- layout->addWidget(spinBox);
- layout->addWidget(slider);
- window->setLayout(layout);
- window->show();
- return app.exec();
- }
一次编写程序,多处编译,多系统运行从而解决跨平台的问题!
上图分别为window xp和linux fedora 13运行截图!
阅读(1336) | 评论(0) | 转发(0) |