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);
11 
12 
13 private:
14  class Schematic *sch;
15 
16 
17  void ok_clicked();
18 };
19 } // namespace horizon
A Schematic is the visual representation of a Block.
Definition: schematic.hpp:26
Definition: block.cpp:7
Definition: schematic_properties.hpp:8