diff options
Diffstat (limited to 'src/kile/kilelistselector.h')
-rw-r--r-- | src/kile/kilelistselector.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/kile/kilelistselector.h b/src/kile/kilelistselector.h new file mode 100644 index 0000000..cf96930 --- /dev/null +++ b/src/kile/kilelistselector.h @@ -0,0 +1,59 @@ +/*************************************************************************** + begin : Fri Aug 15 2003 + copyright : (C) 2003 by Jeroen Wijnhout + (C) 2007 by Holger Danielsson + 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 KILELISTSELECTOR_H +#define KILELISTSELECTOR_H + +#include <kdialogbase.h> +#include <klistview.h> + +class KListView; +class QStringList; + +class KileListSelectorBase : public KDialogBase +{ +public: + KileListSelectorBase(const QStringList &list, const QString &caption, const QString &select, QWidget *parent=0, const char *name=0); + ~KileListSelectorBase() {} + + int currentItem(); + +protected: + KListView *m_listview; + void insertStringList(const QStringList &list); +}; + +class KileListSelector : public KileListSelectorBase +{ +public: + KileListSelector(const QStringList &list, const QString &caption, const QString &select, QWidget *parent=0, const char *name=0); + ~KileListSelector() {} +}; + +class KileListSelectorMultiple : public KileListSelectorBase +{ +public: + KileListSelectorMultiple(const QStringList & list, const QString &caption, const QString &select, QWidget *parent=0, const char *name=0); + ~KileListSelectorMultiple() {} + + const QStringList &selected(); + +private: + QStringList m_selectedfiles; +}; + + +#endif |