5 #include "common/common.hpp"
6 #include "util/uuid.hpp"
7 #include "pool/unit.hpp"
14 MapPinDialog(Gtk::Window *parent,
const std::vector<std::pair<const Pin *, bool>> &pins);
16 bool selection_valid =
false;
19 class ListColumns :
public Gtk::TreeModelColumnRecord {
23 Gtk::TreeModelColumnRecord::add(name);
24 Gtk::TreeModelColumnRecord::add(uuid);
26 Gtk::TreeModelColumn<Glib::ustring> name;
27 Gtk::TreeModelColumn<UUID> uuid;
29 ListColumns list_columns;
32 Glib::RefPtr<Gtk::ListStore> store;
35 void row_activated(
const Gtk::TreeModel::Path &path, Gtk::TreeViewColumn *column);
Definition: map_pin.hpp:12
This class encapsulates a UUID and allows it to be uses as a value type.
Definition: uuid.hpp:16