i2pd/qt/i2pd_qt/pagewithbackbutton.h

22 lines
327 B
C
Raw Normal View History

2017-08-03 01:18:21 +03:00
#ifndef PAGEWITHBACKBUTTON_H
#define PAGEWITHBACKBUTTON_H
#include <QWidget>
class PageWithBackButton : public QWidget
{
Q_OBJECT
public:
2017-08-20 05:22:30 +03:00
explicit PageWithBackButton(QWidget *parent, QWidget* child);
2017-08-03 01:18:21 +03:00
signals:
2017-08-20 05:22:30 +03:00
void backReleased();
private slots:
void backReleasedSlot();
2017-08-03 01:18:21 +03:00
};
2017-08-20 05:22:30 +03:00
#endif // PAGEWITHBACKBUTTON_H