summaryrefslogtreecommitdiffstats
path: root/krecipes/src/dialogs/editratingdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/dialogs/editratingdialog.h')
-rw-r--r--krecipes/src/dialogs/editratingdialog.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/krecipes/src/dialogs/editratingdialog.h b/krecipes/src/dialogs/editratingdialog.h
new file mode 100644
index 0000000..bf981c8
--- /dev/null
+++ b/krecipes/src/dialogs/editratingdialog.h
@@ -0,0 +1,77 @@
+/***************************************************************************
+* Copyright (C) 2005 by Jason Kivlighn *
+* jkivlighn@gmail.com *
+* *
+* 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 EDITRATINGDIALOG_H
+#define EDITRATINGDIALOG_H
+
+#include <kdialogbase.h>
+
+class QVBoxLayout;
+class QHBoxLayout;
+class QGridLayout;
+class QSpacerItem;
+class QLabel;
+class QComboBox;
+class KDoubleSpinBox;
+class QPushButton;
+class KListView;
+class QListViewItem;
+class QTextEdit;
+class QLineEdit;
+class RatingWidget;
+
+class Rating;
+class RatingCriteria;
+class ElementList;
+class RatingCriteriaListView;
+
+class EditRatingDialog : public KDialogBase
+{
+Q_OBJECT
+
+public:
+ EditRatingDialog( const ElementList &criteriaList, const Rating &, QWidget* parent = 0, const char* name = 0 );
+ EditRatingDialog( const ElementList &criteriaList, QWidget* parent = 0, const char* name = 0 );
+ ~EditRatingDialog();
+
+ QLabel* criteriaLabel;
+ QComboBox* criteriaComboBox;
+ QLabel* starsLabel;
+ RatingWidget *starsWidget;
+ QPushButton* addButton;
+ QPushButton* removeButton;
+ RatingCriteriaListView* criteriaListView;
+ QLabel* commentsLabel;
+ QTextEdit* commentsEdit;
+ QLabel* raterLabel;
+ QLineEdit* raterEdit;
+
+ Rating rating() const;
+
+protected:
+ QHBox* layout8;
+ QHBox* layout2;
+
+protected slots:
+ virtual void languageChange();
+ void slotAddRatingCriteria();
+ void slotRemoveRatingCriteria();
+ void itemRenamed(QListViewItem* it, const QString &, int c);
+
+private:
+ void init(const ElementList &criteriaList);
+
+ void loadRating( const Rating & );
+ void addRatingCriteria( const RatingCriteria &rc );
+
+ int ratingID;
+};
+
+#endif // EDITRATINGDIALOG_H