[1606] | 1 | #include "main_win.h" |
---|
[1635] | 2 | #include "guipixbufs.h" |
---|
[1442] | 3 | |
---|
[1606] | 4 | MainWin::MainWin(const std::string& title) : |
---|
| 5 | mapwin("Map Setup", mapstorage, gd_canvas), |
---|
[1614] | 6 | newmapwin("Creating new map", gd_canvas), gd_canvas(mapstorage, mapwin, (Gtk::Window *)this) |
---|
[1442] | 7 | { |
---|
| 8 | set_title (title); |
---|
| 9 | set_default_size(WIN_WIDTH,WIN_HEIGHT); |
---|
| 10 | add(vbox); |
---|
| 11 | |
---|
[1634] | 12 | |
---|
| 13 | // custom icons for the toolbar |
---|
| 14 | |
---|
| 15 | Glib::RefPtr<Gtk::IconFactory> p_icon_factory = Gtk::IconFactory::create(); |
---|
| 16 | |
---|
[1635] | 17 | Glib::RefPtr<Gdk::Pixbuf> p_move_pixbuf = Gdk::Pixbuf::create_from_inline( |
---|
| 18 | 2328, gui_icons_move); |
---|
| 19 | Glib::RefPtr<Gdk::Pixbuf> p_addnode_pixbuf = Gdk::Pixbuf::create_from_inline( |
---|
| 20 | 2328, gui_icons_addnode); |
---|
| 21 | Glib::RefPtr<Gdk::Pixbuf> p_addlink_pixbuf = Gdk::Pixbuf::create_from_inline( |
---|
| 22 | 2328, gui_icons_addlink); |
---|
| 23 | Glib::RefPtr<Gdk::Pixbuf> p_delete_pixbuf = Gdk::Pixbuf::create_from_inline( |
---|
| 24 | 2328, gui_icons_delete); |
---|
| 25 | Glib::RefPtr<Gdk::Pixbuf> p_editlink_pixbuf = Gdk::Pixbuf::create_from_inline( |
---|
| 26 | 2328, gui_icons_editlink); |
---|
| 27 | Glib::RefPtr<Gdk::Pixbuf> p_editnode_pixbuf = Gdk::Pixbuf::create_from_inline( |
---|
| 28 | 2328, gui_icons_editnode); |
---|
| 29 | Glib::RefPtr<Gdk::Pixbuf> p_newmap_pixbuf = Gdk::Pixbuf::create_from_inline( |
---|
| 30 | 2328, gui_icons_newmap); |
---|
[1634] | 31 | |
---|
| 32 | Gtk::IconSource move_icon_source; |
---|
[1635] | 33 | move_icon_source.set_pixbuf(p_move_pixbuf); |
---|
[1634] | 34 | Gtk::IconSet move_icon_set; |
---|
| 35 | move_icon_set.add_source(move_icon_source); |
---|
| 36 | p_icon_factory->add(Gtk::StockID("gd-move"), move_icon_set); |
---|
| 37 | |
---|
| 38 | Gtk::IconSource addnode_icon_source; |
---|
[1635] | 39 | addnode_icon_source.set_pixbuf(p_addnode_pixbuf); |
---|
[1634] | 40 | Gtk::IconSet addnode_icon_set; |
---|
| 41 | addnode_icon_set.add_source(addnode_icon_source); |
---|
| 42 | p_icon_factory->add(Gtk::StockID("gd-addnode"), addnode_icon_set); |
---|
| 43 | |
---|
| 44 | Gtk::IconSource addlink_icon_source; |
---|
[1635] | 45 | addlink_icon_source.set_pixbuf(p_addlink_pixbuf); |
---|
[1634] | 46 | Gtk::IconSet addlink_icon_set; |
---|
| 47 | addlink_icon_set.add_source(addlink_icon_source); |
---|
| 48 | p_icon_factory->add(Gtk::StockID("gd-addlink"), addlink_icon_set); |
---|
| 49 | |
---|
| 50 | Gtk::IconSource delete_icon_source; |
---|
[1635] | 51 | delete_icon_source.set_pixbuf(p_delete_pixbuf); |
---|
[1634] | 52 | Gtk::IconSet delete_icon_set; |
---|
| 53 | delete_icon_set.add_source(delete_icon_source); |
---|
| 54 | p_icon_factory->add(Gtk::StockID("gd-delete"), delete_icon_set); |
---|
| 55 | |
---|
| 56 | Gtk::IconSource editlink_icon_source; |
---|
[1635] | 57 | editlink_icon_source.set_pixbuf(p_editlink_pixbuf); |
---|
[1634] | 58 | Gtk::IconSet editlink_icon_set; |
---|
| 59 | editlink_icon_set.add_source(editlink_icon_source); |
---|
| 60 | p_icon_factory->add(Gtk::StockID("gd-editlink"), editlink_icon_set); |
---|
| 61 | |
---|
| 62 | Gtk::IconSource editnode_icon_source; |
---|
[1635] | 63 | editnode_icon_source.set_pixbuf(p_editnode_pixbuf); |
---|
[1634] | 64 | Gtk::IconSet editnode_icon_set; |
---|
| 65 | editnode_icon_set.add_source(editnode_icon_source); |
---|
| 66 | p_icon_factory->add(Gtk::StockID("gd-editnode"), editnode_icon_set); |
---|
| 67 | |
---|
| 68 | Gtk::IconSource newmap_icon_source; |
---|
[1635] | 69 | newmap_icon_source.set_pixbuf(p_newmap_pixbuf); |
---|
[1634] | 70 | Gtk::IconSet newmap_icon_set; |
---|
| 71 | newmap_icon_set.add_source(newmap_icon_source); |
---|
| 72 | p_icon_factory->add(Gtk::StockID("gd-newmap"), newmap_icon_set); |
---|
| 73 | |
---|
| 74 | p_icon_factory->add_default(); |
---|
| 75 | |
---|
| 76 | |
---|
[1442] | 77 | ag=Gtk::ActionGroup::create(); |
---|
| 78 | |
---|
| 79 | ag->add( Gtk::Action::create("FileMenu", "_File") ); |
---|
| 80 | ag->add( Gtk::Action::create("FileNew", Gtk::Stock::NEW), |
---|
| 81 | sigc::mem_fun(*this, &MainWin::newFile)); |
---|
| 82 | ag->add( Gtk::Action::create("FileOpen", Gtk::Stock::OPEN), |
---|
| 83 | sigc::mem_fun(*this, &MainWin::openFile)); |
---|
| 84 | ag->add( Gtk::Action::create("FileSave", Gtk::Stock::SAVE), |
---|
| 85 | sigc::mem_fun(*this, &MainWin::saveFile)); |
---|
| 86 | ag->add( Gtk::Action::create("FileSaveAs", Gtk::Stock::SAVE_AS), |
---|
| 87 | sigc::mem_fun(*this, &MainWin::saveFileAs)); |
---|
[1606] | 88 | ag->add( Gtk::Action::create("Close", Gtk::Stock::CLOSE), |
---|
| 89 | sigc::mem_fun(*this, &MainWin::close)); |
---|
| 90 | ag->add( Gtk::Action::create("Quit", Gtk::Stock::QUIT), |
---|
[1598] | 91 | sigc::mem_fun(*this, &MainWin::hide)); |
---|
[1442] | 92 | |
---|
| 93 | ag->add( Gtk::Action::create("ViewMenu", "_View") ); |
---|
| 94 | ag->add( Gtk::Action::create("ViewZoomIn", Gtk::Stock::ZOOM_IN), |
---|
| 95 | sigc::mem_fun(this->gd_canvas, &GraphDisplayerCanvas::zoomIn)); |
---|
| 96 | ag->add( Gtk::Action::create("ViewZoomOut", Gtk::Stock::ZOOM_OUT), |
---|
| 97 | sigc::mem_fun(this->gd_canvas, &GraphDisplayerCanvas::zoomOut)); |
---|
| 98 | ag->add( Gtk::Action::create("ViewZoomFit", Gtk::Stock::ZOOM_FIT), |
---|
| 99 | sigc::mem_fun(this->gd_canvas, &GraphDisplayerCanvas::zoomFit)); |
---|
| 100 | ag->add( Gtk::Action::create("ViewZoom100", Gtk::Stock::ZOOM_100), |
---|
| 101 | sigc::mem_fun(this->gd_canvas, &GraphDisplayerCanvas::zoom100)); |
---|
| 102 | |
---|
| 103 | ag->add( Gtk::Action::create("ShowMenu", "_Show") ); |
---|
| 104 | ag->add( Gtk::Action::create("ShowMaps", "_Maps"), |
---|
[1598] | 105 | sigc::mem_fun(this->mapwin, &MapWin::show)); |
---|
[1442] | 106 | |
---|
[1606] | 107 | Gtk::RadioAction::Group tool_group; |
---|
[1634] | 108 | ag->add( Gtk::RadioAction::create(tool_group, "MoveItem", Gtk::StockID("gd-move"), "Move"), |
---|
[1606] | 109 | sigc::bind( sigc::mem_fun ( this->gd_canvas, &GraphDisplayerCanvas::changeEditorialTool ), 0) ); |
---|
[1634] | 110 | ag->add( Gtk::RadioAction::create(tool_group, "CreateNode", Gtk::StockID("gd-addnode"), "Create node"), |
---|
[1502] | 111 | sigc::bind( sigc::mem_fun ( this->gd_canvas, &GraphDisplayerCanvas::changeEditorialTool ), 1) ); |
---|
[1634] | 112 | ag->add( Gtk::RadioAction::create(tool_group, "CreateEdge", Gtk::StockID("gd-addlink"), "Create edge"), |
---|
[1502] | 113 | sigc::bind( sigc::mem_fun ( this->gd_canvas, &GraphDisplayerCanvas::changeEditorialTool ), 2) ); |
---|
[1634] | 114 | ag->add( Gtk::RadioAction::create(tool_group, "EraseItem", Gtk::StockID("gd-delete"), "Delete"), |
---|
[1502] | 115 | sigc::bind( sigc::mem_fun ( this->gd_canvas, &GraphDisplayerCanvas::changeEditorialTool ), 3) ); |
---|
[1634] | 116 | |
---|
| 117 | ag->add( Gtk::RadioAction::create(tool_group, "EditEdgeMap", Gtk::StockID("gd-editlink"), "Edit edge map"), |
---|
[1550] | 118 | sigc::bind( sigc::mem_fun ( this->gd_canvas, &GraphDisplayerCanvas::changeEditorialTool ), 4) ); |
---|
[1634] | 119 | ag->add( Gtk::RadioAction::create(tool_group, "EditNodeMap", Gtk::StockID("gd-editnode"), "Edit node map"), |
---|
[1550] | 120 | sigc::bind( sigc::mem_fun ( this->gd_canvas, &GraphDisplayerCanvas::changeEditorialTool ), 5) ); |
---|
[1634] | 121 | |
---|
| 122 | ag->add( Gtk::Action::create("AddMap", Gtk::StockID("gd-newmap")), |
---|
[1592] | 123 | sigc::mem_fun ( this->newmapwin, &NewMapWin::show ) ); |
---|
[1502] | 124 | |
---|
[1442] | 125 | uim=Gtk::UIManager::create(); |
---|
| 126 | uim->insert_action_group(ag); |
---|
| 127 | add_accel_group(uim->get_accel_group()); |
---|
| 128 | |
---|
| 129 | try |
---|
| 130 | { |
---|
| 131 | |
---|
| 132 | Glib::ustring ui_info = |
---|
| 133 | "<ui>" |
---|
| 134 | " <menubar name='MenuBar'>" |
---|
| 135 | " <menu action='FileMenu'>" |
---|
| 136 | " <menuitem action='FileNew'/>" |
---|
| 137 | " <menuitem action='FileOpen'/>" |
---|
| 138 | " <menuitem action='FileSave'/>" |
---|
| 139 | " <menuitem action='FileSaveAs'/>" |
---|
[1606] | 140 | " <menuitem action='Close'/>" |
---|
| 141 | " <menuitem action='Quit'/>" |
---|
[1442] | 142 | " </menu>" |
---|
| 143 | " <menu action='ViewMenu'>" |
---|
| 144 | " <menuitem action='ViewZoomIn' />" |
---|
| 145 | " <menuitem action='ViewZoomOut' />" |
---|
| 146 | " <menuitem action='ViewZoomFit' />" |
---|
| 147 | " <menuitem action='ViewZoom100' />" |
---|
| 148 | " </menu>" |
---|
| 149 | " <menu action='ShowMenu'>" |
---|
| 150 | " <menuitem action='ShowMaps'/>" |
---|
| 151 | " </menu>" |
---|
| 152 | " </menubar>" |
---|
| 153 | " <toolbar name='ToolBar'>" |
---|
| 154 | " <toolitem action='FileNew' />" |
---|
| 155 | " <toolitem action='FileOpen' />" |
---|
| 156 | " <toolitem action='FileSave' />" |
---|
[1606] | 157 | " <toolitem action='Close' />" |
---|
[1442] | 158 | " <separator />" |
---|
| 159 | " <toolitem action='ViewZoomIn' />" |
---|
| 160 | " <toolitem action='ViewZoomOut' />" |
---|
| 161 | " <toolitem action='ViewZoomFit' />" |
---|
| 162 | " <toolitem action='ViewZoom100' />" |
---|
[1502] | 163 | " <separator />" |
---|
[1606] | 164 | " <toolitem action='MoveItem' />" |
---|
[1502] | 165 | " <toolitem action='CreateNode' />" |
---|
| 166 | " <toolitem action='CreateEdge' />" |
---|
| 167 | " <toolitem action='EraseItem' />" |
---|
[1550] | 168 | " <toolitem action='EditEdgeMap' />" |
---|
| 169 | " <toolitem action='EditNodeMap' />" |
---|
[1634] | 170 | " <separator />" |
---|
[1592] | 171 | " <toolitem action='AddMap' />" |
---|
[1442] | 172 | " </toolbar>" |
---|
| 173 | "</ui>"; |
---|
| 174 | |
---|
| 175 | uim->add_ui_from_string(ui_info); |
---|
| 176 | |
---|
| 177 | } |
---|
| 178 | catch(const Glib::Error& ex) |
---|
| 179 | { |
---|
| 180 | std::cerr << "building menus failed: " << ex.what(); |
---|
| 181 | } |
---|
| 182 | |
---|
| 183 | Gtk::Widget* menubar = uim->get_widget("/MenuBar"); |
---|
| 184 | if (menubar){ |
---|
| 185 | vbox.pack_start(*menubar, Gtk::PACK_SHRINK); |
---|
| 186 | } |
---|
| 187 | |
---|
| 188 | Gtk::Widget* toolbar = uim->get_widget("/ToolBar"); |
---|
| 189 | if (toolbar) |
---|
| 190 | { |
---|
| 191 | static_cast<Gtk::Toolbar*>(toolbar)->set_toolbar_style(Gtk::TOOLBAR_ICONS); |
---|
| 192 | vbox.pack_start(*toolbar, Gtk::PACK_SHRINK); |
---|
| 193 | } |
---|
| 194 | |
---|
| 195 | Gtk::ScrolledWindow* pScrolledWindow = manage(new Gtk::ScrolledWindow()); |
---|
| 196 | pScrolledWindow->add(gd_canvas); |
---|
| 197 | vbox.pack_start(*pScrolledWindow); |
---|
[1601] | 198 | |
---|
| 199 | tooltips.set_tip(*(uim->get_widget("/ToolBar/CreateNode")),"Create Node"); |
---|
| 200 | tooltips.enable(); |
---|
[1442] | 201 | |
---|
| 202 | show_all_children(); |
---|
| 203 | } |
---|
| 204 | |
---|
[1616] | 205 | void MainWin::readFile(const std::string &file) |
---|
| 206 | { |
---|
| 207 | mapstorage.readFromFile(file); |
---|
| 208 | mapstorage.file_name = file; |
---|
| 209 | mapstorage.modified = false; |
---|
| 210 | gd_canvas.drawGraph(); |
---|
| 211 | mapwin.update(); |
---|
| 212 | } |
---|
| 213 | |
---|
[1442] | 214 | void MainWin::newFile() |
---|
| 215 | { |
---|
[1606] | 216 | if (mapstorage.modified) |
---|
| 217 | { |
---|
[1615] | 218 | Gtk::MessageDialog mdialog("<b>Save changes before closing?</b>", true, |
---|
| 219 | Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE); |
---|
[1606] | 220 | mdialog.add_button("Close _without Saving", Gtk::RESPONSE_REJECT); |
---|
| 221 | mdialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); |
---|
| 222 | mdialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT); |
---|
| 223 | switch (mdialog.run()) |
---|
| 224 | { |
---|
| 225 | case Gtk::RESPONSE_CANCEL: |
---|
| 226 | return; |
---|
| 227 | case Gtk::RESPONSE_REJECT: |
---|
| 228 | break; |
---|
| 229 | case Gtk::RESPONSE_ACCEPT: |
---|
| 230 | saveFile(); |
---|
| 231 | break; |
---|
| 232 | } |
---|
| 233 | } |
---|
| 234 | gd_canvas.clear(); |
---|
| 235 | mapstorage.clear(); |
---|
| 236 | mapwin.update(); |
---|
[1442] | 237 | } |
---|
| 238 | |
---|
| 239 | void MainWin::openFile() |
---|
| 240 | { |
---|
[1606] | 241 | if (mapstorage.modified) |
---|
| 242 | { |
---|
[1615] | 243 | Gtk::MessageDialog mdialog("<b>Save changes before closing?</b>", true, |
---|
| 244 | Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE); |
---|
[1606] | 245 | mdialog.add_button("Close _without Saving", Gtk::RESPONSE_REJECT); |
---|
| 246 | mdialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); |
---|
| 247 | mdialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT); |
---|
| 248 | switch (mdialog.run()) |
---|
| 249 | { |
---|
| 250 | case Gtk::RESPONSE_CANCEL: |
---|
| 251 | return; |
---|
| 252 | case Gtk::RESPONSE_REJECT: |
---|
| 253 | break; |
---|
| 254 | case Gtk::RESPONSE_ACCEPT: |
---|
| 255 | saveFile(); |
---|
| 256 | break; |
---|
| 257 | } |
---|
| 258 | } |
---|
| 259 | gd_canvas.clear(); |
---|
| 260 | mapstorage.clear(); |
---|
| 261 | Gtk::FileChooserDialog fcdialog("Open File"); |
---|
| 262 | fcdialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); |
---|
| 263 | fcdialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_ACCEPT); |
---|
| 264 | if (fcdialog.run() == Gtk::RESPONSE_ACCEPT) |
---|
| 265 | { |
---|
| 266 | Glib::ustring filename = fcdialog.get_filename(); |
---|
| 267 | mapstorage.readFromFile(filename); |
---|
| 268 | mapstorage.file_name = filename; |
---|
| 269 | mapstorage.modified = false; |
---|
| 270 | gd_canvas.drawGraph(); |
---|
| 271 | mapwin.update(); |
---|
| 272 | } |
---|
[1442] | 273 | } |
---|
| 274 | |
---|
| 275 | void MainWin::saveFile() |
---|
| 276 | { |
---|
[1606] | 277 | if (mapstorage.file_name == "") { |
---|
| 278 | saveFileAs(); |
---|
| 279 | } |
---|
| 280 | else |
---|
| 281 | { |
---|
| 282 | mapstorage.writeToFile(mapstorage.file_name); |
---|
| 283 | mapstorage.modified = false; |
---|
| 284 | } |
---|
[1442] | 285 | } |
---|
| 286 | |
---|
| 287 | void MainWin::saveFileAs() |
---|
| 288 | { |
---|
[1606] | 289 | Gtk::FileChooserDialog fcdialog("Save File", Gtk::FILE_CHOOSER_ACTION_SAVE); |
---|
| 290 | fcdialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); |
---|
| 291 | fcdialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT); |
---|
| 292 | if (fcdialog.run() == Gtk::RESPONSE_ACCEPT) |
---|
| 293 | { |
---|
| 294 | Glib::ustring filename = fcdialog.get_filename(); |
---|
| 295 | mapstorage.file_name = filename; |
---|
| 296 | mapstorage.writeToFile(filename); |
---|
| 297 | mapstorage.modified = false; |
---|
| 298 | } |
---|
[1442] | 299 | } |
---|
[1606] | 300 | |
---|
| 301 | void MainWin::close() |
---|
| 302 | { |
---|
| 303 | if (mapstorage.modified) |
---|
| 304 | { |
---|
[1615] | 305 | Gtk::MessageDialog mdialog("<b>Save changes before closing?</b>", true, |
---|
| 306 | Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE); |
---|
[1606] | 307 | mdialog.add_button("Close _without Saving", Gtk::RESPONSE_REJECT); |
---|
| 308 | mdialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); |
---|
| 309 | mdialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT); |
---|
| 310 | switch (mdialog.run()) |
---|
| 311 | { |
---|
| 312 | case Gtk::RESPONSE_CANCEL: |
---|
| 313 | return; |
---|
| 314 | case Gtk::RESPONSE_REJECT: |
---|
| 315 | break; |
---|
| 316 | case Gtk::RESPONSE_ACCEPT: |
---|
| 317 | saveFile(); |
---|
| 318 | break; |
---|
| 319 | } |
---|
| 320 | } |
---|
| 321 | gd_canvas.clear(); |
---|
| 322 | mapstorage.clear(); |
---|
| 323 | mapwin.update(); |
---|
| 324 | } |
---|