diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-01-18 00:58:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-01-18 00:58:51 +0100 |
| commit | 5b10ee366f819c05d69ea8e78c8348eca99721b5 (patch) | |
| tree | 7eae306a3a20ff2d3760e18a0e4b83b62b0a4f01 /src/wx/kdm_output_panel.h | |
| parent | e0eecce56d975d9819f902cbb51c886b16e8ebf7 (diff) | |
Allow specification of KDM annotation text (#296).
Diffstat (limited to 'src/wx/kdm_output_panel.h')
| -rw-r--r-- | src/wx/kdm_output_panel.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wx/kdm_output_panel.h b/src/wx/kdm_output_panel.h index db898b44b..3b82321c6 100644 --- a/src/wx/kdm_output_panel.h +++ b/src/wx/kdm_output_panel.h @@ -65,6 +65,9 @@ public: bool method_selected() const; + void set_annotation_text(std::string text); + std::string annotation_text() const; + boost::signals2::signal<void ()> MethodChanged; private: @@ -75,6 +78,7 @@ private: void add_email_addresses_clicked (); KDMChoice* _type; + wxTextCtrl* _annotation_text; NameFormatEditor* _container_name_format; NameFormatEditor* _filename_format; CheckBox* _write_to; |
