blob: 07572f8d3762c312d1ad486eb7064c2802eb03dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <ksystemtray.h>
#include <kapplication.h>
int main(int argc, char **argv)
{
TDEApplication app( argc, argv, "ksystemtraytest" );
TQLabel *l = new TQLabel("System Tray Main Window", 0L);
KSystemTray *tray = new KSystemTray( l );
tray->setText("Test");
l->show();
tray->show();
return app.exec();
}
|