Horizon
manage_ports.hpp
1 #pragma once
2 #include <gtkmm.h>
3 
4 namespace horizon {
5 
6 
7 class ManagePortsDialog : public Gtk::Dialog {
8 public:
9  ManagePortsDialog(Gtk::Window *parent, class Block &b);
10  bool valid = false;
11 
12 private:
13  Block &block;
14  Gtk::ListBox *listbox = nullptr;
15  void handle_add_port();
16 
17  void ok_clicked();
18 };
19 } // namespace horizon
A block is one level of hierarchy in the netlist.
Definition: block.hpp:29
Definition: manage_ports.hpp:7