10#ifndef __GUI_WIDGETS_PORT_CONNECTIONS_TREE_H__
11#define __GUI_WIDGETS_PORT_CONNECTIONS_TREE_H__
13#include "gtk_wrapper.h"
17#define MW_PORT_CONNECTIONS_TREE (MW_PORT_CONNECTIONS->bindings_tree)
19#define PORT_CONNECTIONS_TREE_WIDGET_TYPE \
20 (port_connections_tree_widget_get_type ())
22 PortConnectionsTreeWidget,
23 port_connections_tree_widget,
25 PORT_CONNECTIONS_TREE_WIDGET,
34typedef struct _PortConnectionsTreeWidget
36 GtkBox parent_instance;
38 GtkScrolledWindow * scroll;
42 GtkTreeModel * tree_model;
49 GtkPopoverMenu * popover_menu;
50} PortConnectionsTreeWidget;
61PortConnectionsTreeWidget *
Must ONLY be created via port_new()