blob: 2527af33b12905744e0094f5f4c1f3aa4e3ab806 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
//
// C++ Interface: %{MODULE}
//
// Description:
//
//
// Author: %{AUTHOR} <%{EMAIL}>, (C) %{YEAR}
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KOMPOSEDCOPIFACE_H
#define KOMPOSEDCOPIFACE_H
#include <dcopobject.h>
/**
@author Hans Oischinger
*/
class KomposeDcopIface : virtual public DCOPObject
{
K_DCOP
k_dcop:
virtual void createDefaultView() = 0;
virtual void createVirtualDesktopView() = 0;
virtual void createCurrentDesktopView() = 0;
virtual void createWorldView() = 0;
virtual void closeCurrentView() = 0;
};
#endif
|