diff options
Diffstat (limited to 'kpovmodeler/pmcommentedit.h')
-rw-r--r-- | kpovmodeler/pmcommentedit.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/kpovmodeler/pmcommentedit.h b/kpovmodeler/pmcommentedit.h new file mode 100644 index 00000000..b3dc1d25 --- /dev/null +++ b/kpovmodeler/pmcommentedit.h @@ -0,0 +1,62 @@ +//-*-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 PMCOMMENTEDIT_H +#define PMCOMMENTEDIT_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include "pmdialogeditbase.h" + +class PMComment; +class QMultiLineEdit; + +/** + * Dialog edit class for @ref PMComment. + */ +class PMCommentEdit : public PMDialogEditBase +{ + Q_OBJECT + typedef PMDialogEditBase Base; +public: + /** + * Creates a PMCommentEdit with parent and name + */ + PMCommentEdit( QWidget* parent, const char* name = 0 ); + + /** */ + virtual void displayObject( PMObject* o ); + + /** */ + virtual bool isDataValid( ); +protected: + /** */ + virtual void createTopWidgets( ); + /** */ + virtual void saveContents( ); + +private: + PMComment* m_pDisplayedObject; + QMultiLineEdit* m_pEdit; +}; + + +#endif |