Home
last modified time | relevance | path

Searched refs:tree_view (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/webrtc/examples/peerconnection/client/linux/
Dmain_wnd.cc52 void OnRowActivatedCallback(GtkTreeView* tree_view, GtkTreePath* path, in OnRowActivatedCallback() argument
54 reinterpret_cast<GtkMainWnd*>(data)->OnRowActivated(tree_view, path, column); in OnRowActivatedCallback()
58 GtkTreeView* tree_view = reinterpret_cast<GtkTreeView*>(data); in SimulateLastRowActivated() local
59 GtkTreeModel* model = gtk_tree_view_get_model(tree_view); in SimulateLastRowActivated()
66 GtkTreeSelection* selection = gtk_tree_view_get_selection(tree_view); in SimulateLastRowActivated()
70 GtkTreeViewColumn* column = gtk_tree_view_get_column(tree_view, 0); in SimulateLastRowActivated()
72 gtk_tree_view_row_activated(tree_view, lastpath, column); in SimulateLastRowActivated()
371 void GtkMainWnd::OnRowActivated(GtkTreeView* tree_view, GtkTreePath* path, in OnRowActivated() argument
377 gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view)); in OnRowActivated()
Dmain_wnd.h68 void OnRowActivated(GtkTreeView* tree_view, GtkTreePath* path,
/external/fio/
Dgclient.c752 GtkWidget *frame, *box, *tree_view = NULL; in gfio_show_io_depths() local
771 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model)); in gfio_show_io_depths()
772 gtk_widget_set_can_focus(tree_view, FALSE); in gfio_show_io_depths()
774 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE, in gfio_show_io_depths()
777 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view)); in gfio_show_io_depths()
781 tree_view_column(tree_view, i, labels[i], ALIGN_RIGHT | UNSORTABLE); in gfio_show_io_depths()
787 gtk_box_pack_start(GTK_BOX(box), tree_view, TRUE, TRUE, 3); in gfio_show_io_depths()
831 GtkWidget *tree_view; in gfio_output_lat_buckets() local
847 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model)); in gfio_output_lat_buckets()
848 gtk_widget_set_can_focus(tree_view, FALSE); in gfio_output_lat_buckets()
[all …]
Dghelpers.c103 GtkTreeViewColumn *tree_view_column(GtkWidget *tree_view, int index, const char *title, unsigned in… in tree_view_column() argument
140 gtk_tree_view_append_column(GTK_TREE_VIEW(tree_view), col); in tree_view_column()
Dghelpers.h33 GtkTreeViewColumn *tree_view_column(GtkWidget *tree_view, int index, const char *title, unsigned in…
Dgfio.c299 GtkWidget *tree_view; in gfio_ui_setup_log() local
303 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model)); in gfio_ui_setup_log()
304 gtk_widget_set_can_focus(tree_view, FALSE); in gfio_ui_setup_log()
306 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view)); in gfio_ui_setup_log()
308 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE, in gfio_ui_setup_log()
311 tree_view_column(tree_view, 0, "Time", ALIGN_RIGHT | UNSORTABLE); in gfio_ui_setup_log()
312 tree_view_column(tree_view, 1, "Host", ALIGN_RIGHT | UNSORTABLE); in gfio_ui_setup_log()
313 tree_view_column(tree_view, 2, "Level", ALIGN_RIGHT | UNSORTABLE); in gfio_ui_setup_log()
314 tree_view_column(tree_view, 3, "Text", ALIGN_LEFT | UNSORTABLE); in gfio_ui_setup_log()
317 ui->log_tree = tree_view; in gfio_ui_setup_log()