You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
378 B
24 lines
378 B
%{CPP_TEMPLATE}
|
|
|
|
#include "%{APPNAMELC}.h"
|
|
|
|
#include <tqlabel.h>
|
|
|
|
#include <tdemainwindow.h>
|
|
#include <tdelocale.h>
|
|
|
|
%{APPNAME}::%{APPNAME}()
|
|
: TDEMainWindow( 0, "%{APPNAME}" )
|
|
{
|
|
// set the shell's ui resource file
|
|
setXMLFile("%{APPNAMELC}ui.rc");
|
|
|
|
new TQLabel( "Hello World", this, "hello label" );
|
|
}
|
|
|
|
%{APPNAME}::~%{APPNAME}()
|
|
{
|
|
}
|
|
|
|
#include "%{APPNAMELC}.moc"
|