diff options
| author | Martin Owens <doctormo@gmail.com> | 2017-07-02 19:35:26 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2017-07-02 19:35:26 +0000 |
| commit | a65d20c533225d5f80e8649cc9d9f84a0c283796 (patch) | |
| tree | 868561bfd63e93543466f17b2d73e4c2050b10d1 /src/ui | |
| parent | Fix windows builds with filename in symbols dialog (diff) | |
| parent | Skip empty template information (diff) | |
| download | inkscape-a65d20c533225d5f80e8649cc9d9f84a0c283796.tar.gz inkscape-a65d20c533225d5f80e8649cc9d9f84a0c283796.zip | |
Merge branch 'ccrb/inkscape-save-document-as-template'
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/ui/dialog/save-template-dialog.cpp | 91 | ||||
| -rw-r--r-- | src/ui/dialog/save-template-dialog.h | 51 |
3 files changed, 144 insertions, 0 deletions
diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt index b6b88e50b..789378e0c 100644 --- a/src/ui/CMakeLists.txt +++ b/src/ui/CMakeLists.txt @@ -115,6 +115,7 @@ set(ui_SRC dialog/transformation.cpp dialog/undo-history.cpp dialog/xml-tree.cpp + dialog/save-template-dialog.cpp widget/addtoicon.cpp widget/anchor-selector.cpp @@ -262,6 +263,7 @@ set(ui_SRC dialog/transformation.h dialog/undo-history.h dialog/xml-tree.h + dialog/save-template-dialog.h tool/commit-events.h tool/control-point-selection.h diff --git a/src/ui/dialog/save-template-dialog.cpp b/src/ui/dialog/save-template-dialog.cpp new file mode 100644 index 000000000..5b7540039 --- /dev/null +++ b/src/ui/dialog/save-template-dialog.cpp @@ -0,0 +1,91 @@ +#if HAVE_CONFIG_H +#include "config.h" +#endif + +#include "save-template-dialog.h" +#include "file.h" + +#include <glibmm/i18n.h> + +#include <iostream> + +namespace Inkscape { +namespace UI { +namespace Dialog { + +SaveTemplate::SaveTemplate() : + Gtk::Dialog(_("Save Document as Template")), + name_label(_("Name: "), Gtk::ALIGN_START), + author_label(_("Author: "), Gtk::ALIGN_START), + description_label(_("Description: "), Gtk::ALIGN_START), + keywords_label(_("Keywords: "), Gtk::ALIGN_START), + is_default_template("Set as default template") +{ + resize(400, 200); + + name_text.set_hexpand(true); + + grid.attach(name_label, 0, 0, 1, 1); + grid.attach(name_text, 1, 0, 1, 1); + + grid.attach(author_label, 0, 1, 1, 1); + grid.attach(author_text, 1, 1, 1, 1); + + grid.attach(description_label, 0, 2, 1, 1); + grid.attach(description_text, 1, 2, 1, 1); + + grid.attach(keywords_label, 0, 3, 1, 1); + grid.attach(keywords_text, 1, 3, 1, 1); + + auto content_area = get_content_area(); + + content_area->set_spacing(5); + + content_area->add(grid); + content_area->add(is_default_template); + + name_text.signal_changed().connect( sigc::mem_fun(*this, + &SaveTemplate::on_name_changed) ); + + add_button("Cancel", Gtk::RESPONSE_CANCEL); + add_button("Save", Gtk::RESPONSE_OK); + + set_response_sensitive(Gtk::RESPONSE_OK, false); + set_default_response(Gtk::RESPONSE_CANCEL); + + show_all(); +} + +void SaveTemplate::on_name_changed() { + + if (name_text.get_text_length() == 0) { + + set_response_sensitive(Gtk::RESPONSE_OK, false); + } else { + + set_response_sensitive(Gtk::RESPONSE_OK, true); + } +} + +void SaveTemplate::save_template(Gtk::Window &parentWindow) { + + sp_file_save_template(parentWindow, name_text.get_text(), + author_text.get_text(), description_text.get_text(), + keywords_text.get_text(), is_default_template.get_active()); +} + +void SaveTemplate::save_document_as_template(Gtk::Window &parentWindow) { + + SaveTemplate dialog; + + auto result = dialog.run(); + + if (result == Gtk::RESPONSE_OK){ + + dialog.save_template(parentWindow); + } +} + +} +} +} diff --git a/src/ui/dialog/save-template-dialog.h b/src/ui/dialog/save-template-dialog.h new file mode 100644 index 000000000..9f38c499d --- /dev/null +++ b/src/ui/dialog/save-template-dialog.h @@ -0,0 +1,51 @@ +#ifndef INKSCAPE_SEEN_UI_DIALOG_SAVE_TEMPLATE_H +#define INKSCAPE_SEEN_UI_DIALOG_SAVE_TEMPLATE_H + +#include <gtkmm/dialog.h> +#include <gtkmm/entry.h> +#include <gtkmm/box.h> +#include <gtkmm/grid.h> +#include <gtkmm/label.h> +#include <gtkmm/checkbutton.h> + +namespace Inkscape { +namespace UI { +namespace Dialog { + +class SaveTemplate : public Gtk::Dialog +{ + +public: + + static void save_document_as_template(Gtk::Window &parentWindow); + +protected: + + void on_name_changed(); + +private: + + Gtk::Grid grid; + + Gtk::Label name_label; + Gtk::Entry name_text; + + Gtk::Label author_label; + Gtk::Entry author_text; + + Gtk::Label description_label; + Gtk::Entry description_text; + + Gtk::Label keywords_label; + Gtk::Entry keywords_text; + + Gtk::CheckButton is_default_template; + + SaveTemplate(); + void save_template(Gtk::Window &parentWindow); + +}; +} +} +} +#endif |
