vnote/src/widgets/propertydefs.h
2020-12-31 19:53:28 +08:00

28 lines
548 B
C++

#ifndef PROPERTYDEFS_H
#define PROPERTYDEFS_H
namespace vnotex
{
// Define properties used for QSS.
class PropertyDefs
{
public:
PropertyDefs() = delete;
static const char *s_actionToolButton;
static const char *s_toolButtonWithoutMenuIndicator;
static const char *s_dangerButton;
static const char *s_dialogCentralWidget;
static const char *s_viewSplitCornerWidget;
// Values: info/warning/error.
static const char *s_state;
};
}
#endif // PROPERTYDEFS_H