源代码如下:
#include <unistd.h>
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <qpushbutton.h>
#include <qlabel.h>
#include <qspinbox.h>
#include <qtopia/qpeapplication.h>
#include "hello.h"
HelloForm::HelloForm( QWidget* parent, const char* name, WFlags fl):
HelloBaseForm(parent, name, fl)
{
}
HelloForm::~HelloForm()
{
}
void HelloForm::SayHello()
{
MessageLabel->setText("Hello, Qtopia world!");
}
void HelloForm::Close()
{
close();
}