hegyi@1876: #include hegyi@1876: hegyi@1876: KruskalBox::KruskalBox(std::vector t, std::vector nm, std::vector em):AlgoBox() hegyi@1876: { hegyi@1876: init(t, nm, em); hegyi@1876: } hegyi@1876: hegyi@1876: void KruskalBox::run() hegyi@1876: { hegyi@1876: std::cout << "Kruskal inditasa, de meg nincsen keszen." << std::endl; hegyi@1876: } hegyi@1876: hegyi@1876: void KruskalBox::build_box() hegyi@1876: { hegyi@1876: edgemapcbts.resize(1); hegyi@1876: Gtk::HBox * hbox=new Gtk::HBox(); hegyi@1876: hegyi@1876: std::ostringstream o; hegyi@1876: o << "Edgecosts: "; hegyi@1876: label=new Gtk::Label(o.str()); hegyi@1876: hegyi@1876: edgemapcbts[0]=new Gtk::ComboBoxText(); hegyi@1876: hegyi@1876: hbox->pack_start(*label); hegyi@1876: hbox->pack_start(*(edgemapcbts[0])); hegyi@1876: pack_start(*hbox); hegyi@1876: }