summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmdetailobjectedit.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmdetailobjectedit.h')
-rw-r--r--kpovmodeler/pmdetailobjectedit.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/kpovmodeler/pmdetailobjectedit.h b/kpovmodeler/pmdetailobjectedit.h
new file mode 100644
index 00000000..7a585034
--- /dev/null
+++ b/kpovmodeler/pmdetailobjectedit.h
@@ -0,0 +1,68 @@
+//-*-C++-*-
+/*
+**************************************************************************
+ description
+ --------------------
+ copyright : (C) 2004 by Leon Pennington
+ email : leon@leonscape.co.uk
+**************************************************************************
+
+**************************************************************************
+* *
+* 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 PMDETAILOBJECTEDIT_H
+#define PMDETAILOBJECTEDIT_H
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include "pmnamedobjectedit.h"
+
+class PMDetailObject;
+class QCheckBox;
+class QLabel;
+class QComboBox;
+
+/**
+ * Dialog edit class for @ref PMNamedObject.
+ */
+class PMDetailObjectEdit : public PMNamedObjectEdit
+{
+ Q_OBJECT
+ typedef PMNamedObjectEdit Base;
+public:
+ /**
+ * Creates a PMNamedObjectEdit with parent and name
+ */
+ PMDetailObjectEdit( QWidget* parent, const char* name = 0 );
+
+ /** */
+ virtual void displayObject( PMObject* o );
+
+ /** */
+ virtual bool isDataValid( );
+
+protected:
+ /** */
+ virtual void createTopWidgets( );
+ /** */
+ virtual void saveContents( );
+
+private slots:
+ void slotGlobalDetailClicked( );
+
+private:
+ PMDetailObject* m_pDisplayedObject;
+ QCheckBox* m_pGlobalDetail;
+ QLabel* m_pLocalDetailLevelLabel;
+ QComboBox* m_pLocalDetailLevel;
+};
+
+
+#endif