first commit
This commit is contained in:
25
project/fm_viewer/ui/rm_widget_base.h
Normal file
25
project/fm_viewer/ui/rm_widget_base.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#ifndef RM_WIDGET_BASE_H
|
||||
#define RM_WIDGET_BASE_H
|
||||
|
||||
// EVENT + NO STYLE WIDGET
|
||||
|
||||
#include "../rm_include.h"
|
||||
class QPaintEvent;
|
||||
|
||||
class RMWidgetBase : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit RMWidgetBase(QWidget *parent = nullptr,bool bEvent = false);
|
||||
protected:
|
||||
|
||||
//#if (DESIGN_LAYOUT_MODE)
|
||||
void paintEvent(QPaintEvent *pe);
|
||||
//#endif
|
||||
|
||||
signals:
|
||||
public slots:
|
||||
virtual void onAppEvent(RMApp::Event event, int param);
|
||||
};
|
||||
|
||||
#endif // RM_WIDGET_BASE_H
|
||||
Reference in New Issue
Block a user