/* This file is part of the KDE libraries
Copyright (C) 2000 Charles Samuels
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef _KNOTIFY_CLIENT
#define _KNOTIFY_CLIENT
#include
#include
#include
#undef None // X11 headers...
/**
* This namespace provides a method for issuing events to a KNotifyServer
* call KNotifyClient::event("eventname"); to issue it.
* On installation, there should be a file called
* $KDEDIR/share/apps/appname/eventsrc which contains the events.
*
* The file looks like this:
*
* [!Global!]
* IconName=Filename (e.g. kdesktop, without any extension)
* Comment=FriendlyNameOfApp
*
* [eventname]
* Name=FriendlyNameOfEvent
* Comment=Description Of Event
* default_sound=filetoplay.wav
* default_presentation=1
* ...
*
* default_presentation contains these ORed events:
* None=0, Sound=1, Messagebox=2, Logfile=4, Stderr=8
*
* You can also use the "nopresentation" key, with any the presentations
* ORed. Those that are in that field will not appear in the kcontrol
* module. This was intended for software like KWin to not allow a window-opening
* that opens a window (e.g., allowing to disable KMessageBoxes from appearing)
* If the user edits the eventsrc file manually, it will appear. This only
* affects the KcmNotify.
*
* You can also use the following events, which are system controlled
* and do not need to be placed in your eventsrc:
*
*
* - cannotopenfile
*
- notification
*
- warning
*
- fatalerror
*
- catastrophe
*
*
* @author Charles Samuels
*/
namespace KNotifyClient
{
struct InstancePrivate;
class InstanceStack;
/**
* Makes it possible to use @ref KNotifyClient with a @ref KInstance
* that is not the application.
*
* Use like this:
*
* KNotifyClient::Instance(myInstance);
* KNotifyClient::event("MyEvent");
*
* @short Enables @ref KNotifyClient to use a different @ref KInstance
*/
class Instance
{
public:
/**
* Constructs a KNotifyClient::Instance to make @ref KNotifyClient use
* the specified @ref KInstance for the event configuration
*/
Instance(KInstance *);
/**
* Destructs the KNotifyClient::Instance and resets @ref KNotifyClient
* to the previously used @ref KInstance
*/
~Instance();
/**
* @returns true if this instance should use the System bell instead
* of KNotify.
*/
bool useSystemBell() const;
/**
* Returns the currently active @ref KInstance
*/
static KInstance *current();
/**
* Returns the current KNotifyClient::Instance (not the KInstance)
*/
static Instance *currentInstance();
private:
static InstanceStack *instances();
InstancePrivate *d;
static InstanceStack *s_instances;
};
enum {
Default=-1,
None=0,
Sound=1,
Messagebox=2,
Logfile=4,
Stderr=8
};
enum {
Notification=1,
Warning=2,
Error=4,
Catastrophe=8
};
/**
* default events you can use
*/
enum StandardEvent {
cannotOpenFile,
notification,
warning,
fatalError,
catastrophe
};
/**
* This starts the KNotify Daemon, if it's not already started.
* This will be useful for games that use sound effects. Run this
* at the start of the program, and there won't be a pause when it is
* first triggered.
* @return true if daemon is running (always true at the moment)
**/
bool startDaemon();
/**
* This should be the most used method in here.
* Call it by KNotifyClient::event("EventName");
* It will use KApplication::kApplication->dcopClient() to communicate to
* the server
* @param message The name of the event
* @param text The text to put in a dialog box. This won't be shown if
* the user connected the event to sound, only.
*/
bool event(const QString &message, const QString &text=QString::null);
/**
* Allows to easily emit standard events.
* @param event The event you want to raise.
* @param text The text explaining the event you raise.
*/
bool event( StandardEvent event, const QString& text=QString::null );
/**
* Will fire an event that's not registered.
* @param text The error message text, if applicable
* @param present The error message level, defaulting to "Default"
* @param file The sound file to play if selected with present
*/
bool userEvent(const QString &text=QString::null, int present=Default, int level=Default,
const QString &sound=QString::null, const QString &file=QString::null);
/**
* This is a simple substitution for QApplication::beep().
* It simply calls
*
* KNotifyClient::event( KNotifyClient::notification, reason );
*
*/
void beep(const QString& reason=QString::null);
/**
* Gets the presentation associated with a certain event name
* Remeber that they may be ORed:
* if (present & KNotifyClient::Sound) { [Yes, sound is a default] }
*/
int getPresentation(const QString &eventname);
/**
* Gets the default file associated with a certain event name
* The control panel module will list all the event names
* This has the potential for being slow.
*/
QString getFile(const QString &eventname, int present);
/**
* Gets the default presentation for the event of this program.
* Remember that the Presentation may be ORed. Try this:
* if (present & KNotifyClient::Sound) { [Yes, sound is a default] }
*/
int getDefaultPresentation(const QString &eventname);
/**
* Gets the default File for the event of this program.
* It gets it in relation to present.
* Some events don't apply to this function ("Message Box")
* Some do (Sound)
*/
QString getDefaultFile(const QString &eventname, int present);
/**
* Shortcut to KNotifyClient::Instance::current() :)
* @returns the current KInstance.
*/
KInstance * instance();
};
#endif
Generated by: dfaure on kde.faure.org on Thu Jan 17 22:15:01 2002, using kdoc 2.0a53. |