blob: bf0fe532e3428353293f81b86a8ec038c472ba3e (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
* Copyright (C) 2000 by Matthias Kalle Dalheimer <kalle@kde.org>
*
* Licensed under the Artistic License.
*/
#ifndef __KDCOPWINDOW_H__
#define __KDCOPWINDOW_H__
class DCOPClient;
class TQListViewItem;
class TDEAction;
class TDESelectAction;
class TQWidgetStack;
class TQLabel;
class KDCOPListView;
#include <tdemainwindow.h>
#include "kdcoplistview.h"
#include "kdcopview.h"
class KDCOPWindow : public TDEMainWindow
{
Q_OBJECT
public:
KDCOPWindow( TQWidget* parent = 0, const char* name = 0 );
protected slots:
void slotCurrentChanged( TQListViewItem* item );
void slotCallFunction();
void slotCallFunction( TQListViewItem* item );
void slotApplicationRegistered(const TQCString &);
void slotApplicationUnregistered(const TQCString &);
void slotFillApplications();
void slotCopy();
void slotMode();
void slotReload();
private:
void fillObjects( DCOPBrowserItem*, const char* app );
void fillFunctions( DCOPBrowserItem*, const char* app, const char* obj );
bool getParameters
(
const TQString & unNormalisedSignature,
TQString & normalisedSignature,
TQStringList & types,
TQStringList & names
);
bool demarshal(TQCString & replyType, TQDataStream & reply, TQListBox *theList);
DCOPClient * dcopClient;
TDEAction * exeaction;
TDESelectAction * langmode;
kdcopview * mainView;
TQVBoxLayout * mainLayout;
};
#endif
|