00001
00002
00003
00004
00005
00006
00007 #ifndef BALL_VIEW_DIALOGS_NETWORKPREFERENCES_H
00008 #define BALL_VIEW_DIALOGS_NETWORKPREFERENCES_H
00009
00010 #ifndef BALL_COMMON_GLOBAL_H
00011 # include <BALL/COMMON/global.h>
00012 #endif
00013
00014 #ifdef BALL_COMPILER_MSVC
00015 # include <BALL/VIEW/UIC/ui_networkPreferences.h>
00016 #else
00017 # include <BALL/VIEW/UIC/networkPreferencesData.h>
00018 #endif
00019
00020
00021 #ifndef BALL_VIEW_KERNEL_PREFERENCESENTRY
00022 # include <BALL/VIEW/KERNEL/preferencesEntry.h>
00023 #endif
00024
00025 #include <QtGui/QWidget>
00026
00027 namespace BALL
00028 {
00029 namespace VIEW
00030 {
00031
00036 class BALL_VIEW_EXPORT NetworkPreferences
00037 : public QWidget,
00038 public Ui_NetworkPreferencesData,
00039 public PreferencesEntry
00040 {
00041 Q_OBJECT
00042
00043 public:
00044
00046 NetworkPreferences(QWidget *parent = NULL, const char *name = "NetworkPreferences",
00047 Qt::WFlags fl=0);
00048
00050 virtual ~NetworkPreferences();
00051
00053 void applySettings();
00054
00056 void getSettings();
00057 };
00058
00059 } }
00060
00061 #endif // BALL_VIEW_DIALOGS_NETWORKPREFERENCES_H