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.
15 lines
320 B
15 lines
320 B
#include <ksystemtray.h>
|
|
#include <tdeapplication.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();
|
|
}
|