first commit

This commit is contained in:
2026-02-21 17:11:31 +09:00
commit 18b4338361
4001 changed files with 365464 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
#ifndef RM_BUTTON_H
#define RM_BUTTON_H
#include <QPushButton>
#define DEBUG_BUTTON_EVENT 0
class QLayout;
class RMButton : public QPushButton
{
Q_OBJECT
public:
RMButton(QWidget *parent = 0);
~RMButton();
#if (LIVE_LANGUAGE2)
static RMButton* create2(QWidget* parent, QLayout* layout, const char* name, const char* toolTip, QSize size);
#else // LIVE_LANGUAGE2
static RMButton* create(QWidget* parent, QLayout* layout, const char* name, QString toolTip, QSize size);
#endif // LIVE_LANGUAGE2
void setStyleStatus(const char* status,bool toggle);
void updateObject(QString objectName);
#if (DEBUG_BUTTON_EVENT)
bool bCheckEvent;
virtual bool event(QEvent *e);
#endif
};
#endif // RM_BUTTON_H