chore: 格式化ElaWidgetTools代码
This commit is contained in:
@@ -11,23 +11,22 @@
|
||||
#define ElaThemeColor(themeMode, themeColor) eTheme->getThemeColor(themeMode, ElaThemeType::themeColor)
|
||||
class QPainter;
|
||||
class ElaThemePrivate;
|
||||
class ELA_EXPORT ElaTheme : public QObject
|
||||
{
|
||||
class ELA_EXPORT ElaTheme : public QObject {
|
||||
Q_OBJECT
|
||||
Q_Q_CREATE(ElaTheme)
|
||||
Q_SINGLETON_CREATE_H(ElaTheme)
|
||||
private:
|
||||
explicit ElaTheme(QObject* parent = nullptr);
|
||||
explicit ElaTheme(QObject *parent = nullptr);
|
||||
~ElaTheme();
|
||||
|
||||
public:
|
||||
void setThemeMode(ElaThemeType::ThemeMode themeMode);
|
||||
void setThemeMode(ElaThemeType::ThemeMode themeMode);
|
||||
ElaThemeType::ThemeMode getThemeMode() const;
|
||||
|
||||
void drawEffectShadow(QPainter* painter, QRect widgetRect, int shadowBorderWidth, int borderRadius);
|
||||
void drawEffectShadow(QPainter *painter, QRect widgetRect, int shadowBorderWidth, int borderRadius);
|
||||
|
||||
void setThemeColor(ElaThemeType::ThemeMode themeMode, ElaThemeType::ThemeColor themeColor, QColor newColor);
|
||||
const QColor& getThemeColor(ElaThemeType::ThemeMode themeMode, ElaThemeType::ThemeColor themeColor);
|
||||
void setThemeColor(ElaThemeType::ThemeMode themeMode, ElaThemeType::ThemeColor themeColor, QColor newColor);
|
||||
const QColor &getThemeColor(ElaThemeType::ThemeMode themeMode, ElaThemeType::ThemeColor themeColor);
|
||||
Q_SIGNALS:
|
||||
Q_SIGNAL void themeModeChanged(ElaThemeType::ThemeMode themeMode);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user