#include "ui_notebook.h"#include "ui_tree_view.h"intui_notebook_create(GtkWidget*vbox){GtkWidget*notebook;GtkWidget*vbox_notebook;if(!vbox)returnRC_BAD_PARAM;notebook=gtk_notebook_new();vbox_notebook=gtk_box_new(GTK_ORIENTATION_VERTICAL,0);ui_tree_view_create(NULL,vbox_notebook);gtk_notebook_append_page(GTK_NOTEBOOK(notebook),vbox_notebook,NULL);/* Add the notebook to the vbox of the main window */gtk_box_pack_start(GTK_BOX(vbox),notebook,TRUE,TRUE,0);returnRC_OK;}