Loading...
Searching...
No Matches
ExplorerView.hpp
1#pragma once
2#include <score/plugins/ProjectSettings/ProjectSettingsView.hpp>
3#include <score/plugins/settingsdelegate/SettingsDelegateView.hpp>
4
5#include <verdigris>
6class QCheckBox;
7namespace score
8{
9class FormWidget;
10}
11namespace Explorer::Settings
12{
14{
15 W_OBJECT(View)
16public:
17 View();
18
19 void setLocalTree(bool);
20
21public:
22 void localTreeChanged(bool arg_1) W_SIGNAL(localTreeChanged, arg_1);
23
24 SETTINGS_UI_COMBOBOX_HPP(LogLevel)
25
26private:
27 QWidget* getWidget() override;
28 score::FormWidget* m_widg{};
29
30 QCheckBox* m_cb{};
31};
32}
33
34namespace Explorer::ProjectSettings
35{
36class View : public score::ProjectSettingsView
37{
38 W_OBJECT(View)
39public:
40 View();
41
42 SETTINGS_UI_DOUBLE_SPINBOX_HPP(MidiImportRatio)
43 SETTINGS_UI_TOGGLE_HPP(ReconnectOnStart)
44 SETTINGS_UI_TOGGLE_HPP(RefreshOnStart)
45
46private:
47 QWidget* getWidget() override;
48 score::FormWidget* m_widg{};
49};
50}
Definition ExplorerView.hpp:14
Definition FormWidget.hpp:11
Definition SettingsDelegateView.hpp:18
Base toolkit upon which the software is built.
Definition Application.cpp:90