BALL  1.4.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
editFunctions.h
Go to the documentation of this file.
1 // -*- Mode: C++; tab-width: 2; -*-
2 // vi: set ts=2:
3 //
4 
5 #ifndef BALL_VIEW_WIDGETS_EDITFUNCTIONS_H
6 #define BALL_VIEW_WIDGETS_EDITFUNCTIONS_H
7 
8 #ifndef BALL_VIEW_WIDGETS_DOCKWIDGET_H
10 #endif
11 
12 #ifndef BALL_VIEW_DIALOGS_PTEDIALOG_H
14 #endif
15 
16 #ifndef BALL_VIEW_DIALOGS_EDITOPERATIONDIALOG_H
18 #endif
19 
20 #include <QtGui/QTabWidget>
21 namespace BALL
22 {
23  namespace VIEW
24  {
31  : public DockWidget
32  {
33  Q_OBJECT
34 
35  public:
36 
37 // BALL_EMBEDDABLE(DockWidget)
38 
40 
41  EditFunctions(QWidget* parent = 0, const char *name = 0);
42 
43  ~EditFunctions();
44 
47  virtual void initializeWidget(MainControl& main_control);
48 
51  virtual void finalizeWidget(MainControl& main_control);
52 
53  protected:
56  QTabWidget tab_;
57  };
58  }
59 }
60 
61 #endif