codeblocks 8.02。 ,赢得XP SP2,Qt 4.6
安装Qt SDK后,我安装了QtWorkbench(允许您创建Qt应用程序的codeblocks插件。)http://code.google.com/p/qtworkbench/。
我是根据该页面的指示工作的。我打开了文件夹“对话框”,在其中我打开了一个新的空代码块项目。同样在这个文件夹“对话框”中,我打开了一个新目录“complexwizard”。在complexwizard中简单的main.cpp:
#include <QWidget>
#include <QApplication>
#include <QPushButton>
#include <QLabel>
#include <QDesktopWidget>
class Communicate : public QWidget
{
Q_OBJECT
public:
Communicate(QWidget *parent = 0);
private slots:
void OnPlus();
void OnMinus();
private:
QLabel *label;
};
void center(QWidget *widget, int w, int h)
{
int x, y;
int screenWidth;
int screenHeight;
QDesktopWidget *desktop = QApplication::desktop();
screenWidth = desktop->width();
screenHeight = desktop->height();
x = (screenWidth - w) / 2;
y = (screenHeight - h) / 2;
widget->move( x, y );
}
Communicate::Communicate(QWidget *parent)
: QWidget(parent)
{
int WIDTH = 350;
int HEIGHT = 190;
resize(WIDTH, HEIGHT);
QPushButton *plus = new QPushButton("+", this);
plus->setGeometry(50, 40, 75, 30);
QPushButton *minus = new QPushButton("-", this);
minus->setGeometry(50, 100, 75, 30);
label = new QLabel("0", this);
label->setGeometry(190, 80, 20, 30);
connect(plus, SIGNAL(clicked()), this, SLOT(OnPlus()));
connect(minus, SIGNAL(clicked()), this, SLOT(OnMinus()));
center(this, WIDTH, HEIGHT);
}
void Communicate::OnPlus()
{
int val = label->text().toInt();
val++;
label->setText(QString::number(val));
}
void Communicate::OnMinus()
{
int val = label->text().toInt();
val--;
label->setText(QString::number(val));
}
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
Communicate window;
window.setWindowTitle("Communicate");
window.show();
return app.exec();
}
然后我在一个空白项目中添加了“main.cpp”,并根据该页面的说明进行了配置。
当我开始编译程序时,编译器总是说:
*似乎这个项目还没有建成。你想现在补吗? *
我按是的,收到了这条消息:
进程终止,状态为2(0分0秒) 0错误,0警告
在项目文件夹“对话框”中,创建了新文件:
complexwizard.pro
Makefile.complexwizard
Makefile.complexwizard.Debug
Makefile.complexwizard.Release
由于我对编程,编译器和其他东西相对较新,这对我来说并不多。
因此,我要求根据这些症状提出一些建议的人帮助我将其从静止状态中移除。 如果您有兴趣,我会添加更多需要的数据
答案 0 :(得分:2)
我是QtWorkbench的作者,我不久前就停止了支持它。我很确定它现在已经过时了。我真的认为新的Qt用户应该使用QtCreator“官方”Qt IDE来获得开箱即用的最佳支持。如果任何人想要开发它,QtWorkbench仍然在谷歌代码中。