summaryrefslogtreecommitdiffstats
path: root/kmrml/kmrml/propertywidgets.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmrml/kmrml/propertywidgets.h')
-rw-r--r--kmrml/kmrml/propertywidgets.h113
1 files changed, 0 insertions, 113 deletions
diff --git a/kmrml/kmrml/propertywidgets.h b/kmrml/kmrml/propertywidgets.h
deleted file mode 100644
index bfb207a0..00000000
--- a/kmrml/kmrml/propertywidgets.h
+++ /dev/null
@@ -1,113 +0,0 @@
-/* This file is part of the KDE project
- Copyright (C) 2002 Carsten Pfeiffer <pfeiffer@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, version 2.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; see the file COPYING. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef PROPERTYWIDGETS_H
-#define PROPERTYWIDGETS_H
-
-#include <tqhbox.h>
-
-#include "propertysheet.h"
-
-namespace KMrml
-{
- class IntegerWidget : public TQHBox
- {
- Q_OBJECT
-
-
- public:
- IntegerWidget( const PropertySheet& sheet,
- TQWidget *parent = parent, const char *name = 0L );
- ~IntegerWidget();
-
- int value() const;
-
- private:
-
- };
-
- class ComboWidget : public TQHBox
- {
- Q_OBJECT
-
-
- public:
- ComboWidget( const PropertySheet& sheet,
- TQWidget *parent = parent, const char *name = 0L );
- ~ComboWidget();
-
- TQString value() const;
-
- private:
-
- };
-
- class CheckBoxWidget : public TQHBox
- {
- Q_OBJECT
-
-
- public:
- CheckBoxWidget( const PropertySheet& sheet,
- TQWidget *parent = parent, const char *name = 0L );
- ~CheckBoxWidget();
-
- bool value();
-
- private:
-
-
- };
-
-
- class LineEditWidget : public TQHBox
- {
- Q_OBJECT
-
-
- public:
- LineEditWidget( const PropertySheet& sheet,
- TQWidget *parent = parent, const char *name = 0L );
- ~LineEditWidget();
-
- TQString value();
-
- private:
-
- };
-
- class ListBoxWidget : public TQHBox
- {
- Q_OBJECT
-
-
- public:
- ListBoxWidget( const PropertySheet& sheet,
- TQWidget *parent = parent, const char *name = 0L );
- ~ListBoxWidget();
-
- TQStringList values();
-
- private:
-
- };
-
-};
-
-
-#endif // PROPERTYWIDGETS_H