diff options
Diffstat (limited to 'kpovmodeler/pmopenglsettings.h')
-rw-r--r-- | kpovmodeler/pmopenglsettings.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/kpovmodeler/pmopenglsettings.h b/kpovmodeler/pmopenglsettings.h new file mode 100644 index 00000000..d893a6b0 --- /dev/null +++ b/kpovmodeler/pmopenglsettings.h @@ -0,0 +1,54 @@ +/* +************************************************************************** + description + -------------------- + copyright : (C) 2003 by Andreas Zehender + email : zehender@kde.org +************************************************************************** + +************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +**************************************************************************/ + +#ifndef PMOPENGLSETTINGS_H +#define PMOPENGLSETTINGS_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include "pmsettingsdialog.h" + +class QCheckBox; + +/** + * OpenGL configuration dialog page + */ +class PMOpenGLSettings : public PMSettingsDialogPage +{ + Q_OBJECT +public: + /** + * Default constructor + */ + PMOpenGLSettings( QWidget* parent, const char* name = 0 ); + /** */ + virtual void displaySettings( ); + /** */ + virtual bool validateData( ); + /** */ + virtual void applySettings( ); + /** */ + virtual void displayDefaults( ); + +private: + QCheckBox* m_pDirect; +}; + + +#endif |