git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@77 bfdf4180-ca20-0410-9c96-a3a8aa849046

This commit is contained in:
xavierqet
2007-04-04 02:13:14 +00:00
parent 1ddd93826c
commit b0ff172ee7
11 changed files with 410 additions and 8 deletions

30
elementscategorieslist.h Normal file
View File

@@ -0,0 +1,30 @@
#ifndef ELEMENTS_CATEGORIES_LIST_H
#define ELEMENTS_CATEGORIES_LIST_H
#include <QtGui>
/**
Cette classe fournit une liste graphique des categories d'elements de
l'utilisateur.
*/
class ElementsCategoriesList : public QTreeWidget {
Q_OBJECT
// Constructeur, destructeur
public:
ElementsCategoriesList(QWidget * = 0);
~ElementsCategoriesList();
// attributs
// methodes
private:
void addDir(QTreeWidgetItem *, QString, QString = QString());
QString categoryName(QDir &);
public:
QString selectedCategoryPath();
QString selectedCategoryName();
public slots:
void reload();
};
#endif