BALL  1.4.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
mainframe.h
Go to the documentation of this file.
1 // -*- Mode: C++; tab-width: 2; -*-
2 // vi: set ts=2:
3 //
4 
5 #ifndef BALL_APPLICATIONS_BALLVIEW_MAINFRAME_H
6 #define BALL_APPLICATIONS_BALLVIEW_MAINFRAME_H
7 
8 #ifndef BALL_VIEW_KERNEL_MAINCONTROL_H
10 #endif
11 
12 #ifndef BALL_VIEW_WIDGETS_SCENE_H
13 # include <BALL/VIEW/WIDGETS/scene.h>
14 #endif
15 
16 #include <QtGui/QWidget>
17 
18 namespace BALL
19 {
20  using namespace BALL::VIEW;
21 
22  class Mainframe
24  {
25  Q_OBJECT
26 
27  public:
28 
31 
32 
33  Mainframe(QWidget* parent = 0, const char* name = 0);
34 
36  virtual ~Mainframe();
37 
38  public slots:
39 
41  void show();
42 
44  bool eventFilter(QObject*, QEvent* e);
45 
47  void reset();
48 
49  // Help menu
50  void about();
51 
53  void howToCite();
54 
55  protected:
56  void changeEvent(QEvent* evt);
57 
59  };
60 
61 } // namespace BALL
62 
63 #endif // BALL_APPLICATIONS_BALLVIEW_MAINFRAME_H