summaryrefslogtreecommitdiffstats
path: root/kdcop/kdcopwindow.h
blob: 18e4ecfb6fc35ada72018487008cb1b20e643355 (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 QListViewItem;
class KAction;
class KSelectAction;
class QWidgetStack;
class QLabel;
class KDCOPListView;

#include <kmainwindow.h>
#include "kdcoplistview.h"
#include "kdcopview.h"

class KDCOPWindow : public KMainWindow
{
  Q_OBJECT

  public:

    KDCOPWindow( QWidget* parent = 0, const char* name = 0 );

  protected slots:

    void slotCurrentChanged( QListViewItem* item );
    void slotCallFunction();
    void slotCallFunction( QListViewItem* item );
    void slotApplicationRegistered(const QCString &);
    void slotApplicationUnregistered(const QCString &);
    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 QString  & unNormalisedSignature,
       QString        & normalisedSignature,
       QStringList    & types,
       QStringList    & names
      );

    bool demarshal(QCString & replyType, QDataStream & reply, QListBox *theList);

    DCOPClient    * dcopClient;
    KAction       * exeaction;
    KSelectAction * langmode;
    kdcopview	  * mainView;
    QVBoxLayout  * mainLayout;
};



#endif