Horizon
rule_editor_thermals.hpp
1 #pragma once
2 #include "rule_editor.hpp"
3 
4 namespace horizon {
5 class RuleEditorThermals : public RuleEditor {
6  using RuleEditor::RuleEditor;
7 
8 public:
9  void populate() override;
10 
11 private:
12  class RuleThermals *rule2;
13  std::set<Gtk::Widget *> widgets_thermal_only;
14  void update_thermal();
15 
16  class MatchPadsEditor *match_pads_editor = nullptr;
17 
18  void update_pads();
19 };
20 } // namespace horizon
Definition: rule_editor_thermals.cpp:19
Definition: rule_editor_thermals.hpp:5
Definition: rule_editor.hpp:9
Definition: rule_thermals.hpp:10