1 /* hellokde.cpp */
2 #include <kapp.h>
3 #include <qlabel.h>
4 #include <qstring.h>
5
6 int main(int argc, char **argv)
7 {
8 KApplication app(argc, argv, "hellokde");
9 QLabel *label = new QLabel(NULL);
10 QString string("Hello, KDE");
11 label->setText(string);
12 label->setAlignment(Qt::AlignVCenter | Qt::AlignHCenter);
13 label->setGeometry(0, 0, 180, 75);
15 label->show();
16 app.setMainWidget(label);
17 return(app.exec());
18 }
拿这个程序来说的话是不是KDE的程序就是首先要 #include <kapp.h>啊
主函数中的 KApplication app(argc, argv, "hellokde");也是它的特征吧