initial commit

This commit is contained in:
kazu
2016-05-24 16:55:19 +02:00
commit 13a89df8d6
77 changed files with 7454 additions and 0 deletions

53
params/ToolBoxWidget.h Normal file
View File

@@ -0,0 +1,53 @@
#ifndef TOOLBOX_H
#define TOOLBOX_H
#include <QWidget>
class MapLayer;
class QPushButton;
class MapView2D;
class ToolBoxWidget : public QWidget {
Q_OBJECT
public:
explicit ToolBoxWidget(MapView2D* view, QWidget *parent = 0);
signals:
public slots:
/** set the currently selected map layer */
void setSelectedLayer(MapLayer* ml);
private:
MapView2D* view;
MapLayer* curLayer;
QPushButton* btnGround;
QPushButton* btnWall;
QPushButton* btnPillar;
QPushButton* btnWifi;
QPushButton* btnBeacon;
QPushButton* btnImage;
private slots:
void onNewGround();
void onNewWall();
void onNewPillar();
void onNewAccessPoint();
void onNewBeacon();
void onNewImage();
};
#endif // TOOLBOX_H