BALL  1.4.79
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
serverPreferences.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_DIALOGS_SERVERPREFERENCES_H
6 #define BALL_VIEW_DIALOGS_SERVERPREFERENCES_H
7 
8 #ifndef BALL_COMMON_GLOBAL_H
9 # include <BALL/COMMON/global.h>
10 #endif
11 
12 #include <QtGui/QWidget>
13 #include <QtGui/QCheckBox>
14 #include <QtGui/QLineEdit>
15 
16 #ifndef BALL_VIEW_KERNEL_PREFERENCESENTRY
18 #endif
19 
20 namespace BALL
21 {
22  class INIFile;
23 
24  namespace VIEW
25  {
36  : public QWidget,
37  public PreferencesEntry
38  {
39  Q_OBJECT
40 
41  public:
42 
46 
53  ServerPreferences(QWidget *parent = NULL, const char *name = ((String)tr("ServerPreferences")).c_str());
54 
56 
59 
62  virtual ~ServerPreferences();
63 
65 
68 
72  int getPort();
73 
80  bool getServerStatus();
82 
83  private:
84 
85  QLineEdit *port_;
86  QCheckBox *server_status_;
87  };
88 
89  } // namespace VIEW
90 } // namespace BALL
91 
92 #endif // BALL_VIEW_DIALOGS_SERVERPREFERENCES_H
#define BALL_VIEW_EXPORT
Definition: COMMON/global.h:52