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