23#include "ns3/config.h"
24#include "ns3/pointer.h"
25#include "ns3/string.h"
35 GtkCellRenderer* renderer,
41 gtk_tree_model_get(model, iter,
COL_NODE, &node, -1);
50 g_object_set(renderer,
"text", str.
Get().c_str(),
nullptr);
51 g_object_set(renderer,
"editable", TRUE,
nullptr);
55 g_object_set(renderer,
"text",
"",
nullptr);
56 g_object_set(renderer,
"editable", FALSE,
nullptr);
66 GtkCellRenderer* renderer,
72 gtk_tree_model_get(model, iter,
COL_NODE, &node, -1);
73 g_object_set(renderer,
"editable", FALSE,
nullptr);
82 g_object_set(renderer,
88 g_object_set(renderer,
"text", node->
name.c_str(),
nullptr);
91 g_object_set(renderer,
"text", node->
name.c_str(),
nullptr);
94 std::stringstream oss;
96 g_object_set(renderer,
"text", oss.str().c_str(),
nullptr);
100 g_object_set(renderer,
"text", node->
name.c_str(),
nullptr);
114 GtkTreeModel* model = GTK_TREE_MODEL(user_data);
116 gtk_tree_model_get_iter_from_string(model, &iter, path_string);
118 gtk_tree_model_get(model, &iter,
COL_NODE, &node, -1);
136 g_return_val_if_fail(col !=
nullptr, -1);
137 g_return_val_if_fail(gtk_tree_view_column_get_tree_view(col) !=
nullptr, -1);
138 cols = gtk_tree_view_get_columns(GTK_TREE_VIEW(gtk_tree_view_column_get_tree_view(col)));
139 num = g_list_index(cols, (gpointer)col);
152 gboolean keyboard_tip,
158 GtkTreeViewColumn* column;
159 if (!gtk_tree_view_get_tooltip_context(GTK_TREE_VIEW(widget),
169 if (!gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(widget),
182 gtk_tree_model_get(model, &iter,
COL_NODE, &node, -1);
195 gtk_tooltip_set_text(tooltip, tip.c_str());
206 gtk_tooltip_set_text(tooltip, tip.c_str());
217 gtk_tooltip_set_text(tooltip, tip.c_str());
239 gtk_tooltip_set_text(tooltip, tip.c_str());
246 tip =
"This attribute is of type " + checker->GetValueTypeName();
247 if (checker->HasUnderlyingTypeInformation())
249 tip +=
" " + checker->GetUnderlyingTypeInformation();
251 gtk_tooltip_set_text(tooltip, tip.c_str());
267 GtkTreeViewColumn* col;
268 GtkCellRenderer* renderer;
271 view = gtk_tree_view_new();
272 g_object_set(view,
"has-tooltip", TRUE,
nullptr);
275 gtk_tree_view_set_grid_lines(GTK_TREE_VIEW(view), GTK_TREE_VIEW_GRID_LINES_BOTH);
278 col = gtk_tree_view_column_new();
279 gtk_tree_view_column_set_title(col,
"Object Attributes");
280 gtk_tree_view_append_column(GTK_TREE_VIEW(view), col);
281 renderer = gtk_cell_renderer_text_new();
282 gtk_tree_view_column_pack_start(col, renderer, TRUE);
283 gtk_tree_view_column_set_cell_data_func(col,
288 g_object_set(renderer,
"editable", FALSE,
nullptr);
290 col = gtk_tree_view_column_new();
291 gtk_tree_view_column_set_title(col,
"Attribute Value");
292 gtk_tree_view_append_column(GTK_TREE_VIEW(view), col);
293 renderer = gtk_cell_renderer_text_new();
295 gtk_tree_view_column_pack_start(col, renderer, TRUE);
296 gtk_tree_view_column_set_cell_data_func(col,
302 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(model));
304 g_object_unref(model);
316 gtk_widget_hide(GTK_WIDGET(user_data));
326 gtk_widget_hide(GTK_WIDGET(user_data));
337 gtk_tree_model_get(GTK_TREE_MODEL(model), iter,
COL_NODE, &node, -1);
342 gtk_tree_store_set(GTK_TREE_STORE(model), iter,
COL_NODE,
nullptr, -1);
353 GtkCellRenderer* renderer,
359 gtk_tree_model_get(model, iter,
COL_TYPEID, &node, -1);
366 g_object_set(renderer,
"text", node->
defaultValue.c_str(),
nullptr);
367 g_object_set(renderer,
"editable", TRUE,
nullptr);
371 g_object_set(renderer,
"text",
"",
nullptr);
372 g_object_set(renderer,
"editable", FALSE,
nullptr);
381 GtkCellRenderer* renderer,
387 gtk_tree_model_get(model, iter,
COL_NODE, &node, -1);
388 g_object_set(renderer,
"editable", FALSE,
nullptr);
397 g_object_set(renderer,
"text", node->
tid.
GetName().c_str(),
nullptr);
400 g_object_set(renderer,
"text", node->
name.c_str(),
nullptr);
416 GtkTreeModel* model = GTK_TREE_MODEL(user_data);
418 gtk_tree_model_get_iter_from_string(model, &iter, path_string);
420 gtk_tree_model_get(model, &iter,
COL_NODE, &node, -1);
451 gboolean keyboard_tip,
457 GtkTreeViewColumn* column;
458 if (!gtk_tree_view_get_tooltip_context(GTK_TREE_VIEW(widget),
468 if (!gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(widget),
481 gtk_tree_model_get(model, &iter,
COL_NODE, &node, -1);
492 std::string tip =
"This object is of type " + node->
tid.
GetName();
493 gtk_tooltip_set_text(tooltip, tip.c_str());
502 gtk_tooltip_set_text(tooltip, tip.c_str());
508 tip =
"This attribute is of type " + checker->GetValueTypeName();
509 if (checker->HasUnderlyingTypeInformation())
511 tip +=
" " + checker->GetUnderlyingTypeInformation();
513 gtk_tooltip_set_text(tooltip, tip.c_str());
532 GtkWindow* parent_window = GTK_WINDOW(user_data);
534 GtkFileChooserNative* native;
535 GtkFileChooser* chooser;
536 GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_SAVE;
539 native = gtk_file_chooser_native_new(
"Save File", parent_window, action,
"_Save",
"_Cancel");
540 chooser = GTK_FILE_CHOOSER(native);
542 gtk_file_chooser_set_do_overwrite_confirmation(chooser, TRUE);
544 gtk_file_chooser_set_current_name(chooser, (
"config-defaults.txt"));
546 res = gtk_native_dialog_run(GTK_NATIVE_DIALOG(native));
547 if (res == GTK_RESPONSE_ACCEPT)
551 filename = gtk_file_chooser_get_filename(chooser);
558 g_object_unref(native);
570 GtkWindow* parent_window = GTK_WINDOW(user_data);
571 GtkFileChooserNative* native;
572 GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_OPEN;
575 native = gtk_file_chooser_native_new(
"Open File", parent_window, action,
"_Open",
"_Cancel");
577 res = gtk_native_dialog_run(GTK_NATIVE_DIALOG(native));
578 if (res == GTK_RESPONSE_ACCEPT)
581 GtkFileChooser* chooser = GTK_FILE_CHOOSER(native);
582 filename = gtk_file_chooser_get_filename(chooser);
589 g_object_unref(native);
602 GtkWindow* parent_window = GTK_WINDOW(user_data);
604 GtkFileChooserNative* native;
605 GtkFileChooser* chooser;
606 GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_SAVE;
609 native = gtk_file_chooser_native_new(
"Save File", parent_window, action,
"_Save",
"_Cancel");
610 chooser = GTK_FILE_CHOOSER(native);
612 gtk_file_chooser_set_do_overwrite_confirmation(chooser, TRUE);
614 gtk_file_chooser_set_current_name(chooser, (
"config-attributes.txt"));
616 res = gtk_native_dialog_run(GTK_NATIVE_DIALOG(native));
617 if (res == GTK_RESPONSE_ACCEPT)
621 filename = gtk_file_chooser_get_filename(chooser);
628 g_object_unref(native);
640 GtkWindow* parent_window = GTK_WINDOW(user_data);
641 GtkFileChooserNative* native;
642 GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_OPEN;
645 native = gtk_file_chooser_native_new(
"Open File", parent_window, action,
"_Open",
"_Cancel");
647 res = gtk_native_dialog_run(GTK_NATIVE_DIALOG(native));
648 if (res == GTK_RESPONSE_ACCEPT)
651 GtkFileChooser* chooser = GTK_FILE_CHOOSER(native);
652 filename = gtk_file_chooser_get_filename(chooser);
659 g_object_unref(native);
669 GtkTreeViewColumn* col;
670 GtkCellRenderer* renderer;
673 view = gtk_tree_view_new();
674 g_object_set(view,
"has-tooltip", TRUE,
nullptr);
677 gtk_tree_view_set_grid_lines(GTK_TREE_VIEW(view), GTK_TREE_VIEW_GRID_LINES_BOTH);
680 col = gtk_tree_view_column_new();
681 gtk_tree_view_column_set_title(col,
"Object Attributes");
682 gtk_tree_view_append_column(GTK_TREE_VIEW(view), col);
683 renderer = gtk_cell_renderer_text_new();
684 gtk_tree_view_column_pack_start(col, renderer, TRUE);
685 gtk_tree_view_column_set_cell_data_func(col,
690 g_object_set(renderer,
"editable", FALSE,
nullptr);
692 col = gtk_tree_view_column_new();
693 gtk_tree_view_column_set_title(col,
"Attribute Value");
694 gtk_tree_view_append_column(GTK_TREE_VIEW(view), col);
695 renderer = gtk_cell_renderer_text_new();
697 gtk_tree_view_column_pack_start(col, renderer, TRUE);
698 gtk_tree_view_column_set_cell_data_func(col,
704 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(model));
706 g_object_unref(model);
721 gtk_tree_model_get(GTK_TREE_MODEL(model), iter,
COL_TYPEID, &node, -1);
726 gtk_tree_store_set(GTK_TREE_STORE(model), iter,
COL_TYPEID,
nullptr, -1);
void SetAttribute(std::string name, const AttributeValue &value)
Set a single attribute, raising fatal errors if unsuccessful.
void GetAttribute(std::string name, AttributeValue &value) const
Get the value of an attribute, raising fatal errors if unsuccessful.
TypeId GetInstanceTypeId() const override
Get the most derived TypeId for this Object.
Hold objects of type Ptr<T>.
Ptr< Object > GetObject() const
Get the Object referenced by the PointerValue.
Smart pointer class similar to boost::intrusive_ptr.
A class to enable loading of configuration store from a raw text file.
void SetFilename(std::string filename) override
Set the file name.
void Attributes() override
Load or save the attributes values.
void Default() override
Load or save the default values.
A class to enable saving of configuration store in a raw text file.
void Attributes() override
Load or save the attributes values.
void SetFilename(std::string filename) override
Set the file name.
void Default() override
Load or save the default values.
Hold variables of type string.
a unique identifier for an interface.
bool HasParent() const
Check if this TypeId has a parent.
std::string GetAttributeFullName(std::size_t i) const
Get the Attribute name by index.
std::size_t GetAttributeN() const
Get the number of attributes.
TypeId GetParent() const
Get the parent of this TypeId.
TypeId::AttributeInformation GetAttribute(std::size_t i) const
Get Attribute information by index.
std::string GetName() const
Get the name.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
bool SetDefaultFailSafe(std::string fullName, const AttributeValue &value)
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void cell_data_function_col_1_config_default(GtkTreeViewColumn *col, GtkCellRenderer *renderer, GtkTreeModel *model, GtkTreeIter *iter, gpointer user_data)
This function writes data in the second column, this data is going to be editable if it is a NODE_ATT...
gboolean cell_tooltip_callback(GtkWidget *widget, gint x, gint y, gboolean keyboard_tip, GtkTooltip *tooltip, gpointer user_data)
This function displays the tooltip for an object, pointer, vector item or an attribute.
gboolean clean_model_callback(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data)
Delete the tree model contents.
void cell_data_function_col_0_config_default(GtkTreeViewColumn *col, GtkCellRenderer *renderer, GtkTreeModel *model, GtkTreeIter *iter, gpointer user_data)
This function writes the attribute or typeid name in the column 0.
void cell_data_function_col_1(GtkTreeViewColumn *col, GtkCellRenderer *renderer, GtkTreeModel *model, GtkTreeIter *iter, gpointer user_data)
This function includes the name of the attribute or the editable value in the second column.
void cell_edited_callback(GtkCellRendererText *cell, gchar *path_string, gchar *new_text, gpointer user_data)
This is the callback called when the value of an attribute is changed.
void save_clicked_attribute(GtkButton *button, gpointer user_data)
This is the action done when the user presses on the save button for the Attributes.
gboolean cell_tooltip_callback_config_default(GtkWidget *widget, gint x, gint y, gboolean keyboard_tip, GtkTooltip *tooltip, gpointer user_data)
This function is used to display a tooltip whenever the user puts the mouse over a type ID or an attr...
gboolean delete_event_callback(GtkWidget *widget, GdkEvent *event, gpointer user_data)
Exit the application.
void exit_clicked_callback(GtkButton *button, gpointer user_data)
Exit the window when exit button is pressed.
GtkWidget * create_view_config_default(GtkTreeStore *model)
This is the main view opening the widget, getting tooltips and drawing the tree of attributes.
gboolean clean_model_callback_config_default(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data)
Delete the tree model contents.
int get_col_number_from_tree_view_column(GtkTreeViewColumn *col)
This function gets the column number 0 or 1 from the mouse click.
GtkWidget * create_view(GtkTreeStore *model)
This is the main view opening the widget, getting tooltips and drawing the tree of attributes....
void cell_data_function_col_0(GtkTreeViewColumn *col, GtkCellRenderer *renderer, GtkTreeModel *model, GtkTreeIter *iter, gpointer user_data)
This function includes the name of the object, pointer, vector or vector item in the first column.
void cell_edited_callback_config_default(GtkCellRendererText *cell, gchar *path_string, gchar *new_text, gpointer user_data)
This functions is called whenever there is a change in the value of an attribute If the input value i...
void save_clicked_default(GtkButton *button, gpointer user_data)
This is the action done when the user presses on the save button for the Default 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 for the Default attribu...
void load_clicked_attribute(GtkButton *button, gpointer user_data)
If the user presses the button load, it will load the config file into memory for the Attributes.
A class used in the implementation of the GtkConfigStore.
enum ns3::ModelNode::@1 type
node type structure
Ptr< Object > object
the object
std::string name
node name
A class used in the implementation of the GtkConfigStore.
uint32_t index
stores the index of the attribute in list of attributes for a given TypeId
TypeId tid
The TypeId object and if it is an attribute, it's the TypeId object of the attribute.
enum ns3::ModelTypeid::@3 type
Whether the node represents an attribute or TypeId.
std::string defaultValue
TypeId default value.
std::string name
TypeId name.