mirror of https://github.com/GNOME/gimp.git
app: add a boolean model column which sets the sensitivity of the text renderer
I'm not entirely happy with this, but it's just 4 lines of code and is easily remove again.
This commit is contained in:
parent
3facba67d4
commit
3a0557afe8
|
@ -165,6 +165,7 @@ gimp_container_tree_view_init (GimpContainerTreeView *tree_view)
|
|||
tree_view->model_columns[GIMP_CONTAINER_TREE_VIEW_COLUMN_RENDERER] = GIMP_TYPE_VIEW_RENDERER;
|
||||
tree_view->model_columns[GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME] = G_TYPE_STRING;
|
||||
tree_view->model_columns[GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME_ATTRIBUTES] = PANGO_TYPE_ATTR_LIST;
|
||||
tree_view->model_columns[GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME_SENSITIVE] = G_TYPE_BOOLEAN;
|
||||
tree_view->model_columns[GIMP_CONTAINER_TREE_VIEW_COLUMN_USER_DATA] = G_TYPE_POINTER;
|
||||
|
||||
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (box->scrolled_win),
|
||||
|
@ -236,6 +237,7 @@ gimp_container_tree_view_constructor (GType type,
|
|||
tree_view->priv->name_cell,
|
||||
"text", GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME,
|
||||
"attributes", GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME_ATTRIBUTES,
|
||||
"sensitive", GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME_SENSITIVE,
|
||||
NULL);
|
||||
|
||||
g_signal_connect (tree_view->priv->name_cell, "editing-canceled",
|
||||
|
@ -494,6 +496,7 @@ gimp_container_tree_view_set (GimpContainerTreeView *tree_view,
|
|||
gtk_tree_store_set (GTK_TREE_STORE (tree_view->model), iter,
|
||||
GIMP_CONTAINER_TREE_VIEW_COLUMN_RENDERER, renderer,
|
||||
GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME, name,
|
||||
GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME_SENSITIVE, TRUE,
|
||||
-1);
|
||||
|
||||
g_free (name);
|
||||
|
|
|
@ -30,6 +30,7 @@ enum
|
|||
GIMP_CONTAINER_TREE_VIEW_COLUMN_RENDERER,
|
||||
GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME,
|
||||
GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME_ATTRIBUTES,
|
||||
GIMP_CONTAINER_TREE_VIEW_COLUMN_NAME_SENSITIVE,
|
||||
GIMP_CONTAINER_TREE_VIEW_COLUMN_USER_DATA,
|
||||
GIMP_CONTAINER_TREE_VIEW_N_COLUMNS
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue