gui/algobox.cc
author ladanyi
Thu, 05 Jan 2006 01:54:24 +0000
changeset 1877 bed340c4f960
child 1878 409a31271efd
permissions -rw-r--r--
Set the move tool active by default.
hegyi@1876
     1
#include <algobox.h>
hegyi@1876
     2
hegyi@1876
     3
enum {N_DEMO1, N_DEMO2, NODE_INPUT_NUM}; // input IDs for nodes;
hegyi@1876
     4
enum {E_DEMO1, EDGE_INPUT_NUM}; // input IDs for edges;
hegyi@1876
     5
hegyi@1876
     6
AlgoBox::AlgoBox(std::vector<std::string> tabnames, std::vector<std::string> nodemapnames, std::vector<std::string> edgemapnames)
hegyi@1876
     7
{
hegyi@1876
     8
  init(tabnames, nodemapnames, edgemapnames);
hegyi@1876
     9
}
hegyi@1876
    10
hegyi@1876
    11
void AlgoBox::init(std::vector<std::string> tabnames, std::vector<std::string> nodemapnames, std::vector<std::string> edgemapnames)
hegyi@1876
    12
{
hegyi@1876
    13
  set_spacing(5);
hegyi@1876
    14
hegyi@1876
    15
  update_tablist(tabnames);
hegyi@1876
    16
hegyi@1876
    17
  //if active tab is changed, the map names in cbt/s have to be updated
hegyi@1876
    18
  tabcbt.signal_changed().connect(sigc::mem_fun(*this, &AlgoBox::emit_tab_change));
hegyi@1876
    19
hegyi@1876
    20
  pack_start(tabcbt);
hegyi@1876
    21
hegyi@1876
    22
  build_box();
hegyi@1876
    23
hegyi@1876
    24
  update_maplist(nodemapnames, edgemapnames);
hegyi@1876
    25
hegyi@1876
    26
  show_all_children();
hegyi@1876
    27
};
hegyi@1876
    28
hegyi@1876
    29
void AlgoBox::update_cbt(std::vector< std::string > stringlist, Gtk::ComboBoxText & cbt)
hegyi@1876
    30
{
hegyi@1876
    31
  std::string actname=cbt.get_active_text();
hegyi@1876
    32
  int prev_act=-1;
hegyi@1876
    33
hegyi@1876
    34
  cbt.clear();
hegyi@1876
    35
  int actptr=0;
hegyi@1876
    36
hegyi@1876
    37
  std::vector< std::string >::iterator emsi=stringlist.begin();
hegyi@1876
    38
  for(;emsi!=stringlist.end();emsi++)
hegyi@1876
    39
    {
hegyi@1876
    40
      if(actname==*emsi)
hegyi@1876
    41
	{
hegyi@1876
    42
	  prev_act=actptr;
hegyi@1876
    43
	}
hegyi@1876
    44
hegyi@1876
    45
      cbt.append_text(*emsi);
hegyi@1876
    46
      actptr++;
hegyi@1876
    47
    }
hegyi@1876
    48
hegyi@1876
    49
  if(prev_act!=-1)
hegyi@1876
    50
    {
hegyi@1876
    51
      cbt.set_active(prev_act);
hegyi@1876
    52
    }
hegyi@1876
    53
  else if(actptr>0) //so there is item in the list
hegyi@1876
    54
    {
hegyi@1876
    55
      cbt.set_active(0);
hegyi@1876
    56
    }
hegyi@1876
    57
}
hegyi@1876
    58
hegyi@1876
    59
void AlgoBox::update_tablist( std::vector< std::string > tl )
hegyi@1876
    60
{
hegyi@1876
    61
  update_cbt(tl, tabcbt);
hegyi@1876
    62
  emit_tab_change();
hegyi@1876
    63
}
hegyi@1876
    64
hegyi@1876
    65
void AlgoBox::update_maplist( std::vector< std::string > nml, std::vector< std::string > eml )
hegyi@1876
    66
{
hegyi@1876
    67
  for(int i=0;i<(int)nodemapcbts.size();i++)
hegyi@1876
    68
    {
hegyi@1876
    69
      update_cbt(nml, *(nodemapcbts[i]));
hegyi@1876
    70
    }
hegyi@1876
    71
  for(int i=0;i<(int)edgemapcbts.size();i++)
hegyi@1876
    72
    {
hegyi@1876
    73
      update_cbt(eml, *(edgemapcbts[i]));
hegyi@1876
    74
    }
hegyi@1876
    75
}
hegyi@1876
    76
hegyi@1876
    77
void AlgoBox::run()
hegyi@1876
    78
{
hegyi@1876
    79
  std::cout << "Start algorithm." << std::endl;
hegyi@1876
    80
}
hegyi@1876
    81
hegyi@1876
    82
void AlgoBox::build_box()
hegyi@1876
    83
{
hegyi@1876
    84
  pack_start(*(new Gtk::HSeparator()));
hegyi@1876
    85
hegyi@1876
    86
  label=new Gtk::Label("Specific part for each algorithm.");
hegyi@1876
    87
      
hegyi@1876
    88
  pack_start(*label);
hegyi@1876
    89
  pack_start(*(new Gtk::HSeparator()));
hegyi@1876
    90
hegyi@1876
    91
  label=new Gtk::Label("Maps in chosen tab:");
hegyi@1876
    92
      
hegyi@1876
    93
  pack_start(*label);
hegyi@1876
    94
hegyi@1876
    95
  nodemapcbts.resize(NODE_INPUT_NUM);
hegyi@1876
    96
  for(int i=0;i<(int)nodemapcbts.size();i++)
hegyi@1876
    97
    {
hegyi@1876
    98
      Gtk::HBox * hbox=new Gtk::HBox();
hegyi@1876
    99
hegyi@1876
   100
      std::ostringstream o;
hegyi@1876
   101
      o << "NodeInput " << i+1 << ":";
hegyi@1876
   102
      label=new Gtk::Label(o.str());
hegyi@1876
   103
hegyi@1876
   104
      nodemapcbts[i]=new Gtk::ComboBoxText();
hegyi@1876
   105
hegyi@1876
   106
      hbox->pack_start(*label);
hegyi@1876
   107
      hbox->pack_start(*(nodemapcbts[i]));
hegyi@1876
   108
      pack_start(*hbox);
hegyi@1876
   109
    }
hegyi@1876
   110
hegyi@1876
   111
  pack_start(*(new Gtk::HSeparator()));
hegyi@1876
   112
hegyi@1876
   113
  edgemapcbts.resize(EDGE_INPUT_NUM);
hegyi@1876
   114
  for(int i=0;i<(int)edgemapcbts.size();i++)
hegyi@1876
   115
    {
hegyi@1876
   116
      Gtk::HBox * hbox=new Gtk::HBox();
hegyi@1876
   117
hegyi@1876
   118
      std::ostringstream o;
hegyi@1876
   119
      o << "EdgeInput " << i+1 << ":";
hegyi@1876
   120
      label=new Gtk::Label(o.str());
hegyi@1876
   121
hegyi@1876
   122
      edgemapcbts[i]=new Gtk::ComboBoxText();
hegyi@1876
   123
hegyi@1876
   124
      hbox->pack_start(*label);
hegyi@1876
   125
      hbox->pack_start(*(edgemapcbts[i]));
hegyi@1876
   126
      pack_start(*hbox);
hegyi@1876
   127
    }
hegyi@1876
   128
hegyi@1876
   129
  pack_start(*(new Gtk::HSeparator()));
hegyi@1876
   130
}
hegyi@1876
   131
hegyi@1876
   132
sigc::signal<void, std::string> AlgoBox::signal_maplist_needed()
hegyi@1876
   133
{
hegyi@1876
   134
  return signal_maplist_need;
hegyi@1876
   135
}
hegyi@1876
   136
hegyi@1876
   137
void AlgoBox::emit_tab_change()
hegyi@1876
   138
{
hegyi@1876
   139
  signal_maplist_need.emit(tabcbt.get_active_text());
hegyi@1876
   140
}