A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
gtk-config-store.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * This program is free software; you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License version 2 as
5  * published by the Free Software Foundation;
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15  *
16  * Authors: Faker Moatamri <faker.moatamri@sophia.inria.fr>
17  * Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
18  */
19 
20 #include "gtk-config-store.h"
21 #include "raw-text-config.h"
22 #include "display-functions.h"
23 #include "ns3/log.h"
24 #include <fstream>
25 
26 
27 namespace ns3 {
28 
29 NS_LOG_COMPONENT_DEFINE ("GtkconfigStore")
30  ;
31 
32 
34 {
35 }
36 
37 void
39 {
40  //this function should be called before running the script to enable the user
41  //to configure the default values for the objects he wants to use
42  GtkWidget *window;
43  GtkWidget *view;
44  GtkWidget *scroll;
45 
46  gtk_init (0, 0);
47  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
48  gtk_window_set_title (GTK_WINDOW (window), "ns-3 Default attributes.");
49  gtk_window_set_default_size (GTK_WINDOW (window), 600, 600);
50 
51  g_signal_connect (window, "delete_event", (GCallback)delete_event_callback, window);
52  GtkTreeStore *model = gtk_tree_store_new (COL_LAST, G_TYPE_POINTER);
53  ModelTypeidCreator creator;
54  creator.Build (model);
55 
56  view = create_view_config_default (model);
57  scroll = gtk_scrolled_window_new (0, 0);
58  gtk_container_add (GTK_CONTAINER (scroll), view);
59 
60  GtkWidget *vbox = gtk_vbox_new (FALSE, 5);
61  gtk_box_pack_start (GTK_BOX (vbox), scroll, TRUE, TRUE, 0);
62  gtk_box_pack_end (GTK_BOX (vbox), gtk_hseparator_new (), FALSE, FALSE, 0);
63  GtkWidget *hbox = gtk_hbox_new (FALSE, 5);
64  gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
65  GtkWidget *save = gtk_button_new_with_label ("Save");
66  g_signal_connect (save, "clicked", (GCallback) save_clicked_default, window);
67  gtk_box_pack_end (GTK_BOX (hbox), save, FALSE, FALSE, 0);
68  GtkWidget *load = gtk_button_new_with_label ("Load");
69  g_signal_connect (load, "clicked", (GCallback) load_clicked_default, window);
70  gtk_box_pack_end (GTK_BOX (hbox), load, FALSE, FALSE, 0);
71  GtkWidget *exit = gtk_button_new_with_label ("Run Simulation");
72  g_signal_connect (exit, "clicked", (GCallback) exit_clicked_callback, window);
73  gtk_box_pack_end (GTK_BOX (hbox), exit, FALSE, FALSE, 0);
74 
75  gtk_container_add (GTK_CONTAINER (window), vbox);
76 
77  gtk_widget_show_all (window);
78 
79  gtk_main ();
80 
81  gtk_tree_model_foreach (GTK_TREE_MODEL (model),
83  0);
84 
85  gtk_widget_destroy (window);
86 }
87 
88 void
90 {
91  GtkWidget *window;
92  GtkWidget *view;
93  GtkWidget *scroll;
94 
95  gtk_init (0, 0);
96 
97  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
98  gtk_window_set_title (GTK_WINDOW (window), "ns-3 Object attributes.");
99  gtk_window_set_default_size (GTK_WINDOW (window), 600, 600);
100 
101  g_signal_connect (window, "delete_event", (GCallback)delete_event_callback, window);
102 
103 
104  GtkTreeStore *model = gtk_tree_store_new (COL_LAST, G_TYPE_POINTER);
105  ModelCreator creator;
106  creator.Build (model);
107 
108  view = create_view (model);
109  scroll = gtk_scrolled_window_new (0, 0);
110  gtk_container_add (GTK_CONTAINER (scroll), view);
111 
112  GtkWidget *vbox = gtk_vbox_new (FALSE, 5);
113  gtk_box_pack_start (GTK_BOX (vbox), scroll, TRUE, TRUE, 0);
114  gtk_box_pack_end (GTK_BOX (vbox), gtk_hseparator_new (), FALSE, FALSE, 0);
115  GtkWidget *hbox = gtk_hbox_new (FALSE, 5);
116  gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
117  GtkWidget *save = gtk_button_new_with_label ("Save");
118  g_signal_connect (save, "clicked", (GCallback) save_clicked, window);
119  gtk_box_pack_end (GTK_BOX (hbox), save, FALSE, FALSE, 0);
120  GtkWidget *load = gtk_button_new_with_label ("Load");
121  g_signal_connect (load, "clicked", (GCallback) load_clicked, window);
122  gtk_box_pack_end (GTK_BOX (hbox), load, FALSE, FALSE, 0);
123  GtkWidget *exit = gtk_button_new_with_label ("Run Simulation");
124  g_signal_connect (exit, "clicked", (GCallback) exit_clicked_callback, window);
125  gtk_box_pack_end (GTK_BOX (hbox), exit, FALSE, FALSE, 0);
126 
127  gtk_container_add (GTK_CONTAINER (window), vbox);
128 
129  gtk_widget_show_all (window);
130 
131  gtk_main ();
132 
133  gtk_tree_model_foreach (GTK_TREE_MODEL (model),
135  0);
136 
137  gtk_widget_destroy (window);
138 }
139 
140 } // namespace ns3
NS_LOG_COMPONENT_DEFINE("GrantedTimeWindowMpiInterface")
void ConfigureAttributes(void)
void Build(GtkTreeStore *treestore)
This method will iterate on typeIds having default attributes and create a model for them...
void Build(GtkTreeStore *treestore)
void ConfigureDefaults(void)
void load_clicked(GtkButton *button, gpointer user_data)
If the user presses the button load, it will load the config file into memory.
GtkWidget * create_view_config_default(GtkTreeStore *model)
This is the main view opening the widget, getting tooltips and drawing the tree of attributes...
GtkWidget * create_view(GtkTreeStore *model)
This is the main view opening the widget, getting tooltips and drawing the tree of attributes...
void load_clicked_default(GtkButton *button, gpointer user_data)
If the user presses the button load, it will load the config file into memory.
void exit_clicked_callback(GtkButton *button, gpointer user_data)
Exit the window when exit button is pressed.
gboolean clean_model_callback(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data)
Delete the tree model contents.
gboolean clean_model_callback_config_default(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data)
Delete the tree model contents.
void save_clicked_default(GtkButton *button, gpointer user_data)
This is the action done when the user presses on the save button.
gboolean delete_event_callback(GtkWidget *widget, GdkEvent *event, gpointer user_data)
Exit the application.
void save_clicked(GtkButton *button, gpointer user_data)
This is the action done when the user presses on the save button.