blob: 5288a21f39fa2e5697c8ff97fd4cf3c43d6e529b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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
|