当前位置: 技术问答>linux和unix
QT开发平台
来源: 互联网 发布时间:2017-03-24
本文导语: 我在ubuntu下面安装了一个QT开发工具,但是后面进入QT Creator后,直接运行example都不行,我主要目的是 在源文件有的情况下,可以运行出一个出来,这是一个的猜数字游戏(网上下载的) main.cpp #include #include "newfil...
我在ubuntu下面安装了一个QT开发工具,但是后面进入QT Creator后,直接运行example都不行,我主要目的是
在源文件有的情况下,可以运行出一个出来,这是一个的猜数字游戏(网上下载的)
main.cpp
newfile.cpp
newfile.h
如果安装了LinuxQT的大神,希望能帮我建立一个工程,把工程打包发送给我一下,谢谢了,或者曾经做的小游戏发送给我也行。非常感谢。邮箱1971445763@qq.com
在源文件有的情况下,可以运行出一个出来,这是一个的猜数字游戏(网上下载的)
main.cpp
#include
#include "newfile.h"
//
int main(int argc, char ** argv)
{
QApplication app( argc, argv );
mywidget win;
win.show();
return app.exec();
}
newfile.cpp
#include
#include "newfile.h"
mywidget::mywidget(QWidget* parent):QWidget(parent)
{
label=new QLabel("time:");
addButton=new QPushButton("Input");
newButton=new QPushButton("New");
edit=new QLineEdit();
edittime=new QLineEdit("1");
edittime->setReadOnly(true);
val = rand() % 99 + 0;
time=1;
connect( addButton,SIGNAL(clicked()),this,SLOT(estimate()));
connect( newButton,SIGNAL(clicked()),this,SLOT(newgame()));
QHBoxLayout *HLayout = new QHBoxLayout;
HLayout->addWidget(label);
HLayout->addWidget(edittime);
QVBoxLayout *VLayout = new QVBoxLayout;
VLayout->addLayout(HLayout);
VLayout->addWidget( edit);
VLayout->addWidget(addButton);
VLayout->addWidget(newButton);
setLayout(VLayout);
setWindowTitle(QObject::trUtf8("猜数字了"));//设置标题
}
void mywidget::estimate()
{ QString stemp;
float ltemp;
ltemp=edit->text().toFloat();
stemp=QString::number(time);
edittime->setText(stemp);
time++;
if(ltemp>val)
{
QMessageBox::about(this, tr("Message"),
QObject::trUtf8("大了"));
}
if(ltempsetText(stemp);
edit->setText("");
val = rand() % 99 + 0;
}
newfile.h
#ifndef __NEWFILE_H__
#define __NEWFILE_H__
#include
#include
#include
#include
#include
#include
class QLineEdit;
class QTextEdit;
class QPushButton;
class mywidget:public QWidget
{
Q_OBJECT
public:
mywidget(QWidget* parent=0);
private slots:
void estimate();
void newgame();
private:
QPushButton* addButton;
QPushButton* newButton;
QLabel* label;
QLineEdit *edittime;
QLineEdit *edit;
int val ;
int time;
};
#endif // __NEWFILE_H__
如果安装了LinuxQT的大神,希望能帮我建立一个工程,把工程打包发送给我一下,谢谢了,或者曾经做的小游戏发送给我也行。非常感谢。邮箱1971445763@qq.com
|
三个文件放在一个文件夹下面.
qmake -project
生成工程文件
然后
qmake生成Makefile
make编译
qmake -project
生成工程文件
然后
qmake生成Makefile
make编译
|
仔细点吧
qmake -project不是qmake-project
qmake -project不是qmake-project