first commit
This commit is contained in:
30
project/fm_viewer/ui/rm_widget_checkbox.h
Normal file
30
project/fm_viewer/ui/rm_widget_checkbox.h
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef RM_WIDGET_CHECKBOX_H
|
||||
#define RM_WIDGET_CHECKBOX_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QWidget>
|
||||
#include <QCheckBox>
|
||||
#include <QDebug>
|
||||
#include <QKeyEvent>
|
||||
|
||||
#if !(SETUP_ONLY_BUILD)
|
||||
class RMVideoItem;
|
||||
#endif
|
||||
|
||||
class RMWidgetCheckBox : public QCheckBox
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
// 자동해제 확인
|
||||
explicit RMWidgetCheckBox(QWidget *parent = 0) : QCheckBox(parent)
|
||||
{
|
||||
setObjectName("normal");
|
||||
}
|
||||
#if !(SETUP_ONLY_BUILD)
|
||||
RMVideoItem* item;
|
||||
void keyPressEvent(QKeyEvent *event);
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
#endif // RM_WIDGET_CHECKBOX_H
|
||||
Reference in New Issue
Block a user