DiagramDesigner/include/graphicElementsPanel.h

32 lines
538 B
C++

#ifndef GRAPHICELEMENTSPANEL_H
#define GRAPHICELEMENTSPANEL_H
#include <QWidget>
//#include "global.h"
#include "common/core_model/types.h"
QT_BEGIN_NAMESPACE
namespace Ui { class graphicElementsPanel; }
QT_END_NAMESPACE
class GraphicElementsPanel : public QWidget
{
Q_OBJECT
public:
GraphicElementsPanel(QWidget *parent = nullptr);
~GraphicElementsPanel();
signals:
void addGraphicsItem(GraphicsItemType&);
public slots:
void onBtnClicked_GraphicsItem();
private:
Ui::graphicElementsPanel *ui;
};
#endif