Ajout d'un bouton permettant d'actualiser le panel d'element

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@71 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavierqet
2007-02-26 22:42:46 +00:00
parent 6d5927cbe7
commit 5f437a5bd5
8 changed files with 67 additions and 11 deletions

21
elementspanelwidget.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef ELEMENTS_PANEL_WIDGET_H
#define ELEMENTS_PANEL_WIDGET_H
#include <QtGui>
#include "elementspanel.h"
class ElementsPanelWidget : public QWidget {
Q_OBJECT
// constructeurs
public:
ElementsPanelWidget(QWidget * = 0);
// attributs
private:
ElementsPanel *elements_panel;
QToolBar *toolbar;
// methodes
public:
inline ElementsPanel &elementsPanel() const { return(*elements_panel); }
};
#endif