Files
EJM_Display/PublicFunctions/BitMaps.h

64 lines
1.9 KiB
C
Raw Permalink Normal View History

2025-09-15 22:28:43 +08:00
#ifndef BITMAPS_H
#define BITMAPS_H
#include <QObject>
class BitMaps : public QObject
{
Q_OBJECT
public:
explicit BitMaps(QObject *parent = nullptr);
2025-10-11 18:05:29 +08:00
/**
* @brief ListChoice_2Mode List里面 b1和b2的状态,
* b1 !b2 1
* !b1 b2 2
* 0 (inNull为真,)
* @param List
* @param b1 1,
* @param b2 2
* @param isNull b1 b2 ,
* @return
*/
QString ListChoice_2Mode(const QStringList List, const bool b1,const bool b2,const bool isNull = false);
/**
* @brief ListChoice_2Mode List里面 b1和b2的状态,
* b1 !b2 !b3 1
* !b1 b2 !b3 2
* !b1 !b2 b3 3
* 0 (inNull为真,)
* @param List
* @param b1 1,
* @param b2 2
* @param b3 3
* @param isNull b1 b2 b3 ,
* @return
*/
QString ListChoice_3Mode(const QStringList List, const bool b1,const bool b2,const bool b3,const bool isNull = false);
/**
* @brief RemUI_SwitchStyles ,
*/
QStringList RemUI_SwitchStyles;
2025-09-15 22:28:43 +08:00
/**
2025-10-11 18:05:29 +08:00
* @brief RemUI_SwitchStyles ,
2025-09-15 22:28:43 +08:00
*/
2025-10-11 18:05:29 +08:00
QStringList RemUI_PutterStyles;
2025-09-15 22:28:43 +08:00
/**
2025-10-11 18:05:29 +08:00
* @brief RemUI_SwitchStyles ,
2025-09-15 22:28:43 +08:00
*/
2025-10-11 18:05:29 +08:00
QStringList RemUI_ModeStyles;
2025-10-10 23:10:21 +08:00
/**
2025-10-11 18:05:29 +08:00
* @brief RemUI_SwitchStyles ,
2025-10-10 23:10:21 +08:00
*/
2025-10-11 18:05:29 +08:00
QStringList RemUI_SpeedStyles;
2025-09-15 22:28:43 +08:00
signals:
};
#endif // BITMAPS_H