diff options
Diffstat (limited to 'kpovmodeler/pmsolidobjectedit.h')
-rw-r--r-- | kpovmodeler/pmsolidobjectedit.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/kpovmodeler/pmsolidobjectedit.h b/kpovmodeler/pmsolidobjectedit.h new file mode 100644 index 00000000..3da2da6a --- /dev/null +++ b/kpovmodeler/pmsolidobjectedit.h @@ -0,0 +1,63 @@ +//-*-C++-*- +/* +************************************************************************** + description + -------------------- + copyright : (C) 2000-2001 by Andreas Zehender + email : [email protected] +************************************************************************** + +************************************************************************** +* * +* 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 PMSOLIDOBJECTEDIT_H +#define PMSOLIDOBJECTEDIT_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include "pmgraphicalobjectedit.h" + +class PMSolidObject; +class QCheckBox; + +/** + * Dialog edit class for @ref PMSolidObject. + */ +class PMSolidObjectEdit : public PMGraphicalObjectEdit +{ + Q_OBJECT + typedef PMGraphicalObjectEdit Base; +public: + /** + * Creates a PMSolidObjectEdit with parent and name + */ + PMSolidObjectEdit( QWidget* parent, const char* name = 0 ); + + /** */ + virtual void displayObject( PMObject* o ); + + /** */ + virtual bool isDataValid( ); +protected: + /** */ + virtual void createBottomWidgets( ); + /** */ + virtual void saveContents( ); + +private: + PMSolidObject* m_pDisplayedObject; + QCheckBox* m_pHollowButton; + QCheckBox* m_pInverseButton; +}; + + +#endif |