--- /dev/null
+#include "topviewsettings.h"
+#include "gui.h"
+
+
+void on_settingsOKBtn_clicked (GtkWidget *widget,gpointer user_data)
+{
+
+
+}
+void on_settingsCancelBtn_clicked (GtkWidget *widget,gpointer user_data)
+{
+
+}
+int load_settings_from_graph(Agraph_t *g)
+{
+
+ return 1;
+}
+int update_graph_from_settings(Agraph_t *g)
+{
+
+ return 1;
+}
+
+int show_settings_form()
+{
+ gtk_widget_hide(glade_xml_get_widget(xml, "dlgSettings"));
+ gtk_widget_show(glade_xml_get_widget(xml, "dlgSettings"));
+ gtk_window_set_keep_above ((GtkWindow*)glade_xml_get_widget(xml, "dlgSettings"),1);
+}
--- /dev/null
+#ifndef TOPVIEWSETTINGS_H
+#define TOPVIEWSETTINGS_H
+
+
+#include "smyrnadefs.h"
+
+
+_BB void on_settingsOKBtn_clicked (GtkWidget *widget,gpointer user_data);
+_BB void on_settingsCancelBtn_clicked (GtkWidget *widget,gpointer user_data);
+int load_settings_from_graph(Agraph_t *g);
+int update_graph_from_settings(Agraph_t *g);
+int show_settings_form();
+
+
+
+
+#endif