Horizon
schematic_properties.hpp
1 #pragma once
2 #include <gtkmm.h>
3 #include <array>
4 #include <set>
5 namespace horizon {
6 
7 
8 class SchematicPropertiesDialog : public Gtk::Dialog {
9 public:
10  SchematicPropertiesDialog(Gtk::Window *parent, class Schematic *c, class Pool *pool);
11 
12 
13 private:
14  class Schematic *sch;
15 
16 
17  void ok_clicked();
18 };
19 } // namespace horizon
horizon::SchematicPropertiesDialog
Definition: schematic_properties.hpp:8
horizon::Schematic
A Schematic is the visual representation of a Block.
Definition: schematic.hpp:27
horizon::Pool
Stores objects (Unit, Entity, Symbol, Part, etc.) from the pool.
Definition: pool.hpp:21