mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-14 20:33:05 +02:00
22 lines
434 B
C
22 lines
434 B
C
|
#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
|