class KIPC

This class implements the "old style" KDE IPC mechanism. More...

Definition#include <kipc.h>
List of all Methods
Annotated List
Files
Globals
Hierarchy
Index

Public Static Methods


Detailed Description

This class implements the "old style" KDE IPC mechanism. This will be obsoleted in the near future by DCOP -- The Desktop Communications Protocol. (current date is Oct 18, 1999)

All methods are static here so no need to instantiate.

void sendMessage (Atom msg, Window w, int data=0)
[static]

Send a message to a window.

Parameters:
AtomThe X Atom identifying the message.
WindowThe Window ID of the target window.
dataYou can pass one in of data throught this.

void sendMessage (const char *msg, Window w, int data=0)
[static]

Send a message to a window.

Parameters:
msgA pointer to a null terminated array of chars containing the message.

void sendMessageAll (Atom msg, int data=0)
[static]

Send a message to all KDE windows.

Parameters:
AtomThe X Atom identifying the message.

void sendMessageAll (const char *msg, int data=0)
[static]

Send a message to all KDE windows.

Parameters:
msgA pointer to a null terminated array of chars containing the message.

int dropError (Display *, XErrorEvent *)
[static]

Used internally

long getSimpleProperty (Window w, Atom a)
[static]

Used internally