Horizon
preferences_window.hpp
1 #pragma once
2 #include <array>
3 #include <gtkmm.h>
4 #include <set>
5 namespace horizon {
6 
7 class PreferencesWindow : public Gtk::Window {
8 public:
10  void show_page(const std::string &pg);
11 
12 private:
13  class Preferences &preferences;
14  Gtk::Stack *stack = nullptr;
15 };
16 } // namespace horizon
Definition: preferences_window.hpp:7
Definition: preferences.hpp:136