diff -r d79a71382836 -r 65c1b103443d main_win.h --- a/main_win.h Mon Sep 25 12:08:35 2006 +0000 +++ b/main_win.h Mon Sep 25 15:30:04 2006 +0000 @@ -20,7 +20,18 @@ class MainWin : public Gtk::Window { ///Container in which the menus and the notebook is. - Gtk::VBox vbox; + //Gtk::VBox vbox; + Gtk::Table table; + Gtk::Table table2; + + ///Container in which the toolbar and the node parametrizer is. + Gtk::HBox hbox; + + ///Should nodes be autoscaled or not? + Gtk::CheckButton * auto_scale; + + ///Minimum and maximum node radius entry + Gtk::SpinButton * radius_min, * radius_max, * radius_unit; ///The notebook that has tabs (\ref NoteBookTab) with different graphs. Gtk::Notebook notebook; @@ -221,6 +232,8 @@ ///Sets the variables that have to store the actual state, and it ///updates the title of window to the actually selected \ref NoteBookTab. virtual void onChangeTab(GtkNotebookPage*, guint); + + virtual void nodeViewChanged(); }; #endif //MAIN_WIN_H