Horizon
annotate.hpp
1 #pragma once
2 #include <gtkmm.h>
3 namespace horizon {
4 
5 
6 class AnnotateDialog : public Gtk::Dialog {
7 public:
8  AnnotateDialog(Gtk::Window *parent, class Schematic &s);
9 
10 private:
11  class Schematic &sch;
12  Gtk::Switch *w_fill_gaps = nullptr;
13  Gtk::Switch *w_keep = nullptr;
14  Gtk::Switch *w_ignore_unknown = nullptr;
15  Gtk::ComboBoxText *w_order = nullptr;
16  Gtk::ComboBoxText *w_mode = nullptr;
17 
18  void ok_clicked();
19 };
20 } // namespace horizon
Definition: annotate.hpp:6
A Schematic is the visual representation of a Block.
Definition: schematic.hpp:30