summaryrefslogtreecommitdiffstats
path: root/src/dialogs/selectauthorsdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dialogs/selectauthorsdialog.h')
-rw-r--r--src/dialogs/selectauthorsdialog.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/dialogs/selectauthorsdialog.h b/src/dialogs/selectauthorsdialog.h
new file mode 100644
index 0000000..6304e08
--- /dev/null
+++ b/src/dialogs/selectauthorsdialog.h
@@ -0,0 +1,66 @@
+/***************************************************************************
+* Copyright (C) 2003 by *
+* Unai Garro ([email protected]) *
+* Cyril Bosselut ([email protected]) *
+* Jason Kivlighn ([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 SELECTAUTHORSDIALOG_H
+#define SELECTAUTHORSDIALOG_H
+
+#include <tqlayout.h>
+#include <tqpushbutton.h>
+
+#include <kdialogbase.h>
+#include <kiconloader.h>
+#include <tdelistview.h>
+#include <kcombobox.h>
+
+#include "datablocks/elementlist.h"
+
+class RecipeDB;
+
+/**
+@author Unai Garro
+*/
+class SelectAuthorsDialog: public KDialogBase
+{
+
+ TQ_OBJECT
+
+public:
+
+ SelectAuthorsDialog( TQWidget *parent, const ElementList &currentAuthors, RecipeDB *db );
+ ~SelectAuthorsDialog();
+ void getSelectedAuthors( ElementList *newAuthors );
+
+private:
+
+ //Widgets
+ KComboBox *authorsCombo;
+ TDEListView *authorListView;
+ TQPushButton *okButton;
+ TQPushButton *cancelButton;
+ TQPushButton *addAuthorButton;
+ TQPushButton *removeAuthorButton;
+ TDEIconLoader *il;
+
+ //Variables
+ ElementList authorList;
+ RecipeDB *database;
+
+ //Private methods
+ void loadAuthors( const ElementList &authorList );
+ void createNewAuthorIfNecessary( void );
+ void reloadAuthorsCombo( void );
+private slots:
+ void addAuthor( void );
+ void removeAuthor( void );
+};
+
+#endif