summaryrefslogtreecommitdiffstats
path: root/arts/knotify/knotifytest.cpp
blob: 9ca10cb9dc660c208a821586b677781a4bf38ad2 (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 <kapplication.h>
#include <knotifyclient.h>

int main(int argc, char **argv)
{
  KApplication 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 );
  }
}