Horizon
Loading...
Searching...
No Matches
generate_silkscreen_window.hpp
1#pragma once
2#include <gtkmm.h>
3#include <array>
4#include <set>
5#include "util/uuid.hpp"
6#include "tool_window.hpp"
7#include "widgets/spin_button_dim.hpp"
8#include "core/tools/tool_generate_silkscreen.hpp"
9
10namespace horizon {
12public:
13 GenerateSilkscreenWindow(Gtk::Window *parent, class ImpInterface *intf, class ToolSettings &stg);
14
15 void update();
16
17private:
18 void load_defaults();
19
21
22 SpinButtonDim *sp_silk = nullptr;
23 SpinButtonDim *sp_pad = nullptr;
24};
25} // namespace horizon
Definition generate_silkscreen_window.hpp:11
Definition imp_interface.hpp:12
Definition spin_button_dim.hpp:5
Definition tool_generate_silkscreen.hpp:18
Definition tool_pub.hpp:82
Definition tool_window.hpp:7