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.
tdelibs/arts/knotify/knotifytest.cpp

20 lines
588 B

#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 );
}
}