Horizon
preferences_window_pool.hpp
1 #pragma once
2 #include <gtkmm.h>
3 
4 namespace horizon {
5 class PoolPreferencesEditor : public Gtk::Box {
6 public:
7  PoolPreferencesEditor(BaseObjectType *cobject, const Glib::RefPtr<Gtk::Builder> &x);
8  static PoolPreferencesEditor *create();
9 
10 
11 private:
12  class PoolManager &mgr;
13  Gtk::ListBox *listbox = nullptr;
14  Gtk::Button *button_add_pool = nullptr;
15  Glib::RefPtr<Gtk::SizeGroup> size_group;
16  void update();
17 };
18 
19 } // namespace horizon
Definition: pool_manager.hpp:21
Definition: block.cpp:9
Definition: preferences_window_pool.hpp:5