mirror of
https://github.com/YACReader/yacreader
synced 2026-04-12 15:49:53 -04:00
Use json file based themes instead of code to create them (theme editor + theme mode settings)
This commit is contained in:
14
common/themes/theme_meta.h
Normal file
14
common/themes/theme_meta.h
Normal file
@ -0,0 +1,14 @@
|
||||
#ifndef THEME_META_H
|
||||
#define THEME_META_H
|
||||
|
||||
#include "theme_variant.h"
|
||||
|
||||
#include <QString>
|
||||
|
||||
struct ThemeMeta {
|
||||
QString id;
|
||||
QString displayName;
|
||||
ThemeVariant variant;
|
||||
};
|
||||
|
||||
#endif // THEME_META_H
|
||||
Reference in New Issue
Block a user