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.
23 lines
356 B
23 lines
356 B
#ifndef _KPAGERIFACE_H_
|
|
#define _KPAGERIFACE_H_
|
|
|
|
#include <dcopobject.h>
|
|
|
|
class KPagerIface : virtual public DCOPObject
|
|
{
|
|
K_DCOP
|
|
|
|
k_dcop:
|
|
/**
|
|
* If it's closed, open the window at the specified location
|
|
*/
|
|
virtual void showAt(int x, int y)=0;
|
|
|
|
/**
|
|
* Toggles the show/hide state of kpager
|
|
*/
|
|
virtual void toggleShow(int x, int y)=0;
|
|
};
|
|
#endif
|
|
|