DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
SchemaStyle.hpp
Go to the documentation of this file.
1#ifndef SCHEMASTYLE_H
2#define SCHEMASTYLE_H
3
4#include <QColor>
5#include <QPalette>
6#include <QString>
7
8namespace dbse {
9
10 struct SchemaStyle {
11 static void load();
12 [[nodiscard]] static QColor get_color(const QString& item, const QString& group);
13 static QColor set_color(const QString& item, const QString& group);
14 [[nodiscard]] static QFont get_font(const QString& group);
15 static QFont set_font(const QString& group);
16
17 };
18
19} // namespace dbse
20
21#endif // SCHEMASTYLE_H
Including QT Headers.
static QColor set_color(const QString &item, const QString &group)
static QColor get_color(const QString &item, const QString &group)
static QFont get_font(const QString &group)
static QFont set_font(const QString &group)
static void load()