3 #include "util/changeable.hpp"
8 class ProjectMetaEditor :
public Gtk::Grid,
public Changeable {
10 ProjectMetaEditor(std::map<std::string, std::string> &v);
15 Gtk::Entry *add_editor(
const std::string &title,
const std::string &descr,
const std::string &key);
16 class CustomFieldEditor *add_custom_editor(
const std::string &key);
17 std::map<std::string, Gtk::Entry *> entries;
18 std::map<std::string, std::string> &values;
20 Gtk::Box *custom_box =
nullptr;