summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/khello/app.cpp
blob: 4433268598ea090fe9e873eb0812c1aa754eb4c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%{CPP_TEMPLATE}

#include "%{APPNAMELC}.h"

#include <qlabel.h>

#include <kmainwindow.h>
#include <klocale.h>

%{APPNAME}::%{APPNAME}()
    : KMainWindow( 0, "%{APPNAME}" )
{
    // set the shell's ui resource file
    setXMLFile("%{APPNAMELC}ui.rc");

    new QLabel( "Hello World", this, "hello label" );
}

%{APPNAME}::~%{APPNAME}()
{
}

#include "%{APPNAMELC}.moc"