blob: 0f370d80af4cab2977b60bae94a5ae7015e9acbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <string>
#include <stdio.h>
#include <tdeapplication.h>
#include <knotifyclient.h>
int main(int argc, char **argv)
{
TDEApplication app(argc, argv, "knotifytest");
//
while (1) {
char inp = getc(stdin);
if ( inp=='q' || inp==27 ) break;
if ( inp=='1' ) KNotifyClient::userEvent( "Foo", KNotifyClient::Sound, KNotifyClient::Default, "KDE_Window_DeIconify.ogg" );
if ( inp=='2' ) KNotifyClient::userEvent( "MessageBox Event", KNotifyClient::Messagebox );
if ( inp=='3' ) KNotifyClient::userEvent( "Stderr Event", KNotifyClient::Stderr );
}
}
|