You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
356 B
C
21 lines
356 B
C
8 months ago
|
#ifndef GLOBAL_H
|
||
|
#define GLOBAL_H
|
||
|
|
||
|
#include <QColor>
|
||
|
|
||
|
|
||
|
/*******************系统颜色***************************************/
|
||
|
extern QColor g_themeColor;
|
||
|
extern QString g_PushBtnStyle;
|
||
|
extern QString g_PushBtnSelStyle;
|
||
|
/*******************系统颜色***************************************/
|
||
|
|
||
|
|
||
|
class global
|
||
|
{
|
||
|
public:
|
||
|
global();
|
||
|
};
|
||
|
|
||
|
#endif // GLOBAL_H
|