42 lines
713 B
C++
42 lines
713 B
C++
/*
|
||
* © Copyright 2014 – Urheberrechtshinweis
|
||
* Alle Rechte vorbehalten / All Rights Reserved
|
||
*
|
||
* Programmcode ist urheberrechtlich geschuetzt.
|
||
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
|
||
* Keine Verwendung ohne explizite Genehmigung.
|
||
* (vgl. § 106 ff UrhG / § 97 UrhG)
|
||
*/
|
||
|
||
#ifndef ACTIONWIDGET_H
|
||
#define ACTIONWIDGET_H
|
||
|
||
#include "fixC11.h"
|
||
|
||
#include <QWidget>
|
||
|
||
class ActionWidget : public QWidget {
|
||
|
||
Q_OBJECT
|
||
|
||
public:
|
||
|
||
explicit ActionWidget(QWidget *parent = 0);
|
||
|
||
signals:
|
||
|
||
/** request: load a map */
|
||
void onLoad();
|
||
|
||
/** request: save a map */
|
||
void onSave();
|
||
|
||
/** request: new map */
|
||
void onNew();
|
||
|
||
public slots:
|
||
|
||
};
|
||
|
||
#endif // ACTIONWIDGET_H
|