COIN-OR::LEMON - Graph Library

source: glemon-0.x/main_win.cc @ 156:c5cdf6690cdf

Last change on this file since 156:c5cdf6690cdf was 156:c5cdf6690cdf, checked in by Hegyi Péter, 18 years ago

Zoom tracking of nodes is implemented and is switchable.

File size: 16.1 KB
Line 
1#ifdef HAVE_CONFIG_H
2#include <config.h>
3#endif
4
5#include "main_win.h"
6#include "guipixbufs.h"
7
8#include "i18n.h"
9
10MainWin::MainWin()
11{
12  set_title ("no file");
13  set_default_size(WIN_WIDTH,WIN_HEIGHT);
14  //add(vbox);
15  add(table);
16
17  // custom icons for the toolbar
18  Glib::RefPtr<Gtk::IconFactory> p_icon_factory = Gtk::IconFactory::create();
19 
20  Glib::RefPtr<Gdk::Pixbuf> p_move_pixbuf = Gdk::Pixbuf::create_from_inline(
21      2328, gui_icons_move);
22  Glib::RefPtr<Gdk::Pixbuf> p_addnode_pixbuf = Gdk::Pixbuf::create_from_inline(
23      2328, gui_icons_addnode);
24  Glib::RefPtr<Gdk::Pixbuf> p_addlink_pixbuf = Gdk::Pixbuf::create_from_inline(
25      2328, gui_icons_addlink);
26  Glib::RefPtr<Gdk::Pixbuf> p_delete_pixbuf = Gdk::Pixbuf::create_from_inline(
27      2328, gui_icons_delete);
28  Glib::RefPtr<Gdk::Pixbuf> p_editlink_pixbuf = Gdk::Pixbuf::create_from_inline(
29      2328, gui_icons_editlink);
30  Glib::RefPtr<Gdk::Pixbuf> p_newmap_pixbuf = Gdk::Pixbuf::create_from_inline(
31      2328, gui_icons_newmap);
32
33  Gtk::IconSource move_icon_source;
34  move_icon_source.set_pixbuf(p_move_pixbuf);
35  Gtk::IconSet move_icon_set;
36  move_icon_set.add_source(move_icon_source);
37  p_icon_factory->add(Gtk::StockID("gd-move"), move_icon_set);
38
39  Gtk::IconSource addnode_icon_source;
40  addnode_icon_source.set_pixbuf(p_addnode_pixbuf);
41  Gtk::IconSet addnode_icon_set;
42  addnode_icon_set.add_source(addnode_icon_source);
43  p_icon_factory->add(Gtk::StockID("gd-addnode"), addnode_icon_set);
44
45  Gtk::IconSource addlink_icon_source;
46  addlink_icon_source.set_pixbuf(p_addlink_pixbuf);
47  Gtk::IconSet addlink_icon_set;
48  addlink_icon_set.add_source(addlink_icon_source);
49  p_icon_factory->add(Gtk::StockID("gd-addlink"), addlink_icon_set);
50
51  Gtk::IconSource delete_icon_source;
52  delete_icon_source.set_pixbuf(p_delete_pixbuf);
53  Gtk::IconSet delete_icon_set;
54  delete_icon_set.add_source(delete_icon_source);
55  p_icon_factory->add(Gtk::StockID("gd-delete"), delete_icon_set);
56
57  Gtk::IconSource editlink_icon_source;
58  editlink_icon_source.set_pixbuf(p_editlink_pixbuf);
59  Gtk::IconSet editlink_icon_set;
60  editlink_icon_set.add_source(editlink_icon_source);
61  p_icon_factory->add(Gtk::StockID("gd-editlink"), editlink_icon_set);
62
63  Gtk::IconSource newmap_icon_source;
64  newmap_icon_source.set_pixbuf(p_newmap_pixbuf);
65  Gtk::IconSet newmap_icon_set;
66  newmap_icon_set.add_source(newmap_icon_source);
67  p_icon_factory->add(Gtk::StockID("gd-newmap"), newmap_icon_set);
68
69  p_icon_factory->add_default();
70 
71  ag=Gtk::ActionGroup::create();
72
73  ag->add( Gtk::Action::create("FileMenu", _("_File")) );
74  ag->add( Gtk::Action::create("FileNew", Gtk::Stock::NEW),
75      sigc::mem_fun(*this, &MainWin::newTab));
76  ag->add( Gtk::Action::create("FileOpen", Gtk::Stock::OPEN),
77      sigc::mem_fun(*this, &MainWin::openFile));
78  ag->add( Gtk::Action::create("FileClearTab", _("Clear Tab")),
79      sigc::mem_fun(*this, &MainWin::newFile));
80  ag->add( Gtk::Action::create("FileSave", Gtk::Stock::SAVE),
81      sigc::mem_fun(*this, &MainWin::saveFile));
82  ag->add( Gtk::Action::create("FileSaveAs", Gtk::Stock::SAVE_AS),
83      sigc::mem_fun(*this, &MainWin::saveFileAs));
84  ag->add( Gtk::Action::create("Close", Gtk::Stock::CLOSE),
85      sigc::mem_fun(*this, &MainWin::closeTab));
86  ag->add( Gtk::Action::create("Quit", Gtk::Stock::QUIT),
87      sigc::mem_fun(*this, &MainWin::hide));
88
89  ag->add( Gtk::Action::create("ViewMenu", _("_View")) );
90  ag->add( Gtk::Action::create("ViewZoomIn", Gtk::Stock::ZOOM_IN),
91      sigc::mem_fun(*this, &MainWin::zoomIn));
92  ag->add( Gtk::Action::create("ViewZoomOut", Gtk::Stock::ZOOM_OUT),
93      sigc::mem_fun(*this, &MainWin::zoomOut));
94  ag->add( Gtk::Action::create("ViewZoomFit", Gtk::Stock::ZOOM_FIT),
95      sigc::mem_fun(*this, &MainWin::zoomFit));
96  ag->add( Gtk::Action::create("ViewZoom100", Gtk::Stock::ZOOM_100),
97      sigc::mem_fun(*this, &MainWin::zoom100));
98 
99  ag->add( Gtk::Action::create("ShowMenu", _("_Show")) );
100  ag->add( Gtk::Action::create("ShowMaps", _("_Maps")),
101           sigc::mem_fun(*this, &MainWin::createMapWin));
102
103  ag->add( Gtk::Action::create("AlgoMenu", _("_Algorithms")) );
104  ag->add( Gtk::Action::create("AlgoGeneral", _("_General")),
105           sigc::bind( sigc::mem_fun ( *this, &MainWin::createAlgoWin ), 0) );
106  ag->add( Gtk::Action::create("AlgoKruskal", _("_Kruskal")),
107           sigc::bind( sigc::mem_fun ( *this, &MainWin::createAlgoWin ), 1) );
108
109  Gtk::RadioAction::Group tool_group;
110  ag->add( Gtk::RadioAction::create(tool_group, "MoveItem", Gtk::StockID("gd-move"), _("Move")),
111      sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 0) );
112  ag->add( Gtk::RadioAction::create(tool_group, "CreateNode", Gtk::StockID("gd-addnode"), _("Create node")),
113      sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 1) );
114  ag->add( Gtk::RadioAction::create(tool_group, "CreateEdge", Gtk::StockID("gd-addlink"), _("Create edge")),
115      sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 2) );
116  ag->add( Gtk::RadioAction::create(tool_group, "EraseItem", Gtk::StockID("gd-delete"), _("Delete")),
117      sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 3) );
118
119  ag->add( Gtk::RadioAction::create(tool_group, "EditEdgeMap", Gtk::StockID("gd-editlink"), _("Edit edge map")),
120      sigc::bind( sigc::mem_fun ( *this, &MainWin::changeEditorialTool ), 4) );
121
122  ag->add( Gtk::Action::create("AddMap", Gtk::StockID("gd-newmap")),
123      sigc::mem_fun ( *this , &MainWin::createNewMapWin ) );
124
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='FileClearTab'/>"
139      "      <menuitem action='FileSave'/>"
140      "      <menuitem action='FileSaveAs'/>"
141      "      <menuitem action='Close'/>"
142      "      <menuitem action='Quit'/>"
143      "    </menu>"
144      "    <menu action='ViewMenu'>"
145      "      <menuitem action='ViewZoomIn' />"
146      "      <menuitem action='ViewZoomOut' />"
147      "      <menuitem action='ViewZoom100' />"
148      "      <menuitem action='ViewZoomFit' />"
149      "    </menu>"
150      "    <menu action='ShowMenu'>"
151      "      <menuitem action='ShowMaps'/>"
152      "    </menu>"
153      "    <menu action='AlgoMenu'>"
154      "      <menuitem action='AlgoGeneral'/>"
155      "      <menuitem action='AlgoKruskal'/>"
156      "    </menu>"
157      "  </menubar>"
158      "  <toolbar name='ToolBar'>"
159      "    <toolitem action='FileNew' />"
160      "    <toolitem action='FileOpen' />"
161      "    <toolitem action='FileSave' />"
162      "    <toolitem action='Close' />"
163      "    <separator />"
164      "    <toolitem action='ViewZoomIn' />"
165      "    <toolitem action='ViewZoomOut' />"
166      "    <toolitem action='ViewZoom100' />"
167      "    <toolitem action='ViewZoomFit' />"
168      "    <separator />"
169      "    <toolitem action='MoveItem' />"
170      "    <toolitem action='CreateNode' />"
171      "    <toolitem action='CreateEdge' />"
172      "    <toolitem action='EraseItem' />"
173      "    <toolitem action='EditEdgeMap' />"
174      "    <separator />"
175      "    <toolitem action='AddMap' />"
176      "  </toolbar>"
177      "</ui>";
178
179    uim->add_ui_from_string(ui_info);
180
181  }
182  catch(const Glib::Error& ex)
183  {
184    std::cerr << "building menus failed: " <<  ex.what();
185  }
186
187  Gtk::Widget* menubar = uim->get_widget("/MenuBar");
188  if (menubar){
189    //vbox.pack_start(*menubar, Gtk::PACK_SHRINK);
190    table.attach(*menubar, 0, 1, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK);
191  }
192
193  Gtk::Widget* toolbar = uim->get_widget("/ToolBar");
194  if (toolbar)
195  {
196    static_cast<Gtk::Toolbar*>(toolbar)->set_toolbar_style(Gtk::TOOLBAR_ICONS);
197    //hbox.pack_start(*toolbar, Gtk::PACK_EXPAND_WIDGET);
198
199    table.attach(*toolbar, 0, 1, 1, 2, Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK);
200
201  }
202 
203  table2.set_row_spacings(10);
204  table2.set_col_spacings(5);
205
206  auto_scale = new Gtk::CheckButton("Autoscale");
207  auto_scale->set_active(false);
208  auto_scale->signal_toggled().connect(sigc::mem_fun(*this, &MainWin::nodeViewChanged));
209  table2.attach(*auto_scale, 0,2,0,1);
210
211  Gtk::Label * unit_label= new Gtk::Label("Unit:");
212//   table2.attach(*unit_label, 2,3,0,1);
213 
214  Gtk::Adjustment * adjustment_unit=new Gtk::Adjustment(20, 5, 200, 5, 10);
215
216  radius_unit = new Gtk::SpinButton(*adjustment_unit, 5,0);
217  radius_unit->signal_value_changed().connect(sigc::mem_fun(*this, &MainWin::nodeViewChanged));
218//   table2.attach(*radius_unit, 3,4,0,1);
219
220  Gtk::Label * min_label= new Gtk::Label("Min:");
221//   table2.attach(*min_label, 0,1,1,2);
222 
223  Gtk::Adjustment * adjustment_min=new Gtk::Adjustment(20, 5, 200, 5, 10);
224
225  radius_min = new Gtk::SpinButton(*adjustment_min, 5,0);
226  radius_min->signal_value_changed().connect(sigc::mem_fun(*this, &MainWin::nodeViewChanged));
227//   table2.attach(*radius_min, 1,2,1,2);
228
229  Gtk::Label * max_label= new Gtk::Label("Size:");
230  table2.attach(*max_label, 2,3,1,2);
231 
232  Gtk::Adjustment * adjustment_max=new Gtk::Adjustment(20, 0, 200, 5, 10);
233
234  radius_max = new Gtk::SpinButton(*adjustment_max, 5,0);
235  radius_max->signal_value_changed().connect(sigc::mem_fun(*this, &MainWin::nodeViewChanged));
236  table2.attach(*radius_max, 3,4,1,2);
237
238  zoom_track = new Gtk::CheckButton("Zoom tracking");
239  zoom_track->set_active(false);
240  zoom_track->signal_toggled().connect(sigc::mem_fun(*this, &MainWin::nodeViewChanged));
241  table2.attach(*zoom_track, 2,4,0,1);
242
243
244  //vbox.pack_start(hbox, Gtk::PACK_SHRINK);
245  table.attach(table2, 1, 2, 0, 2, Gtk::SHRINK, Gtk::SHRINK);
246
247  tooltips.set_tip(*(uim->get_widget("/ToolBar/CreateNode")),"Create Node");
248  tooltips.enable();
249
250  active_tab=-1;
251  notebook.signal_switch_page().connect(sigc::mem_fun(*this, &MainWin::onChangeTab));
252
253  active_tool = MOVE;
254
255  //vbox.pack_start(notebook);
256  table.attach(notebook,0,2,2,3, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL);
257 
258  show_all_children();
259}
260
261void MainWin::set_tabtitle(std::string name)
262{
263  if(strinst.find(name)==strinst.end())
264    {
265      tabnames[active_tab]=name;
266      strinst[name]=1;
267    }
268  else
269    {
270      strinst[name]++;
271      std::ostringstream o;
272      o << strinst[name];
273      tabnames[active_tab]=name+" - "+o.str();
274    }
275  set_title(tabnames[active_tab] + " - " + prog_name);
276  notebook.set_tab_label_text((Widget&)*(tabs[active_tab]), tabnames[active_tab]);
277  updateAlgoWinTabs();
278}
279
280void MainWin::readFile(const std::string & filename)
281{
282  newTab();
283  tabs[active_tab]->readFile(filename);
284}
285
286void MainWin::newTab()
287{
288  int size=tabs.size();
289  tabs.resize(size+1);
290  tabnames.resize(size+1);
291  active_tab=size;
292  tabs[active_tab]=new NoteBookTab();
293  tabs[active_tab]->signal_title_ch().connect(sigc::mem_fun(*this, &MainWin::set_tabtitle));
294  tabs[active_tab]->signal_newmap_needed().connect(sigc::mem_fun(*this, &MainWin::createNewMapWinAfterSignal));
295  tabs[active_tab]->gd_canvas->changeEditorialTool(active_tool);
296  notebook.append_page((Gtk::Widget&)(*(tabs[active_tab])));
297  notebook.set_current_page(size);
298  set_tabtitle(_("unsaved file"));
299  updateAlgoWinTabs();
300}
301
302void MainWin::closeTab()
303{
304  if(active_tab!=-1)
305    {
306      if (tabs[active_tab]->mapstorage.modified)
307        {
308          Gtk::MessageDialog mdialog(_("<b>Save changes before closing?</b>"), true,
309                                     Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
310          mdialog.add_button(_("Close file _without Saving"), Gtk::RESPONSE_REJECT);
311          mdialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
312          mdialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
313          switch (mdialog.run())
314            {
315            case Gtk::RESPONSE_CANCEL:
316              return;
317            case Gtk::RESPONSE_REJECT:
318              break;
319            case Gtk::RESPONSE_ACCEPT:
320              tabs[active_tab]->saveFile();
321              break;
322            }
323        }
324      //tabs vector will be decreased with the deleted value
325      int size=tabs.size();
326      if(size>1)
327        {
328          for(int i=active_tab+1;i<size;i++)
329            {
330              tabnames[i-1]=tabnames[i];
331              tabs[i-1]=tabs[i];
332            }
333        }
334      //if size==1 resize will delete the only element
335      tabs.resize(size-1);
336      tabnames.resize(size-1);
337
338      int old_active_tab=active_tab;
339      notebook.remove_page(active_tab);
340
341      //If the first tab was active, upon delete notebook
342      //will first switch one tab upper and not lower like
343      //in the case, when not the first tab was active.
344      //But after deletion it will become the first tab,
345      //and this should be registrated in tabs vector,
346      //as well.
347      if((old_active_tab==0)&&(size!=1))
348        {
349          onChangeTab(NULL,0);
350        }
351
352      //if this was the last page in notebook, there is
353      //no active_tab now
354      if(size==1)
355        {
356          active_tab=-1;
357        }
358
359      updateAlgoWinTabs();
360    }
361}
362
363void MainWin::onChangeTab(GtkNotebookPage* page, guint page_num)
364{
365  page=page;
366  active_tab=page_num;
367  tabs[active_tab]->gd_canvas->changeEditorialTool(active_tool);
368  set_title(tabnames[active_tab]);
369  bool autoscale;
370  bool zoomtrack;
371  double min;
372  double max;
373  double unit;
374  tabs[active_tab]->getNodeView(autoscale, zoomtrack, min, max, unit);
375  radius_min->set_value(min);
376  radius_max->set_value(max);
377  radius_unit->set_value(unit);
378  zoom_track->set_active(zoomtrack);
379  auto_scale->set_active(autoscale);
380
381}
382
383void MainWin::newFile()
384{
385  if(active_tab!=-1)
386    {
387      tabs[active_tab]->newFile();
388    }
389}
390 
391void MainWin::openFile()
392{
393  if(active_tab==-1)
394    {
395      newTab();
396    }
397  tabs[active_tab]->openFile();
398}
399 
400void MainWin::saveFile()
401{
402  if(active_tab!=-1)
403    {
404      tabs[active_tab]->saveFile();
405    }
406}
407 
408void MainWin::saveFileAs()
409{
410  if(active_tab!=-1)
411    {
412      tabs[active_tab]->saveFileAs();
413    }
414}
415 
416void MainWin::close()
417{
418  if(active_tab!=-1)
419    {
420      tabs[active_tab]->close();
421    }
422}
423
424void MainWin::zoomIn()
425{
426  if(active_tab!=-1)
427    {
428      tabs[active_tab]->gd_canvas->zoomIn();
429    }
430}
431
432void MainWin::zoomOut()
433{
434  if(active_tab!=-1)
435    {
436      tabs[active_tab]->gd_canvas->zoomOut();
437    }
438}
439
440void MainWin::zoomFit()
441{
442  if(active_tab!=-1)
443    {
444      tabs[active_tab]->gd_canvas->zoomFit();
445    }
446}
447
448void MainWin::zoom100()
449{
450  if(active_tab!=-1)
451    {
452      tabs[active_tab]->gd_canvas->zoom100();
453    }
454}
455
456void MainWin::createMapWin()
457{
458  if(active_tab!=-1)
459    {
460      tabs[active_tab]->createMapWin(tabnames[active_tab]);
461    }
462}
463
464void MainWin::createAlgoWin(int algoid)
465{
466  AlgoWin * aw=new AlgoWin(algoid, tabnames);
467  aw->signal_closing().connect(sigc::mem_fun(*this, &MainWin::deRegisterAlgoWin));
468  aw->signal_maplist_needed().connect(sigc::mem_fun(*this, &MainWin::updateAlgoWinMaps));
469  aw->signal_newmapwin_needed().connect(sigc::mem_fun(*this, &MainWin::createNewMapWinTabString));
470  aws.insert(aw);
471  aw->show();
472}
473
474void MainWin::updateAlgoWinTabs()
475{
476  std::set< AlgoWin* >::iterator awsi=aws.begin();
477  for(;awsi!=aws.end();awsi++)
478    {
479      (*awsi)->update_tablist(tabnames);
480    }
481}
482
483void MainWin::updateAlgoWinMaps(AlgoWin * awp, std::string tabname)
484{
485  int i=0;
486  for(;(i<(int)tabnames.size())&&(tabnames[i]!=tabname);i++)
487    {
488    }
489  awp->update_maplist(&(tabs[i]->mapstorage));
490}
491
492void MainWin::deRegisterAlgoWin(AlgoWin * awp)
493{
494  aws.erase(awp);
495}
496
497void MainWin::changeEditorialTool(int tool)
498{
499  active_tool=tool;
500  if(active_tab!=-1)
501    {
502      tabs[active_tab]->gd_canvas->changeEditorialTool(tool);
503    }
504}
505
506void MainWin::createNewMapWin()
507{
508  if(active_tab!=-1)
509    {
510      NewMapWin * nmw=new NewMapWin(_("Create New Map - ")+tabnames[active_tab], *(tabs[active_tab]));
511      nmw->show();
512    }
513}
514
515void MainWin::createNewMapWinTabString(std::string tabname, bool itisedge)
516{
517  int i=0;
518  for(;((i<(int)tabnames.size())&&(tabnames[i]!=tabname));i++)
519    {
520    }
521  createNewMapWinAfterSignal(tabs[i], itisedge);
522}
523
524void MainWin::createNewMapWinAfterSignal(NoteBookTab * nbt, bool itisedge)
525{
526  std::vector<NoteBookTab*>::iterator nbti=tabs.begin();
527  int i=0;
528  for(;nbti!=tabs.end();nbti++)
529    {
530      if(*nbti!=nbt)
531        {
532          i++;
533        }
534      else
535        {
536          continue;
537        }
538    }
539  NewMapWin * nmw=new NewMapWin(_("Create New Map - ")+tabnames[i], *nbt, itisedge, false);
540  nmw->run();
541}
542
543
544void MainWin::nodeViewChanged()
545{
546  double min=radius_min->get_value();
547  double max=radius_max->get_value();
548  double unit=radius_unit->get_value();
549  bool zoomtrack=zoom_track->get_active();
550  bool autoscale=auto_scale->get_active();
551  tabs[active_tab]->setNodeView(autoscale, zoomtrack, min, max, unit);
552}
Note: See TracBrowser for help on using the repository browser.