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