~ubuntu-branches/ubuntu/vivid/kdesdk/vivid

« back to all changes in this revision

Viewing changes to kspy/spy.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-06 11:49:54 UTC
  • mfrom: (0.4.21)
  • Revision ID: package-import@ubuntu.com-20120606114954-rdls73fzlpzxglbx
Tags: 4:4.8.80-0ubuntu1
* New uptream beta release
* Update dont_export_private_classes.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                          spy.h  -  description
3
 
                             -------------------
4
 
    begin                : Tue May  1 02:59:33 BST 2001
5
 
    copyright            : (C) 2001 by Richard Moore
6
 
    email                : rich@kde.org
7
 
 ***************************************************************************/
8
 
 
9
 
/***************************************************************************
10
 
 *                                                                         *
11
 
 *   This program is free software; you can redistribute it and/or modify  *
12
 
 *   it under the terms of the GNU General Public License as published by  *
13
 
 *   the Free Software Foundation; either version 2 of the License, or     *
14
 
 *   (at your option) any later version.                                   *
15
 
 *                                                                         *
16
 
 ***************************************************************************/
17
 
 
18
 
#ifndef SPY_H
19
 
#define SPY_H
20
 
 
21
 
#include <QWidget>
22
 
 
23
 
class QKeyEvent;
24
 
 
25
 
class NavView;
26
 
class PropsView;
27
 
class SigSlotView;
28
 
class ReceiversView;
29
 
class ClassInfoView;
30
 
 
31
 
/**
32
 
  Spy is the main window class of the project.
33
 
 */
34
 
class Spy : public QWidget
35
 
{
36
 
  Q_OBJECT 
37
 
 
38
 
  public:
39
 
    Spy( QWidget *parent = 0 );
40
 
    ~Spy();
41
 
 
42
 
    void setTarget( QWidget *target );
43
 
 
44
 
  protected:
45
 
    virtual void keyPressEvent( QKeyEvent* );
46
 
 
47
 
  private:
48
 
    QWidget *mTarget;
49
 
    PropsView *mPropsView;
50
 
    SigSlotView *mSigSlotView;
51
 
    ReceiversView *mReceiversView;
52
 
    ClassInfoView *mClassInfoView;
53
 
    NavView *mNavView;
54
 
};
55
 
 
56
 
#endif