Compare commits
137 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 01bcd96d16 | |||
| 951773452a | |||
| d0af6f812d | |||
| b665a95558 | |||
| 799fb41937 | |||
| e6f4c596fa | |||
| 3d7fb26588 | |||
| 93f9b2d519 | |||
| 6f3613a06f | |||
| 3723778f42 | |||
| 3fc3f8d2ff | |||
| 2868f1b509 | |||
| f44570e71a | |||
| 15d39dddc5 | |||
| 1028449bcc | |||
| 01cca279f9 | |||
| a7cae4bffa | |||
| 3e2e29a1dc | |||
| de069e15c2 | |||
| f8edefd7c0 | |||
| 24a15b51fe | |||
| 1f7aba345d | |||
| 230212c59c | |||
| 86f7c19b91 | |||
| e5cea4e39d | |||
| 22aca8952f | |||
| c0e437d163 | |||
| ffe97a453f | |||
| c09ba28b06 | |||
| 81de43eba5 | |||
| 788be8b945 | |||
| 0370979225 | |||
| 943014074c | |||
| c0e8523a01 | |||
| 8374ebe4c4 | |||
| 611d14108d | |||
| 25cf702345 | |||
| 1d9c61cada | |||
| 71adb26a0d | |||
| e27fa33690 | |||
| f7dfead861 | |||
| aac04a0995 | |||
| 8af191e52d | |||
| 06382ff836 | |||
| cd469788c3 | |||
| 44b5076cf2 | |||
| e5be9e1035 | |||
| b831d01f0d | |||
| 278bcf2680 | |||
| c19d0dc9ea | |||
| edd5ed169e | |||
| 8ec9c3fdc6 | |||
| e95022040f | |||
| 3a2ce620e2 | |||
| df49bf9eec | |||
| 53327f3aea | |||
| c0c3d75062 | |||
| d0d0409f9d | |||
| 3a7d094542 | |||
| 280adcbb8c | |||
| 83431a999c | |||
| eeeee99aa8 | |||
| 0f503e0ba2 | |||
| 3e4ae62b44 | |||
| ec4f814bd4 | |||
| 0141ba4e00 | |||
| 52ef16c21b | |||
| 6ca7104015 | |||
| 07d6166ab8 | |||
| dc651c3dc3 | |||
| f520801626 | |||
| 4e3fbd0b0f | |||
| 8a24fdea38 | |||
| b26222b6ba | |||
| c8d291ab86 | |||
| 0a87438432 | |||
| ddf1cd6678 | |||
| 9c6d5e2ca5 | |||
| 1f2561b08e | |||
| d5b31a30fd | |||
| 39c678988d | |||
| 9052c191cb | |||
| 766f442636 | |||
| 27a3d2d09e | |||
| 3a3482e41e | |||
| 44c37fa34a | |||
| 5c41dbfaa5 | |||
| c9d2ff7a0f | |||
| 174af596c5 | |||
| de2624faa7 | |||
| cda784a5f4 | |||
| cc33dbef03 | |||
| ce36611c4e | |||
| 038cb31d27 | |||
| 3b53a6b0a9 | |||
| 619ff2338e | |||
| 2bcd6949df | |||
| abd78ce5f5 | |||
| 7899fc03c4 | |||
| 9984f00781 | |||
| a0d3bdc911 | |||
| b96317b872 | |||
| 6c84958b9f | |||
| f2559b1dbb | |||
| ed2ade4801 | |||
| 4549172825 | |||
| b877804eb6 | |||
| 5310abbcf7 | |||
| 490d4b0b9e | |||
| 375432f0b6 | |||
| c00a23ebbc | |||
| 4cd2e2a11f | |||
| ae7bf4dcf7 | |||
| 9ed1505073 | |||
| e040d3663e | |||
| 6af69a7b7d | |||
| a116e0dd26 | |||
| 3e2b962a36 | |||
| abb60ec579 | |||
| b738d4a6ac | |||
| 0149bd49ca | |||
| e05157437f | |||
| e045e798a2 | |||
| 7908a72fa9 | |||
| 593bf2bc6d | |||
| cf701d5db4 | |||
| bf8d4c5418 | |||
| 912145c81b | |||
| 913127b553 | |||
| 62f85e2f49 | |||
| 4b1212eb4a | |||
| 94a096ec4c | |||
| 404ee55ec4 | |||
| 5fbd52da49 | |||
| 7bf094c117 | |||
| 1894a8960e | |||
| 230188fb30 |
+41
-28
@@ -11,7 +11,6 @@
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
|
||||
G_DECLARE_FINAL_TYPE (CanvasItem, canvas_item, CANVAS, ITEM, GtkWidget)
|
||||
|
||||
@@ -26,6 +25,9 @@ struct _CanvasItem {
|
||||
double delta;
|
||||
|
||||
GtkWidget *editor;
|
||||
|
||||
GtkStyleProvider *provider;
|
||||
char *css_class;
|
||||
};
|
||||
|
||||
struct _CanvasItemClass {
|
||||
@@ -36,32 +38,41 @@ G_DEFINE_TYPE (CanvasItem, canvas_item, GTK_TYPE_WIDGET)
|
||||
|
||||
static int n_items = 0;
|
||||
|
||||
static void
|
||||
unstyle_item (CanvasItem *item)
|
||||
{
|
||||
if (item->provider)
|
||||
{
|
||||
gtk_style_context_remove_provider_for_display (gtk_widget_get_display (item->label), item->provider);
|
||||
g_clear_object (&item->provider);
|
||||
}
|
||||
|
||||
if (item->css_class)
|
||||
{
|
||||
gtk_widget_remove_css_class (item->label, item->css_class);
|
||||
g_clear_pointer (&item->css_class, g_free);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
set_color (CanvasItem *item,
|
||||
GdkRGBA *color)
|
||||
{
|
||||
char *css;
|
||||
char *str;
|
||||
GtkStyleContext *context;
|
||||
GtkCssProvider *provider;
|
||||
const char *old_class;
|
||||
const char *name;
|
||||
|
||||
unstyle_item (item);
|
||||
|
||||
str = gdk_rgba_to_string (color);
|
||||
css = g_strdup_printf ("* { background: %s; }", str);
|
||||
|
||||
context = gtk_widget_get_style_context (item->label);
|
||||
provider = g_object_get_data (G_OBJECT (context), "style-provider");
|
||||
if (provider)
|
||||
gtk_style_context_remove_provider (context, GTK_STYLE_PROVIDER (provider));
|
||||
|
||||
old_class = (const char *)g_object_get_data (G_OBJECT (item->label), "css-class");
|
||||
if (old_class)
|
||||
gtk_widget_remove_css_class (item->label, old_class);
|
||||
name = gtk_widget_get_name (item->label);
|
||||
css = g_strdup_printf ("#%s { background: %s; }", name, str);
|
||||
|
||||
provider = gtk_css_provider_new ();
|
||||
gtk_css_provider_load_from_data (provider, css, -1);
|
||||
gtk_style_context_add_provider (gtk_widget_get_style_context (item->label), GTK_STYLE_PROVIDER (provider), 800);
|
||||
g_object_set_data_full (G_OBJECT (context), "style-provider", provider, g_object_unref);
|
||||
gtk_style_context_add_provider_for_display (gtk_widget_get_display (item->label), GTK_STYLE_PROVIDER (provider), 700);
|
||||
item->provider = GTK_STYLE_PROVIDER (provider);
|
||||
|
||||
g_free (str);
|
||||
g_free (css);
|
||||
@@ -71,21 +82,10 @@ static void
|
||||
set_css (CanvasItem *item,
|
||||
const char *class)
|
||||
{
|
||||
GtkStyleContext *context;
|
||||
GtkCssProvider *provider;
|
||||
const char *old_class;
|
||||
unstyle_item (item);
|
||||
|
||||
context = gtk_widget_get_style_context (item->label);
|
||||
provider = g_object_get_data (G_OBJECT (context), "style-provider");
|
||||
if (provider)
|
||||
gtk_style_context_remove_provider (context, GTK_STYLE_PROVIDER (provider));
|
||||
|
||||
old_class = (const char *)g_object_get_data (G_OBJECT (item->label), "css-class");
|
||||
if (old_class)
|
||||
gtk_widget_remove_css_class (item->label, old_class);
|
||||
|
||||
g_object_set_data_full (G_OBJECT (item->label), "css-class", g_strdup (class), g_free);
|
||||
gtk_widget_add_css_class (item->label, class);
|
||||
item->css_class = g_strdup (class);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
@@ -724,6 +724,7 @@ do_dnd (GtkWidget *do_widget)
|
||||
int i;
|
||||
int x, y;
|
||||
GtkCssProvider *provider;
|
||||
GString *css;
|
||||
|
||||
button = gtk_color_button_new ();
|
||||
g_object_unref (g_object_ref_sink (button));
|
||||
@@ -735,6 +736,18 @@ do_dnd (GtkWidget *do_widget)
|
||||
800);
|
||||
g_object_unref (provider);
|
||||
|
||||
css = g_string_new ("");
|
||||
for (i = 0; colors[i]; i++)
|
||||
g_string_append_printf (css, ".canvasitem.%s { background: %s; }\n", colors[i], colors[i]);
|
||||
|
||||
provider = gtk_css_provider_new ();
|
||||
gtk_css_provider_load_from_data (provider, css->str, css->len);
|
||||
gtk_style_context_add_provider_for_display (gdk_display_get_default (),
|
||||
GTK_STYLE_PROVIDER (provider),
|
||||
800);
|
||||
g_object_unref (provider);
|
||||
g_string_free (css, TRUE);
|
||||
|
||||
window = gtk_window_new ();
|
||||
gtk_window_set_display (GTK_WINDOW (window),
|
||||
gtk_widget_get_display (do_widget));
|
||||
|
||||
+146
-88
@@ -21,7 +21,75 @@
|
||||
#include "script-names.h"
|
||||
#include "language-names.h"
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
/* {{{ ScriptLang object */
|
||||
|
||||
G_DECLARE_FINAL_TYPE (ScriptLang, script_lang, SCRIPT, LANG, GObject)
|
||||
|
||||
struct _ScriptLang
|
||||
{
|
||||
GObject parent;
|
||||
|
||||
char *langname;
|
||||
unsigned int script_index;
|
||||
unsigned int lang_index;
|
||||
hb_tag_t lang_tag;
|
||||
};
|
||||
|
||||
struct _ScriptLangClass
|
||||
{
|
||||
GObjectClass parent_class;
|
||||
};
|
||||
|
||||
G_DEFINE_TYPE (ScriptLang, script_lang, G_TYPE_OBJECT)
|
||||
|
||||
static void
|
||||
script_lang_init (ScriptLang *self)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
script_lang_finalize (GObject *object)
|
||||
{
|
||||
ScriptLang *self = SCRIPT_LANG (object);
|
||||
|
||||
g_free (self->langname);
|
||||
|
||||
G_OBJECT_CLASS (script_lang_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static void
|
||||
script_lang_class_init (ScriptLangClass *class)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
||||
|
||||
object_class->finalize = script_lang_finalize;
|
||||
}
|
||||
|
||||
static ScriptLang *
|
||||
script_lang_new (const char *langname,
|
||||
unsigned int script_index,
|
||||
unsigned int lang_index,
|
||||
hb_tag_t lang_tag)
|
||||
{
|
||||
ScriptLang *self;
|
||||
|
||||
self = g_object_new (script_lang_get_type (), NULL);
|
||||
|
||||
self->langname = g_strdup (langname);
|
||||
self->script_index = script_index;
|
||||
self->lang_index = lang_index;
|
||||
self->lang_tag = lang_tag;
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
static char *
|
||||
script_lang_get_langname (ScriptLang *self)
|
||||
{
|
||||
return g_strdup (self->langname);
|
||||
}
|
||||
|
||||
/* }}} */
|
||||
|
||||
#define MAKE_TAG(a,b,c,d) (unsigned int)(((a) << 24) | ((b) << 16) | ((c) << 8) | (d))
|
||||
|
||||
@@ -95,6 +163,10 @@ demo_free (gpointer data)
|
||||
g_clear_pointer (&demo->axes, g_hash_table_unref);
|
||||
g_clear_pointer (&demo->text, g_free);
|
||||
|
||||
gtk_style_context_remove_provider_for_display (gdk_display_get_default (),
|
||||
GTK_STYLE_PROVIDER (demo->provider));
|
||||
g_object_unref (demo->provider);
|
||||
|
||||
g_free (demo);
|
||||
}
|
||||
|
||||
@@ -472,8 +544,6 @@ update_display (void)
|
||||
GString *s;
|
||||
char *text;
|
||||
gboolean has_feature;
|
||||
GtkTreeIter iter;
|
||||
GtkTreeModel *model;
|
||||
PangoFontDescription *desc;
|
||||
GList *l;
|
||||
PangoAttrList *attrs;
|
||||
@@ -576,14 +646,13 @@ update_display (void)
|
||||
|
||||
features = g_string_free (s, FALSE);
|
||||
|
||||
if (gtk_combo_box_get_active_iter (GTK_COMBO_BOX (demo->script_lang), &iter))
|
||||
if (gtk_drop_down_get_selected (GTK_DROP_DOWN (demo->script_lang)) != 0)
|
||||
{
|
||||
hb_tag_t lang_tag;
|
||||
ScriptLang *selected;
|
||||
|
||||
model = gtk_combo_box_get_model (GTK_COMBO_BOX (demo->script_lang));
|
||||
gtk_tree_model_get (model, &iter, 3, &lang_tag, -1);
|
||||
selected = gtk_drop_down_get_selected_item (GTK_DROP_DOWN (demo->script_lang));
|
||||
|
||||
lang = pango_language_from_string (hb_language_to_string (hb_ot_tag_to_language (lang_tag)));
|
||||
lang = pango_language_from_string (hb_language_to_string (hb_ot_tag_to_language (selected->lang_tag)));
|
||||
}
|
||||
else
|
||||
lang = NULL;
|
||||
@@ -740,40 +809,30 @@ tag_pair_equal (gconstpointer a, gconstpointer b)
|
||||
return pair_a->script_tag == pair_b->script_tag && pair_a->lang_tag == pair_b->lang_tag;
|
||||
}
|
||||
|
||||
static int
|
||||
script_sort_func (GtkTreeModel *model,
|
||||
GtkTreeIter *a,
|
||||
GtkTreeIter *b,
|
||||
gpointer user_data)
|
||||
|
||||
static GtkOrdering
|
||||
script_sort (const void *item1,
|
||||
const void *item2,
|
||||
void *data)
|
||||
{
|
||||
char *sa, *sb;
|
||||
int ret;
|
||||
ScriptLang *a = (ScriptLang *)item1;
|
||||
ScriptLang *b = (ScriptLang *)item2;
|
||||
|
||||
gtk_tree_model_get (model, a, 0, &sa, -1);
|
||||
gtk_tree_model_get (model, b, 0, &sb, -1);
|
||||
|
||||
ret = strcmp (sa, sb);
|
||||
|
||||
g_free (sa);
|
||||
g_free (sb);
|
||||
|
||||
return ret;
|
||||
return strcmp (a->langname, b->langname);
|
||||
}
|
||||
|
||||
static void
|
||||
update_script_combo (void)
|
||||
{
|
||||
GtkListStore *store;
|
||||
GListStore *store;
|
||||
GtkSortListModel *sortmodel;
|
||||
hb_font_t *hb_font;
|
||||
int i, j, k;
|
||||
PangoFont *pango_font;
|
||||
GHashTable *tags;
|
||||
GHashTableIter iter;
|
||||
TagPair *pair;
|
||||
char *lang;
|
||||
hb_tag_t active;
|
||||
GtkTreeIter active_iter;
|
||||
gboolean have_active = FALSE;
|
||||
|
||||
lang = gtk_font_chooser_get_language (GTK_FONT_CHOOSER (demo->font));
|
||||
|
||||
@@ -783,7 +842,7 @@ update_script_combo (void)
|
||||
|
||||
g_free (lang);
|
||||
|
||||
store = gtk_list_store_new (4, G_TYPE_STRING, G_TYPE_UINT, G_TYPE_UINT, G_TYPE_UINT);
|
||||
store = g_list_store_new (script_lang_get_type ());
|
||||
|
||||
pango_font = get_pango_font ();
|
||||
hb_font = pango_font_get_hb_font (pango_font);
|
||||
@@ -807,19 +866,19 @@ update_script_combo (void)
|
||||
|
||||
hb_face = hb_font_get_face (hb_font);
|
||||
|
||||
for (i= 0; i < 2; i++)
|
||||
for (guint i = 0; i < 2; i++)
|
||||
{
|
||||
hb_tag_t scripts[80];
|
||||
unsigned int script_count = G_N_ELEMENTS (scripts);
|
||||
|
||||
hb_ot_layout_table_get_script_tags (hb_face, tables[i], 0, &script_count, scripts);
|
||||
for (j = 0; j < script_count; j++)
|
||||
for (guint j = 0; j < script_count; j++)
|
||||
{
|
||||
hb_tag_t languages[80];
|
||||
unsigned int language_count = G_N_ELEMENTS (languages);
|
||||
|
||||
hb_ot_layout_script_get_language_tags (hb_face, tables[i], j, 0, &language_count, languages);
|
||||
for (k = 0; k < language_count; k++)
|
||||
for (guint k = 0; k < language_count; k++)
|
||||
{
|
||||
pair = g_new (TagPair, 1);
|
||||
pair->script_tag = scripts[j];
|
||||
@@ -839,7 +898,6 @@ update_script_combo (void)
|
||||
{
|
||||
const char *langname;
|
||||
char langbuf[5];
|
||||
GtkTreeIter tree_iter;
|
||||
|
||||
if (pair->lang_tag == 0 && pair->script_tag == 0)
|
||||
langname = NC_("Language", "None");
|
||||
@@ -856,31 +914,31 @@ update_script_combo (void)
|
||||
}
|
||||
}
|
||||
|
||||
gtk_list_store_insert_with_values (store, &tree_iter, -1,
|
||||
0, langname,
|
||||
1, pair->script_index,
|
||||
2, pair->lang_index,
|
||||
3, pair->lang_tag,
|
||||
-1);
|
||||
if (pair->lang_tag == active)
|
||||
{
|
||||
have_active = TRUE;
|
||||
active_iter = tree_iter;
|
||||
}
|
||||
g_list_store_append (store, script_lang_new (langname,
|
||||
pair->script_index,
|
||||
pair->lang_index,
|
||||
pair->lang_tag));
|
||||
}
|
||||
|
||||
g_hash_table_destroy (tags);
|
||||
|
||||
gtk_tree_sortable_set_default_sort_func (GTK_TREE_SORTABLE (store),
|
||||
script_sort_func, NULL, NULL);
|
||||
gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
|
||||
GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID,
|
||||
GTK_SORT_ASCENDING);
|
||||
gtk_combo_box_set_model (GTK_COMBO_BOX (demo->script_lang), GTK_TREE_MODEL (store));
|
||||
if (have_active)
|
||||
gtk_combo_box_set_active_iter (GTK_COMBO_BOX (demo->script_lang), &active_iter);
|
||||
else
|
||||
gtk_combo_box_set_active_iter (GTK_COMBO_BOX (demo->script_lang), 0);
|
||||
sortmodel = gtk_sort_list_model_new (G_LIST_MODEL (store),
|
||||
GTK_SORTER (gtk_custom_sorter_new (script_sort, NULL, NULL)));
|
||||
gtk_drop_down_set_model (GTK_DROP_DOWN (demo->script_lang), G_LIST_MODEL (sortmodel));
|
||||
|
||||
for (guint i = 0; i < g_list_model_get_n_items (G_LIST_MODEL (sortmodel)); i++)
|
||||
{
|
||||
ScriptLang *item = g_list_model_get_item (G_LIST_MODEL (sortmodel), i);
|
||||
g_object_unref (item);
|
||||
|
||||
if (item->lang_tag == active)
|
||||
{
|
||||
gtk_drop_down_set_selected (GTK_DROP_DOWN (demo->script_lang), i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
g_object_unref (sortmodel);
|
||||
}
|
||||
|
||||
static char *
|
||||
@@ -905,27 +963,19 @@ static void
|
||||
update_features (void)
|
||||
{
|
||||
int i, j;
|
||||
GtkTreeModel *model;
|
||||
GtkTreeIter iter;
|
||||
guint script_index, lang_index;
|
||||
hb_tag_t lang_tag;
|
||||
PangoFont *pango_font;
|
||||
hb_font_t *hb_font;
|
||||
GList *l;
|
||||
ScriptLang *selected;
|
||||
|
||||
/* set feature presence checks from the font features */
|
||||
|
||||
if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX (demo->script_lang), &iter))
|
||||
if (gtk_drop_down_get_selected (GTK_DROP_DOWN (demo->script_lang)) == 0)
|
||||
return;
|
||||
|
||||
model = gtk_combo_box_get_model (GTK_COMBO_BOX (demo->script_lang));
|
||||
gtk_tree_model_get (model, &iter,
|
||||
1, &script_index,
|
||||
2, &lang_index,
|
||||
3, &lang_tag,
|
||||
-1);
|
||||
selected = gtk_drop_down_get_selected_item (GTK_DROP_DOWN (demo->script_lang));
|
||||
|
||||
if (lang_tag == 0) /* None is selected */
|
||||
if (selected->lang_tag == 0) /* None is selected */
|
||||
{
|
||||
for (l = demo->feature_items; l; l = l->next)
|
||||
{
|
||||
@@ -966,8 +1016,8 @@ update_features (void)
|
||||
|
||||
hb_ot_layout_language_get_feature_tags (hb_face,
|
||||
tables[i],
|
||||
script_index,
|
||||
lang_index,
|
||||
selected->script_index,
|
||||
selected->lang_index,
|
||||
0,
|
||||
&count,
|
||||
features);
|
||||
@@ -989,8 +1039,8 @@ update_features (void)
|
||||
|
||||
hb_ot_layout_language_find_feature (hb_face,
|
||||
tables[i],
|
||||
script_index,
|
||||
lang_index,
|
||||
selected->script_index,
|
||||
selected->lang_index,
|
||||
features[j],
|
||||
&feature_index);
|
||||
|
||||
@@ -1322,10 +1372,9 @@ free_instance (gpointer data)
|
||||
}
|
||||
|
||||
static void
|
||||
add_instance (hb_face_t *face,
|
||||
unsigned int index,
|
||||
GtkWidget *combo,
|
||||
int pos)
|
||||
add_instance (hb_face_t *face,
|
||||
unsigned int index,
|
||||
GtkStringList *strings)
|
||||
{
|
||||
Instance *instance;
|
||||
hb_ot_name_id_t name_id;
|
||||
@@ -1341,20 +1390,20 @@ add_instance (hb_face_t *face,
|
||||
instance->index = index;
|
||||
|
||||
g_hash_table_add (demo->instances, instance);
|
||||
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), instance->name);
|
||||
gtk_string_list_append (GTK_STRING_LIST (strings), instance->name);
|
||||
}
|
||||
|
||||
static void
|
||||
unset_instance (GtkAdjustment *adjustment)
|
||||
{
|
||||
if (demo->instance_combo)
|
||||
gtk_combo_box_set_active (GTK_COMBO_BOX (demo->instance_combo), 0);
|
||||
gtk_drop_down_set_selected (GTK_DROP_DOWN (demo->instance_combo), 0);
|
||||
}
|
||||
|
||||
static void
|
||||
instance_changed (GtkComboBox *combo)
|
||||
instance_changed (GtkDropDown *combo)
|
||||
{
|
||||
char *text;
|
||||
const char *text;
|
||||
Instance *instance;
|
||||
Instance ikey;
|
||||
int i;
|
||||
@@ -1366,11 +1415,12 @@ instance_changed (GtkComboBox *combo)
|
||||
hb_font_t *hb_font;
|
||||
hb_face_t *hb_face;
|
||||
|
||||
text = gtk_combo_box_text_get_active_text (GTK_COMBO_BOX_TEXT (combo));
|
||||
text = gtk_string_list_get_string (GTK_STRING_LIST (gtk_drop_down_get_model (combo)),
|
||||
gtk_drop_down_get_selected (combo));
|
||||
if (text[0] == '\0')
|
||||
goto out;
|
||||
|
||||
ikey.name = text;
|
||||
ikey.name = (char *) text;
|
||||
instance = g_hash_table_lookup (demo->instances, &ikey);
|
||||
if (!instance)
|
||||
{
|
||||
@@ -1411,7 +1461,6 @@ instance_changed (GtkComboBox *combo)
|
||||
}
|
||||
|
||||
out:
|
||||
g_free (text);
|
||||
g_clear_object (&pango_font);
|
||||
g_free (ai);
|
||||
g_free (coords);
|
||||
@@ -1521,6 +1570,7 @@ update_font_variations (void)
|
||||
{
|
||||
GtkWidget *label;
|
||||
GtkWidget *combo;
|
||||
GtkStringList *strings;
|
||||
|
||||
label = gtk_label_new ("Instance");
|
||||
gtk_label_set_xalign (GTK_LABEL (label), 0);
|
||||
@@ -1528,26 +1578,28 @@ update_font_variations (void)
|
||||
gtk_widget_set_valign (label, GTK_ALIGN_BASELINE);
|
||||
gtk_grid_attach (GTK_GRID (demo->variations_grid), label, 0, -1, 1, 1);
|
||||
|
||||
combo = gtk_combo_box_text_new ();
|
||||
strings = gtk_string_list_new (NULL);
|
||||
combo = gtk_drop_down_new (G_LIST_MODEL (strings), NULL);
|
||||
|
||||
gtk_widget_set_halign (combo, GTK_ALIGN_START);
|
||||
gtk_widget_set_valign (combo, GTK_ALIGN_BASELINE);
|
||||
|
||||
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "");
|
||||
gtk_string_list_append (strings, "");
|
||||
|
||||
for (i = 0; i < hb_ot_var_get_named_instance_count (hb_face); i++)
|
||||
add_instance (hb_face, i, combo, i);
|
||||
add_instance (hb_face, i, strings);
|
||||
|
||||
for (i = 0; i < hb_ot_var_get_named_instance_count (hb_face); i++)
|
||||
{
|
||||
if (matches_instance (hb_face, i, n_axes, design_coords))
|
||||
{
|
||||
gtk_combo_box_set_active (GTK_COMBO_BOX (combo), i + 1);
|
||||
gtk_drop_down_set_selected (GTK_DROP_DOWN (combo), i + 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
gtk_grid_attach (GTK_GRID (demo->variations_grid), combo, 1, -1, 3, 1);
|
||||
g_signal_connect (combo, "changed", G_CALLBACK (instance_changed), NULL);
|
||||
g_signal_connect (combo, "notify::selecte", G_CALLBACK (instance_changed), NULL);
|
||||
demo->instance_combo = combo;
|
||||
}
|
||||
|
||||
@@ -1694,6 +1746,7 @@ do_font_features (GtkWidget *do_widget)
|
||||
GtkBuilder *builder;
|
||||
GtkBuilderScope *scope;
|
||||
GtkEventController *controller;
|
||||
GtkExpression *expression;
|
||||
|
||||
builder = gtk_builder_new ();
|
||||
|
||||
@@ -1727,6 +1780,9 @@ do_font_features (GtkWidget *do_widget)
|
||||
demo->description = GTK_WIDGET (gtk_builder_get_object (builder, "description"));
|
||||
demo->font = GTK_WIDGET (gtk_builder_get_object (builder, "font"));
|
||||
demo->script_lang = GTK_WIDGET (gtk_builder_get_object (builder, "script_lang"));
|
||||
expression = gtk_cclosure_expression_new (G_TYPE_STRING, NULL, 0, NULL, G_CALLBACK (script_lang_get_langname), NULL, NULL);
|
||||
gtk_drop_down_set_expression (GTK_DROP_DOWN (demo->script_lang), expression);
|
||||
gtk_expression_unref (expression);
|
||||
demo->feature_list = GTK_WIDGET (gtk_builder_get_object (builder, "feature_list"));
|
||||
demo->stack = GTK_WIDGET (gtk_builder_get_object (builder, "stack"));
|
||||
demo->entry = GTK_WIDGET (gtk_builder_get_object (builder, "entry"));
|
||||
@@ -1745,8 +1801,8 @@ do_font_features (GtkWidget *do_widget)
|
||||
demo->swin = GTK_WIDGET (gtk_builder_get_object (builder, "swin"));
|
||||
|
||||
demo->provider = gtk_css_provider_new ();
|
||||
gtk_style_context_add_provider (gtk_widget_get_style_context (demo->swin),
|
||||
GTK_STYLE_PROVIDER (demo->provider), 800);
|
||||
gtk_style_context_add_provider_for_display (gdk_display_get_default (),
|
||||
GTK_STYLE_PROVIDER (demo->provider), 800);
|
||||
|
||||
basic_value_changed (demo->size_adjustment, demo->size_entry);
|
||||
basic_value_changed (demo->letterspacing_adjustment, demo->letterspacing_entry);
|
||||
@@ -1824,3 +1880,5 @@ do_font_features (GtkWidget *do_widget)
|
||||
|
||||
return window;
|
||||
}
|
||||
|
||||
/* vim:set foldmethod=marker expandtab: */
|
||||
|
||||
@@ -259,16 +259,10 @@
|
||||
<object class="GtkBox" id="feature_list">
|
||||
<property name="orientation">vertical</property>
|
||||
<child>
|
||||
<object class="GtkComboBox" id="script_lang">
|
||||
<object class="GtkDropDown" id="script_lang">
|
||||
<property name="tooltip-text" translatable="yes">Language System</property>
|
||||
<property name="margin-top">10</property>
|
||||
<signal name="changed" handler="font_features_script_changed" swapped="no"/>
|
||||
<child>
|
||||
<object class="GtkCellRendererText"/>
|
||||
<attributes>
|
||||
<attribute name="text">0</attribute>
|
||||
</attributes>
|
||||
</child>
|
||||
<signal name="notify::selected" handler="font_features_script_changed" swapped="no"/>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
|
||||
@@ -10,8 +10,6 @@
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
|
||||
static GtkWidget *window = NULL;
|
||||
static GtkWidget *font_button = NULL;
|
||||
static GtkWidget *entry = NULL;
|
||||
@@ -45,7 +43,6 @@ update_image (void)
|
||||
cairo_t *cr;
|
||||
GdkPixbuf *pixbuf;
|
||||
GdkPixbuf *pixbuf2;
|
||||
const char *hint;
|
||||
cairo_font_options_t *fopt;
|
||||
cairo_hint_style_t hintstyle;
|
||||
cairo_hint_metrics_t hintmetrics;
|
||||
@@ -60,18 +57,23 @@ update_image (void)
|
||||
|
||||
fopt = cairo_font_options_copy (pango_cairo_context_get_font_options (context));
|
||||
|
||||
hint = gtk_combo_box_get_active_id (GTK_COMBO_BOX (hinting));
|
||||
hintstyle = CAIRO_HINT_STYLE_DEFAULT;
|
||||
if (hint)
|
||||
switch (gtk_drop_down_get_selected (GTK_DROP_DOWN (hinting)))
|
||||
{
|
||||
if (strcmp (hint, "none") == 0)
|
||||
hintstyle = CAIRO_HINT_STYLE_NONE;
|
||||
else if (strcmp (hint, "slight") == 0)
|
||||
hintstyle = CAIRO_HINT_STYLE_SLIGHT;
|
||||
else if (strcmp (hint, "medium") == 0)
|
||||
hintstyle = CAIRO_HINT_STYLE_MEDIUM;
|
||||
else if (strcmp (hint, "full") == 0)
|
||||
hintstyle = CAIRO_HINT_STYLE_FULL;
|
||||
case 0:
|
||||
hintstyle = CAIRO_HINT_STYLE_NONE;
|
||||
break;
|
||||
case 1:
|
||||
hintstyle = CAIRO_HINT_STYLE_SLIGHT;
|
||||
break;
|
||||
case 2:
|
||||
hintstyle = CAIRO_HINT_STYLE_MEDIUM;
|
||||
break;
|
||||
case 3:
|
||||
hintstyle = CAIRO_HINT_STYLE_FULL;
|
||||
break;
|
||||
default:
|
||||
hintstyle = CAIRO_HINT_STYLE_DEFAULT;
|
||||
break;
|
||||
}
|
||||
cairo_font_options_set_hint_style (fopt, hintstyle);
|
||||
|
||||
@@ -420,7 +422,7 @@ do_fontrendering (GtkWidget *do_widget)
|
||||
g_signal_connect (down_button, "clicked", G_CALLBACK (scale_down), NULL);
|
||||
g_signal_connect (entry, "notify::text", G_CALLBACK (update_image), NULL);
|
||||
g_signal_connect (font_button, "notify::font-desc", G_CALLBACK (update_image), NULL);
|
||||
g_signal_connect (hinting, "notify::active", G_CALLBACK (update_image), NULL);
|
||||
g_signal_connect (hinting, "notify::selected", G_CALLBACK (update_image), NULL);
|
||||
g_signal_connect (anti_alias, "notify::active", G_CALLBACK (update_image), NULL);
|
||||
g_signal_connect (hint_metrics, "notify::active", G_CALLBACK (update_image), NULL);
|
||||
g_signal_connect (text_radio, "notify::active", G_CALLBACK (update_image), NULL);
|
||||
|
||||
@@ -116,15 +116,18 @@
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="hinting">
|
||||
<property name="active">0</property>
|
||||
<object class="GtkDropDown" id="hinting">
|
||||
<property name="valign">center</property>
|
||||
<items>
|
||||
<item translatable="yes" id="none">None</item>
|
||||
<item translatable="yes" id="slight">Slight</item>
|
||||
<item translatable="yes" id="medium">Medium</item>
|
||||
<item translatable="yes" id="full">Full</item>
|
||||
</items>
|
||||
<property name="model">
|
||||
<object class="GtkStringList">
|
||||
<items>
|
||||
<item translatable="yes">None</item>
|
||||
<item translatable="yes">Slight</item>
|
||||
<item translatable="yes">Medium</item>
|
||||
<item translatable="yes">Full</item>
|
||||
</items>
|
||||
</object>
|
||||
</property>
|
||||
</object>
|
||||
</child>
|
||||
<layout>
|
||||
|
||||
@@ -20,8 +20,6 @@
|
||||
#include "gtkshadertoy.h"
|
||||
#include "gskshaderpaintable.h"
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
|
||||
static GtkWidget *demo_window = NULL;
|
||||
|
||||
static void
|
||||
@@ -146,7 +144,6 @@ make_shader_stack (const char *name,
|
||||
GtkTextBuffer *buffer;
|
||||
GBytes *bytes;
|
||||
GtkEventController *controller;
|
||||
GtkCssProvider *provider;
|
||||
GdkPaintable *paintable;
|
||||
|
||||
stack = gtk_shader_stack_new ();
|
||||
@@ -237,12 +234,6 @@ make_shader_stack (const char *name,
|
||||
g_signal_connect (buffer, "changed", G_CALLBACK (text_changed), button);
|
||||
g_object_set_data (G_OBJECT (button), "the-stack", stack);
|
||||
g_signal_connect (button, "clicked", G_CALLBACK (apply_text), buffer);
|
||||
provider = gtk_css_provider_new ();
|
||||
gtk_css_provider_load_from_data (provider, "button.small { padding: 0; }", -1);
|
||||
gtk_style_context_add_provider (gtk_widget_get_style_context (button),
|
||||
GTK_STYLE_PROVIDER (provider),
|
||||
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
|
||||
g_object_unref (provider);
|
||||
gtk_widget_set_halign (button, GTK_ALIGN_CENTER);
|
||||
gtk_widget_set_valign (button, GTK_ALIGN_CENTER);
|
||||
gtk_widget_add_css_class (button, "small");
|
||||
@@ -276,11 +267,21 @@ make_shader_stack (const char *name,
|
||||
return vbox;
|
||||
}
|
||||
|
||||
static void
|
||||
remove_provider (gpointer data)
|
||||
{
|
||||
GtkStyleProvider *provider = GTK_STYLE_PROVIDER (data);
|
||||
|
||||
gtk_style_context_remove_provider_for_display (gdk_display_get_default (), provider);
|
||||
g_object_unref (provider);
|
||||
}
|
||||
|
||||
static GtkWidget *
|
||||
create_gltransition_window (GtkWidget *do_widget)
|
||||
{
|
||||
GtkWidget *window, *headerbar, *scale, *outer_grid, *grid, *background;
|
||||
GdkPaintable *paintable;
|
||||
GtkCssProvider *provider;
|
||||
|
||||
window = gtk_window_new ();
|
||||
gtk_window_set_display (GTK_WINDOW (window), gtk_widget_get_display (do_widget));
|
||||
@@ -335,6 +336,14 @@ create_gltransition_window (GtkWidget *do_widget)
|
||||
make_shader_stack ("Kaleidoscope", "/gltransition/kaleidoscope.glsl", 3, scale),
|
||||
1, 1, 1, 1);
|
||||
|
||||
provider = gtk_css_provider_new ();
|
||||
gtk_css_provider_load_from_data (provider, "button.small { padding: 0; }", -1);
|
||||
gtk_style_context_add_provider_for_display (gdk_display_get_default (),
|
||||
GTK_STYLE_PROVIDER (provider),
|
||||
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
|
||||
|
||||
g_object_set_data_full (G_OBJECT (window), "provider", provider, remove_provider);
|
||||
|
||||
return window;
|
||||
}
|
||||
|
||||
|
||||
@@ -422,6 +422,10 @@ do_listview_settings (GtkWidget *do_widget)
|
||||
gtk_column_view_column_set_sorter (name_column, sorter);
|
||||
g_object_unref (sorter);
|
||||
|
||||
sorter = GTK_SORTER (gtk_string_sorter_new (gtk_property_expression_new (SETTINGS_TYPE_KEY, NULL, "type")));
|
||||
gtk_column_view_column_set_sorter (type_column, sorter);
|
||||
g_object_unref (sorter);
|
||||
|
||||
g_object_unref (builder);
|
||||
}
|
||||
|
||||
|
||||
@@ -10,8 +10,6 @@
|
||||
#include "script-names.h"
|
||||
#include "unicode-names.h"
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
|
||||
#define UCD_TYPE_ITEM (ucd_item_get_type ())
|
||||
G_DECLARE_FINAL_TYPE (UcdItem, ucd_item, UCD, ITEM, GObject)
|
||||
|
||||
@@ -339,6 +337,15 @@ create_ucd_view (GtkWidget *label)
|
||||
|
||||
static GtkWidget *window;
|
||||
|
||||
static void
|
||||
remove_provider (gpointer data)
|
||||
{
|
||||
GtkStyleProvider *provider = GTK_STYLE_PROVIDER (data);
|
||||
|
||||
gtk_style_context_remove_provider_for_display (gdk_display_get_default (), provider);
|
||||
g_object_unref (provider);
|
||||
}
|
||||
|
||||
GtkWidget *
|
||||
do_listview_ucd (GtkWidget *do_widget)
|
||||
{
|
||||
@@ -361,7 +368,7 @@ do_listview_ucd (GtkWidget *do_widget)
|
||||
gtk_widget_add_css_class (label, "enormous");
|
||||
provider = gtk_css_provider_new ();
|
||||
gtk_css_provider_load_from_data (provider, "label.enormous { font-size: 80px; }", -1);
|
||||
gtk_style_context_add_provider (gtk_widget_get_style_context (label), GTK_STYLE_PROVIDER (provider), 800);
|
||||
gtk_style_context_add_provider_for_display (gdk_display_get_default (), GTK_STYLE_PROVIDER (provider), 800);
|
||||
gtk_widget_set_hexpand (label, TRUE);
|
||||
gtk_box_append (GTK_BOX (box), label);
|
||||
|
||||
@@ -371,6 +378,8 @@ do_listview_ucd (GtkWidget *do_widget)
|
||||
gtk_scrolled_window_set_child (GTK_SCROLLED_WINDOW (sw), listview);
|
||||
gtk_box_prepend (GTK_BOX (box), sw);
|
||||
gtk_window_set_child (GTK_WINDOW (window), box);
|
||||
|
||||
g_object_set_data_full (G_OBJECT (window), "provider", provider, remove_provider);
|
||||
}
|
||||
|
||||
if (!gtk_widget_get_visible (window))
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
#include "config.h"
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
|
||||
/* Create an object for the pegs that get moved around in the game.
|
||||
*
|
||||
@@ -361,6 +360,15 @@ drop_drop (GtkDropTarget *target,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
remove_provider (gpointer data)
|
||||
{
|
||||
GtkStyleProvider *provider = GTK_STYLE_PROVIDER (data);
|
||||
|
||||
gtk_style_context_remove_provider_for_display (gdk_display_get_default (), provider);
|
||||
g_object_unref (provider);
|
||||
}
|
||||
|
||||
static void
|
||||
create_board (GtkWidget *window)
|
||||
{
|
||||
@@ -377,6 +385,9 @@ create_board (GtkWidget *window)
|
||||
|
||||
provider = gtk_css_provider_new ();
|
||||
gtk_css_provider_load_from_data (provider, css, -1);
|
||||
gtk_style_context_add_provider_for_display (gdk_display_get_default (),
|
||||
GTK_STYLE_PROVIDER (provider),
|
||||
800);
|
||||
|
||||
grid = gtk_grid_new ();
|
||||
gtk_widget_set_halign (grid, GTK_ALIGN_CENTER);
|
||||
@@ -395,9 +406,6 @@ create_board (GtkWidget *window)
|
||||
continue;
|
||||
|
||||
image = gtk_image_new ();
|
||||
gtk_style_context_add_provider (gtk_widget_get_style_context (image),
|
||||
GTK_STYLE_PROVIDER (provider),
|
||||
800);
|
||||
gtk_widget_add_css_class (image, "solitaire-field");
|
||||
gtk_image_set_icon_size (GTK_IMAGE (image), GTK_ICON_SIZE_LARGE);
|
||||
if (x != 3 || y != 3)
|
||||
@@ -441,7 +449,7 @@ create_board (GtkWidget *window)
|
||||
}
|
||||
}
|
||||
|
||||
g_object_unref (provider);
|
||||
g_object_set_data_full (G_OBJECT (window), "provider", provider, remove_provider);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
@@ -16,7 +16,6 @@ enum {
|
||||
NUM_PROPERTIES
|
||||
};
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS;
|
||||
static void
|
||||
pixbuf_paintable_snapshot (GdkPaintable *paintable,
|
||||
GdkSnapshot *snapshot,
|
||||
@@ -37,7 +36,6 @@ pixbuf_paintable_snapshot (GdkPaintable *paintable,
|
||||
|
||||
g_object_unref (texture);
|
||||
}
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS;
|
||||
|
||||
static int
|
||||
pixbuf_paintable_get_intrinsic_width (GdkPaintable *paintable)
|
||||
|
||||
@@ -16,26 +16,6 @@
|
||||
#include <glib/gi18n.h>
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
|
||||
/* Convenience function to create a combo box holding a number of strings
|
||||
*/
|
||||
GtkWidget *
|
||||
create_combo_box (const char **strings)
|
||||
{
|
||||
GtkWidget *combo_box;
|
||||
const char **str;
|
||||
|
||||
combo_box = gtk_combo_box_text_new ();
|
||||
|
||||
for (str = strings; *str; str++)
|
||||
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo_box), *str);
|
||||
|
||||
gtk_combo_box_set_active (GTK_COMBO_BOX (combo_box), 0);
|
||||
|
||||
return combo_box;
|
||||
}
|
||||
|
||||
static void
|
||||
add_row (GtkGrid *table,
|
||||
int row,
|
||||
@@ -43,7 +23,7 @@ add_row (GtkGrid *table,
|
||||
const char *label_text,
|
||||
const char **options)
|
||||
{
|
||||
GtkWidget *combo_box;
|
||||
GtkWidget *dropdown;
|
||||
GtkWidget *label;
|
||||
|
||||
label = gtk_label_new_with_mnemonic (label_text);
|
||||
@@ -52,12 +32,12 @@ add_row (GtkGrid *table,
|
||||
gtk_widget_set_hexpand (label, TRUE);
|
||||
gtk_grid_attach (table, label, 0, row, 1, 1);
|
||||
|
||||
combo_box = create_combo_box (options);
|
||||
gtk_label_set_mnemonic_widget (GTK_LABEL (label), combo_box);
|
||||
gtk_widget_set_halign (combo_box, GTK_ALIGN_END);
|
||||
gtk_widget_set_valign (combo_box, GTK_ALIGN_BASELINE);
|
||||
gtk_size_group_add_widget (size_group, combo_box);
|
||||
gtk_grid_attach (table, combo_box, 1, row, 1, 1);
|
||||
dropdown = gtk_drop_down_new_from_strings (options);
|
||||
gtk_label_set_mnemonic_widget (GTK_LABEL (label), dropdown);
|
||||
gtk_widget_set_halign (dropdown, GTK_ALIGN_END);
|
||||
gtk_widget_set_valign (dropdown, GTK_ALIGN_BASELINE);
|
||||
gtk_size_group_add_widget (size_group, dropdown);
|
||||
gtk_grid_attach (table, dropdown, 1, row, 1, 1);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
@@ -11,7 +11,6 @@
|
||||
#include <stdlib.h> /* for exit() */
|
||||
#include "paintable.h"
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
|
||||
static void easter_egg_callback (GtkWidget *button, gpointer data);
|
||||
|
||||
@@ -431,11 +430,11 @@ attach_widgets (GtkTextView *text_view)
|
||||
}
|
||||
else if (i == 1)
|
||||
{
|
||||
widget = gtk_combo_box_text_new ();
|
||||
const char *options[] = {
|
||||
"Option 1", "Option 2", "Option 3", NULL
|
||||
};
|
||||
|
||||
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (widget), "Option 1");
|
||||
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (widget), "Option 2");
|
||||
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (widget), "Option 3");
|
||||
widget = gtk_drop_down_new_from_strings (options);
|
||||
}
|
||||
else if (i == 2)
|
||||
{
|
||||
|
||||
+11
-10
@@ -1,8 +1,6 @@
|
||||
#include <stdlib.h>
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
|
||||
typedef struct
|
||||
{
|
||||
GtkApplication parent_instance;
|
||||
@@ -352,7 +350,8 @@ quit_activated (GSimpleAction *action,
|
||||
}
|
||||
|
||||
static void
|
||||
combo_changed (GtkComboBox *combo,
|
||||
combo_changed (GtkDropDown *combo,
|
||||
GParamSpec *pspec,
|
||||
gpointer user_data)
|
||||
{
|
||||
GtkDialog *dialog = user_data;
|
||||
@@ -361,7 +360,7 @@ combo_changed (GtkComboBox *combo,
|
||||
char **accels;
|
||||
char *str;
|
||||
|
||||
action = gtk_combo_box_get_active_id (combo);
|
||||
action = gtk_string_object_get_string (GTK_STRING_OBJECT (gtk_drop_down_get_selected_item (combo)));
|
||||
|
||||
if (!action)
|
||||
return;
|
||||
@@ -390,7 +389,7 @@ response (GtkDialog *dialog,
|
||||
gpointer user_data)
|
||||
{
|
||||
GtkEntry *entry = g_object_get_data (user_data, "entry");
|
||||
GtkComboBox *combo = g_object_get_data (user_data, "combo");
|
||||
GtkDropDown *combo = g_object_get_data (user_data, "combo");
|
||||
const char *action;
|
||||
const char *str;
|
||||
char **accels;
|
||||
@@ -401,7 +400,7 @@ response (GtkDialog *dialog,
|
||||
return;
|
||||
}
|
||||
|
||||
action = gtk_combo_box_get_active_id (combo);
|
||||
action = gtk_string_object_get_string (GTK_STRING_OBJECT (gtk_drop_down_get_selected_item (combo)));
|
||||
|
||||
if (!action)
|
||||
return;
|
||||
@@ -426,6 +425,7 @@ edit_accels (GSimpleAction *action,
|
||||
char **actions;
|
||||
GtkWidget *dialog;
|
||||
int i;
|
||||
GtkStringList *strings;
|
||||
|
||||
dialog = gtk_dialog_new_with_buttons ("Accelerators",
|
||||
NULL,
|
||||
@@ -437,7 +437,8 @@ edit_accels (GSimpleAction *action,
|
||||
gtk_window_set_application (GTK_WINDOW (dialog), app);
|
||||
actions = gtk_application_list_action_descriptions (app);
|
||||
|
||||
combo = gtk_combo_box_text_new ();
|
||||
strings = gtk_string_list_new (NULL);
|
||||
combo = gtk_drop_down_new (G_LIST_MODEL (strings), NULL);
|
||||
g_object_set (gtk_dialog_get_content_area (GTK_DIALOG (dialog)),
|
||||
"margin-top", 10,
|
||||
"margin-bottom", 10,
|
||||
@@ -448,8 +449,8 @@ edit_accels (GSimpleAction *action,
|
||||
|
||||
gtk_box_append (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), combo);
|
||||
for (i = 0; actions[i]; i++)
|
||||
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), actions[i], actions[i]);
|
||||
g_signal_connect (combo, "changed", G_CALLBACK (combo_changed), dialog);
|
||||
gtk_string_list_append (strings, actions[i]);
|
||||
g_signal_connect (combo, "notify::selected", G_CALLBACK (combo_changed), dialog);
|
||||
|
||||
entry = gtk_entry_new ();
|
||||
gtk_widget_set_hexpand (entry, TRUE);
|
||||
@@ -460,7 +461,7 @@ edit_accels (GSimpleAction *action,
|
||||
g_object_set_data (G_OBJECT (dialog), "combo", combo);
|
||||
g_object_set_data (G_OBJECT (dialog), "entry", entry);
|
||||
|
||||
gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0);
|
||||
gtk_drop_down_set_selected (GTK_DROP_DOWN (combo), 0);
|
||||
|
||||
gtk_widget_show (dialog);
|
||||
}
|
||||
|
||||
@@ -203,7 +203,7 @@ gdk_wayland_keymap_get_entries_for_keycode (GdkKeymap *keymap,
|
||||
{
|
||||
const xkb_keysym_t *syms;
|
||||
int num_syms;
|
||||
num_syms = xkb_keymap_key_get_syms_by_level (xkb_keymap, hardware_keycode, layout, 0, &syms);
|
||||
num_syms = xkb_keymap_key_get_syms_by_level (xkb_keymap, hardware_keycode, layout, level, &syms);
|
||||
if (keys)
|
||||
{
|
||||
(*keys)[i].keycode = hardware_keycode;
|
||||
|
||||
@@ -41,6 +41,10 @@
|
||||
*
|
||||
* To obtain the application that has been selected in a `GtkAppChooser`,
|
||||
* use [method@Gtk.AppChooser.get_app_info].
|
||||
*
|
||||
* Deprecated: 4.10: The application selection widgets should be
|
||||
* implemented according to the design of each platform and/or
|
||||
* application requiring them.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
@@ -45,9 +45,13 @@
|
||||
* To track changes in the selected application, use the
|
||||
* [signal@Gtk.AppChooserButton::changed] signal.
|
||||
*
|
||||
* # CSS nodes
|
||||
* ## CSS nodes
|
||||
*
|
||||
* `GtkAppChooserButton` has a single CSS node with the name “appchooserbutton”.
|
||||
*
|
||||
* Deprecated: 4.10: The application selection widgets should be
|
||||
* implemented according to the design of each platform and/or
|
||||
* application requiring them.
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
|
||||
@@ -37,6 +37,10 @@
|
||||
*
|
||||
* To set the heading that is shown above the `GtkAppChooserWidget`,
|
||||
* use [method@Gtk.AppChooserDialog.set_heading].
|
||||
*
|
||||
* Deprecated: 4.10: The application selection widgets should be
|
||||
* implemented according to the design of each platform and/or
|
||||
* application requiring them.
|
||||
*/
|
||||
#include "config.h"
|
||||
|
||||
@@ -216,13 +220,13 @@ set_dialog_properties (GtkAppChooserDialog *self)
|
||||
else if (self->content_type)
|
||||
{
|
||||
/* Translators: %s is a file type description */
|
||||
subtitle = g_strdup_printf (_("Opening “%s” files."),
|
||||
subtitle = g_strdup_printf (_("Opening “%s” files."),
|
||||
unknown ? self->content_type : description);
|
||||
string = g_strdup_printf (_("No applications found for “%s” files"),
|
||||
unknown ? self->content_type : description);
|
||||
}
|
||||
|
||||
g_object_get (self, "use-header-bar", &use_header, NULL);
|
||||
g_object_get (self, "use-header-bar", &use_header, NULL);
|
||||
if (use_header)
|
||||
{
|
||||
GtkWidget *box, *label;
|
||||
@@ -494,7 +498,7 @@ static void
|
||||
gtk_app_chooser_dialog_dispose (GObject *object)
|
||||
{
|
||||
GtkAppChooserDialog *self = GTK_APP_CHOOSER_DIALOG (object);
|
||||
|
||||
|
||||
g_clear_object (&self->gfile);
|
||||
|
||||
self->dismissed = TRUE;
|
||||
|
||||
@@ -69,9 +69,13 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* [signal@Gtk.AppChooserWidget::application-selected] and
|
||||
* [signal@Gtk.AppChooserWidget::application-activated] signals.
|
||||
*
|
||||
* # CSS nodes
|
||||
* ## CSS nodes
|
||||
*
|
||||
* `GtkAppChooserWidget` has a single CSS node with name appchooser.
|
||||
*
|
||||
* Deprecated: 4.10: The application selection widgets should be
|
||||
* implemented according to the design of each platform and/or
|
||||
* application requiring them.
|
||||
*/
|
||||
|
||||
typedef struct _GtkAppChooserWidgetClass GtkAppChooserWidgetClass;
|
||||
@@ -312,7 +316,7 @@ gtk_app_chooser_sort_func (GtkTreeModel *model,
|
||||
retval = 1;
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
||||
/* the recommended one always wins */
|
||||
if (a_recommended && !b_recommended)
|
||||
{
|
||||
@@ -444,7 +448,7 @@ gtk_app_chooser_widget_add_section (GtkAppChooserWidget *self,
|
||||
retval = FALSE;
|
||||
heading_added = FALSE;
|
||||
bold_string = g_strdup_printf ("<b>%s</b>", heading_title);
|
||||
|
||||
|
||||
for (l = applications; l != NULL; l = l->next)
|
||||
{
|
||||
app = l->data;
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
* Usually users dont have to interact with the `GtkCellArea` directly
|
||||
* unless they are implementing a cell-layouting widget themselves.
|
||||
*
|
||||
* # Requesting area sizes
|
||||
* ## Requesting area sizes
|
||||
*
|
||||
* As outlined in
|
||||
* [GtkWidget’s geometry management section](class.Widget.html#height-for-width-geometry-management),
|
||||
@@ -186,7 +186,7 @@
|
||||
* values while more and more height is required for the row heights
|
||||
* that are calculated in the background.
|
||||
*
|
||||
* # Rendering Areas
|
||||
* ## Rendering Areas
|
||||
*
|
||||
* Once area sizes have been acquired at least for the rows in the
|
||||
* visible area of the layouting widget they can be rendered at
|
||||
@@ -227,7 +227,7 @@
|
||||
* would make sense to calculate the allocation for each row at
|
||||
* the time the widget is allocated using [func@Gtk.distribute_natural_allocation].
|
||||
*
|
||||
* # Handling Events and Driving Keyboard Focus
|
||||
* ## Handling Events and Driving Keyboard Focus
|
||||
*
|
||||
* Passing events to the area is as simple as handling events on any
|
||||
* normal widget and then passing them to the [method@Gtk.CellArea.event]
|
||||
@@ -316,7 +316,7 @@
|
||||
* Note that the layouting widget is responsible for matching the
|
||||
* `GtkDirectionType` values to the way it lays out its cells.
|
||||
*
|
||||
* # Cell Properties
|
||||
* ## Cell Properties
|
||||
*
|
||||
* The `GtkCellArea` introduces cell properties for `GtkCellRenderer`s.
|
||||
* This provides some general interfaces for defining the relationship
|
||||
@@ -335,6 +335,9 @@
|
||||
* [method@Gtk.CellArea.cell_set] or [method@Gtk.CellArea.cell_set_valist]. To obtain
|
||||
* the value of a cell property, use [method@Gtk.CellArea.cell_get_property]
|
||||
* [method@Gtk.CellArea.cell_get] or [method@Gtk.CellArea.cell_get_valist].
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets for displaying their
|
||||
* contents
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
@@ -42,6 +42,9 @@
|
||||
* configured by configuring the `GtkCellAreaBox` align child cell property
|
||||
* with gtk_cell_area_cell_set_property() or by specifying the "align"
|
||||
* argument to gtk_cell_area_box_pack_start() and gtk_cell_area_box_pack_end().
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets for displaying their
|
||||
* contents
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
@@ -502,7 +505,7 @@ cell_groups_rebuild (GtkCellAreaBox *box)
|
||||
CellInfo *info = l->data;
|
||||
|
||||
/* A new group starts with any aligned cell, or
|
||||
* at the beginning and end of a fixed size cell.
|
||||
* at the beginning and end of a fixed size cell.
|
||||
* the first group is implied */
|
||||
if ((info->align || info->fixed || last_cell_fixed) && l != cells)
|
||||
{
|
||||
@@ -892,7 +895,7 @@ get_allocated_cells (GtkCellAreaBox *box,
|
||||
if (visible_cells == 0)
|
||||
continue;
|
||||
|
||||
/* If were not aligned, place the cell after the last cell
|
||||
/* If were not aligned, place the cell after the last cell
|
||||
* and eat up the extra space
|
||||
*/
|
||||
if (group->align)
|
||||
@@ -2086,7 +2089,7 @@ _gtk_cell_area_box_group_visible (GtkCellAreaBox *box,
|
||||
{
|
||||
GtkCellAreaBoxPrivate *priv = gtk_cell_area_box_get_instance_private (box);
|
||||
CellGroup *group;
|
||||
|
||||
|
||||
g_assert (group_idx >= 0 && group_idx < priv->groups->len);
|
||||
|
||||
group = &g_array_index (priv->groups, CellGroup, group_idx);
|
||||
|
||||
@@ -139,7 +139,7 @@ get_array (GtkCellAreaBoxContext *context,
|
||||
return array;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
static gboolean
|
||||
group_expands (GtkCellAreaBoxContext *context,
|
||||
int group_idx)
|
||||
{
|
||||
@@ -161,7 +161,7 @@ count_expand_groups (GtkCellAreaBoxContext *context)
|
||||
if (priv->expand[i])
|
||||
expand++;
|
||||
}
|
||||
|
||||
|
||||
return expand;
|
||||
}
|
||||
|
||||
@@ -182,7 +182,7 @@ _gtk_cell_area_box_context_init (GtkCellAreaBoxContext *box_context)
|
||||
NULL, (GDestroyNotify)free_cache_array);
|
||||
}
|
||||
|
||||
static void
|
||||
static void
|
||||
_gtk_cell_area_box_context_class_init (GtkCellAreaBoxContextClass *class)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
||||
@@ -267,11 +267,11 @@ _gtk_cell_area_box_context_sum (GtkCellAreaBoxContext *context,
|
||||
box_orientation = gtk_orientable_get_orientation (GTK_ORIENTABLE (area));
|
||||
array = get_array (context, orientation, for_size);
|
||||
|
||||
/* Get the last visible aligned group
|
||||
/* Get the last visible aligned group
|
||||
* (we need to get space at least up till this group) */
|
||||
for (i = array->len - 1; i >= 0; i--)
|
||||
{
|
||||
if (priv->align[i] &&
|
||||
if (priv->align[i] &&
|
||||
_gtk_cell_area_box_group_visible (area, i))
|
||||
break;
|
||||
}
|
||||
@@ -326,7 +326,7 @@ _gtk_cell_area_box_context_get_preferred_height_for_width (GtkCellAreaContext *c
|
||||
int *minimum_height,
|
||||
int *natural_height)
|
||||
{
|
||||
_gtk_cell_area_box_context_sum (GTK_CELL_AREA_BOX_CONTEXT (context), GTK_ORIENTATION_VERTICAL,
|
||||
_gtk_cell_area_box_context_sum (GTK_CELL_AREA_BOX_CONTEXT (context), GTK_ORIENTATION_VERTICAL,
|
||||
width, minimum_height, natural_height);
|
||||
}
|
||||
|
||||
@@ -336,7 +336,7 @@ _gtk_cell_area_box_context_get_preferred_width_for_height (GtkCellAreaContext *c
|
||||
int *minimum_width,
|
||||
int *natural_width)
|
||||
{
|
||||
_gtk_cell_area_box_context_sum (GTK_CELL_AREA_BOX_CONTEXT (context), GTK_ORIENTATION_HORIZONTAL,
|
||||
_gtk_cell_area_box_context_sum (GTK_CELL_AREA_BOX_CONTEXT (context), GTK_ORIENTATION_HORIZONTAL,
|
||||
height, minimum_width, natural_width);
|
||||
}
|
||||
|
||||
@@ -686,11 +686,11 @@ _gtk_cell_area_box_context_get_requests (GtkCellAreaBoxContext *box_context,
|
||||
int last_aligned_group_idx = 0;
|
||||
int i, j;
|
||||
|
||||
/* Get the last visible aligned group
|
||||
/* Get the last visible aligned group
|
||||
* (we need to get space at least up till this group) */
|
||||
for (i = priv->base_widths->len - 1; i >= 0; i--)
|
||||
{
|
||||
if (priv->align[i] &&
|
||||
if (priv->align[i] &&
|
||||
_gtk_cell_area_box_group_visible (area, i))
|
||||
break;
|
||||
}
|
||||
@@ -846,11 +846,11 @@ _gtk_cell_area_box_context_get_orientation_allocs (GtkCellAreaBoxContext *contex
|
||||
gtk_cell_area_context_get_allocation (ctx, &width, &height);
|
||||
|
||||
if (orientation == GTK_ORIENTATION_HORIZONTAL && width > 0)
|
||||
allocs = allocate_for_orientation (context, area, orientation,
|
||||
allocs = allocate_for_orientation (context, area, orientation,
|
||||
spacing, width, height,
|
||||
&alloc_count);
|
||||
else if (orientation == GTK_ORIENTATION_VERTICAL && height > 0)
|
||||
allocs = allocate_for_orientation (context, area, orientation,
|
||||
allocs = allocate_for_orientation (context, area, orientation,
|
||||
spacing, height, width,
|
||||
&alloc_count);
|
||||
|
||||
|
||||
@@ -23,6 +23,9 @@
|
||||
* The `GtkCellEditable` interface must be implemented for widgets to be usable
|
||||
* to edit the contents of a `GtkTreeView` cell. It provides a way to specify how
|
||||
* temporary widgets should be configured for editing, get the new value, etc.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets for displaying their
|
||||
* contents. See [iface@Gtk.Editable] for editable text widgets
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
* want to provide a `GtkTreeViewColumn` like API for packing cells,
|
||||
* setting attributes and data funcs.
|
||||
*
|
||||
* One of the notable features provided by implementations of
|
||||
* One of the notable features provided by implementations of
|
||||
* `GtkCellLayout` are attributes. Attributes let you set the properties
|
||||
* in flexible ways. They can just be set to constant values like regular
|
||||
* properties. But they can also be mapped to a column of the underlying
|
||||
@@ -34,7 +34,7 @@
|
||||
* gtk_cell_layout_set_cell_data_func() that is called to determine the
|
||||
* value of the attribute for each cell that is rendered.
|
||||
*
|
||||
* # GtkCellLayouts as GtkBuildable
|
||||
* ## GtkCellLayouts as GtkBuildable
|
||||
*
|
||||
* Implementations of GtkCellLayout which also implement the GtkBuildable
|
||||
* interface (`GtkCellView`, `GtkIconView`, `GtkComboBox`,
|
||||
@@ -78,7 +78,7 @@
|
||||
* </object>
|
||||
* ```
|
||||
*
|
||||
* # Subclassing GtkCellLayout implementations
|
||||
* ## Subclassing GtkCellLayout implementations
|
||||
*
|
||||
* When subclassing a widget that implements `GtkCellLayout` like
|
||||
* `GtkIconView` or `GtkComboBox`, there are some considerations related
|
||||
@@ -126,6 +126,9 @@
|
||||
* to support alternative cell areas, you can do so by moving the
|
||||
* problematic calls out of `init()` and into a `constructor()`
|
||||
* for your class.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets to display their contents.
|
||||
* See [class@Gtk.LayoutManager] for layout manager delegate objects
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
@@ -281,8 +284,8 @@ gtk_cell_layout_default_set_cell_data_func (GtkCellLayout *cell_layout,
|
||||
area = iface->get_area (cell_layout);
|
||||
|
||||
if (area)
|
||||
_gtk_cell_area_set_cell_data_func_with_proxy (area, cell,
|
||||
(GFunc)func, func_data, destroy,
|
||||
_gtk_cell_area_set_cell_data_func_with_proxy (area, cell,
|
||||
(GFunc)func, func_data, destroy,
|
||||
cell_layout);
|
||||
else
|
||||
warn_no_cell_area ("GtkCellLayoutIface->set_cell_data_func()");
|
||||
@@ -446,7 +449,7 @@ gtk_cell_layout_set_attributesv (GtkCellLayout *cell_layout,
|
||||
* @cell: a `GtkCellRenderer`
|
||||
* @...: a %NULL-terminated list of attributes
|
||||
*
|
||||
* Sets the attributes in the parameter list as the attributes
|
||||
* Sets the attributes in the parameter list as the attributes
|
||||
* of @cell_layout.
|
||||
*
|
||||
* See [method@Gtk.CellLayout.add_attribute] for more details.
|
||||
@@ -531,7 +534,7 @@ gtk_cell_layout_set_cell_data_func (GtkCellLayout *cell_layout,
|
||||
g_return_if_fail (GTK_IS_CELL_LAYOUT (cell_layout));
|
||||
g_return_if_fail (GTK_IS_CELL_RENDERER (cell));
|
||||
|
||||
GTK_CELL_LAYOUT_GET_IFACE
|
||||
GTK_CELL_LAYOUT_GET_IFACE
|
||||
(cell_layout)->set_cell_data_func (cell_layout, cell, func, func_data, destroy);
|
||||
}
|
||||
|
||||
@@ -619,7 +622,7 @@ gtk_cell_layout_get_area (GtkCellLayout *cell_layout)
|
||||
|
||||
g_return_val_if_fail (GTK_IS_CELL_LAYOUT (cell_layout), NULL);
|
||||
|
||||
iface = GTK_CELL_LAYOUT_GET_IFACE (cell_layout);
|
||||
iface = GTK_CELL_LAYOUT_GET_IFACE (cell_layout);
|
||||
if (iface->get_area)
|
||||
return iface->get_area (cell_layout);
|
||||
|
||||
|
||||
@@ -68,6 +68,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* corresponding “set” property, e.g. “cell-background-set” corresponds
|
||||
* to “cell-background”. These “set” properties reflect whether a property
|
||||
* has been set or not. You should not set them independently.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets for displaying their
|
||||
* contents
|
||||
*/
|
||||
|
||||
|
||||
@@ -213,7 +216,7 @@ gtk_cell_renderer_class_init (GtkCellRendererClass *class)
|
||||
*
|
||||
* This signal gets emitted when the user cancels the process of editing a
|
||||
* cell. For example, an editable cell renderer could be written to cancel
|
||||
* editing when the user presses Escape.
|
||||
* editing when the user presses Escape.
|
||||
*
|
||||
* See also: gtk_cell_renderer_stop_editing().
|
||||
*/
|
||||
@@ -251,12 +254,12 @@ gtk_cell_renderer_class_init (GtkCellRendererClass *class)
|
||||
* const char *path,
|
||||
* gpointer data)
|
||||
* {
|
||||
* if (GTK_IS_ENTRY (editable))
|
||||
* if (GTK_IS_ENTRY (editable))
|
||||
* {
|
||||
* GtkEntry *entry = GTK_ENTRY (editable);
|
||||
*
|
||||
*
|
||||
* // ... create a GtkEntryCompletion
|
||||
*
|
||||
*
|
||||
* gtk_entry_set_completion (entry, completion);
|
||||
* }
|
||||
* }
|
||||
@@ -628,7 +631,7 @@ set_cell_bg_color (GtkCellRenderer *cell,
|
||||
* @cell: a `GtkCellRenderer`
|
||||
* @snapshot: a `GtkSnapshot` to draw to
|
||||
* @widget: the widget owning @window
|
||||
* @background_area: entire cell area (including tree expanders and maybe
|
||||
* @background_area: entire cell area (including tree expanders and maybe
|
||||
* padding on the sides)
|
||||
* @cell_area: area normally rendered by a cell renderer
|
||||
* @flags: flags that affect rendering
|
||||
@@ -802,7 +805,7 @@ gtk_cell_renderer_start_editing (GtkCellRenderer *cell,
|
||||
|
||||
gtk_widget_add_css_class (GTK_WIDGET (editable), "cell");
|
||||
|
||||
g_signal_emit (cell,
|
||||
g_signal_emit (cell,
|
||||
cell_renderer_signals[EDITING_STARTED], 0,
|
||||
editable, path);
|
||||
|
||||
@@ -1196,7 +1199,7 @@ gtk_cell_renderer_real_get_preferred_size (GtkCellRenderer *cell,
|
||||
}
|
||||
}
|
||||
|
||||
static GtkSizeRequestMode
|
||||
static GtkSizeRequestMode
|
||||
gtk_cell_renderer_real_get_request_mode (GtkCellRenderer *cell)
|
||||
{
|
||||
/* By default cell renderers are height-for-width. */
|
||||
@@ -1209,7 +1212,7 @@ gtk_cell_renderer_real_get_preferred_width (GtkCellRenderer *cell,
|
||||
int *minimum_size,
|
||||
int *natural_size)
|
||||
{
|
||||
gtk_cell_renderer_real_get_preferred_size (cell, widget, GTK_ORIENTATION_HORIZONTAL,
|
||||
gtk_cell_renderer_real_get_preferred_size (cell, widget, GTK_ORIENTATION_HORIZONTAL,
|
||||
minimum_size, natural_size);
|
||||
}
|
||||
|
||||
@@ -1219,7 +1222,7 @@ gtk_cell_renderer_real_get_preferred_height (GtkCellRenderer *cell,
|
||||
int *minimum_size,
|
||||
int *natural_size)
|
||||
{
|
||||
gtk_cell_renderer_real_get_preferred_size (cell, widget, GTK_ORIENTATION_VERTICAL,
|
||||
gtk_cell_renderer_real_get_preferred_size (cell, widget, GTK_ORIENTATION_VERTICAL,
|
||||
minimum_size, natural_size);
|
||||
}
|
||||
|
||||
@@ -1268,35 +1271,35 @@ gtk_cell_renderer_real_get_aligned_area (GtkCellRenderer *cell,
|
||||
/* Trim up the aligned size */
|
||||
if (gtk_cell_renderer_get_request_mode (cell) == GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH)
|
||||
{
|
||||
gtk_cell_renderer_get_preferred_width (cell, widget,
|
||||
gtk_cell_renderer_get_preferred_width (cell, widget,
|
||||
NULL, &natural_size);
|
||||
|
||||
aligned_area->width = MIN (aligned_area->width, natural_size);
|
||||
|
||||
gtk_cell_renderer_get_preferred_height_for_width (cell, widget,
|
||||
aligned_area->width,
|
||||
gtk_cell_renderer_get_preferred_height_for_width (cell, widget,
|
||||
aligned_area->width,
|
||||
NULL, &opposite_size);
|
||||
|
||||
aligned_area->height = MIN (opposite_size, aligned_area->height);
|
||||
}
|
||||
else
|
||||
{
|
||||
gtk_cell_renderer_get_preferred_height (cell, widget,
|
||||
gtk_cell_renderer_get_preferred_height (cell, widget,
|
||||
NULL, &natural_size);
|
||||
|
||||
aligned_area->height = MIN (aligned_area->width, natural_size);
|
||||
|
||||
gtk_cell_renderer_get_preferred_width_for_height (cell, widget,
|
||||
aligned_area->height,
|
||||
gtk_cell_renderer_get_preferred_width_for_height (cell, widget,
|
||||
aligned_area->height,
|
||||
NULL, &opposite_size);
|
||||
|
||||
aligned_area->width = MIN (opposite_size, aligned_area->width);
|
||||
}
|
||||
|
||||
/* offset the cell position */
|
||||
_gtk_cell_renderer_calc_offset (cell, cell_area,
|
||||
_gtk_cell_renderer_calc_offset (cell, cell_area,
|
||||
gtk_widget_get_direction (widget),
|
||||
aligned_area->width,
|
||||
aligned_area->width,
|
||||
aligned_area->height,
|
||||
&x_offset, &y_offset);
|
||||
|
||||
@@ -1319,7 +1322,7 @@ _gtk_cell_renderer_calc_offset (GtkCellRenderer *cell,
|
||||
int height,
|
||||
int *x_offset,
|
||||
int *y_offset)
|
||||
{
|
||||
{
|
||||
GtkCellRendererPrivate *priv;
|
||||
|
||||
g_return_if_fail (GTK_IS_CELL_RENDERER (cell));
|
||||
@@ -1331,7 +1334,7 @@ _gtk_cell_renderer_calc_offset (GtkCellRenderer *cell,
|
||||
if (x_offset)
|
||||
{
|
||||
*x_offset = (((direction == GTK_TEXT_DIR_RTL) ?
|
||||
(1.0 - priv->xalign) : priv->xalign) *
|
||||
(1.0 - priv->xalign) : priv->xalign) *
|
||||
(cell_area->width - width));
|
||||
*x_offset = MAX (*x_offset, 0);
|
||||
}
|
||||
@@ -1403,8 +1406,8 @@ gtk_cell_renderer_get_preferred_width (GtkCellRenderer *cell,
|
||||
|
||||
#if DEBUG_CELL_SIZE_REQUEST
|
||||
g_message ("%s returning minimum width: %d and natural width: %d",
|
||||
G_OBJECT_TYPE_NAME (cell),
|
||||
minimum_size ? *minimum_size : 20000,
|
||||
G_OBJECT_TYPE_NAME (cell),
|
||||
minimum_size ? *minimum_size : 20000,
|
||||
natural_size ? *natural_size : 20000);
|
||||
#endif
|
||||
}
|
||||
@@ -1451,8 +1454,8 @@ gtk_cell_renderer_get_preferred_height (GtkCellRenderer *cell,
|
||||
|
||||
#if DEBUG_CELL_SIZE_REQUEST
|
||||
g_message ("%s returning minimum height: %d and natural height: %d",
|
||||
G_OBJECT_TYPE_NAME (cell),
|
||||
minimum_size ? *minimum_size : 20000,
|
||||
G_OBJECT_TYPE_NAME (cell),
|
||||
minimum_size ? *minimum_size : 20000,
|
||||
natural_size ? *natural_size : 20000);
|
||||
#endif
|
||||
}
|
||||
@@ -1466,7 +1469,7 @@ gtk_cell_renderer_get_preferred_height (GtkCellRenderer *cell,
|
||||
* @minimum_width: (out) (optional): location for storing the minimum size
|
||||
* @natural_width: (out) (optional): location for storing the preferred size
|
||||
*
|
||||
* Retrieves a cell renderers’s minimum and natural width if it were rendered to
|
||||
* Retrieves a cell renderers’s minimum and natural width if it were rendered to
|
||||
* @widget with the specified @height.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -1503,7 +1506,7 @@ gtk_cell_renderer_get_preferred_width_for_height (GtkCellRenderer *cell,
|
||||
#if DEBUG_CELL_SIZE_REQUEST
|
||||
g_message ("%s width for height: %d is minimum %d and natural: %d",
|
||||
G_OBJECT_TYPE_NAME (cell), height,
|
||||
minimum_width ? *minimum_width : 20000,
|
||||
minimum_width ? *minimum_width : 20000,
|
||||
natural_width ? *natural_width : 20000);
|
||||
#endif
|
||||
}
|
||||
@@ -1516,7 +1519,7 @@ gtk_cell_renderer_get_preferred_width_for_height (GtkCellRenderer *cell,
|
||||
* @minimum_height: (out) (optional): location for storing the minimum size
|
||||
* @natural_height: (out) (optional): location for storing the preferred size
|
||||
*
|
||||
* Retrieves a cell renderers’s minimum and natural height if it were rendered to
|
||||
* Retrieves a cell renderers’s minimum and natural height if it were rendered to
|
||||
* @widget with the specified @width.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -1553,7 +1556,7 @@ gtk_cell_renderer_get_preferred_height_for_width (GtkCellRenderer *cell,
|
||||
#if DEBUG_CELL_SIZE_REQUEST
|
||||
g_message ("%s height for width: %d is minimum %d and natural: %d",
|
||||
G_OBJECT_TYPE_NAME (cell), width,
|
||||
minimum_height ? *minimum_height : 20000,
|
||||
minimum_height ? *minimum_height : 20000,
|
||||
natural_height ? *natural_height : 20000);
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -41,6 +41,10 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* `GtkCellRendererAccel` displays a keyboard accelerator (i.e. a key
|
||||
* combination like `Control + a`). If the cell renderer is editable,
|
||||
* the accelerator can be changed by simply typing the new combination.
|
||||
*
|
||||
* Deprecated: 4.10: Applications editing keyboard accelerators should
|
||||
* provide their own implementation according to platform design
|
||||
* guidelines
|
||||
*/
|
||||
|
||||
|
||||
@@ -52,7 +56,7 @@ static void gtk_cell_renderer_accel_set_property (GObject *object,
|
||||
guint param_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec);
|
||||
static void gtk_cell_renderer_accel_get_preferred_width
|
||||
static void gtk_cell_renderer_accel_get_preferred_width
|
||||
(GtkCellRenderer *cell,
|
||||
GtkWidget *widget,
|
||||
int *minimum_size,
|
||||
@@ -177,7 +181,7 @@ gtk_cell_renderer_accel_class_init (GtkCellRendererAccelClass *cell_accel_class)
|
||||
G_MAXINT,
|
||||
0,
|
||||
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
||||
|
||||
|
||||
/**
|
||||
* GtkCellRendererAccel:accel-mods:
|
||||
*
|
||||
@@ -196,7 +200,7 @@ gtk_cell_renderer_accel_class_init (GtkCellRendererAccelClass *cell_accel_class)
|
||||
* The hardware keycode of the accelerator. Note that the hardware keycode is
|
||||
* only relevant if the key does not have a keyval. Normally, the keyboard
|
||||
* configuration should assign keyvals to all keys.
|
||||
*/
|
||||
*/
|
||||
g_object_class_install_property (object_class,
|
||||
PROP_KEYCODE,
|
||||
g_param_spec_uint ("keycode", NULL, NULL,
|
||||
@@ -219,7 +223,7 @@ gtk_cell_renderer_accel_class_init (GtkCellRendererAccelClass *cell_accel_class)
|
||||
GTK_TYPE_CELL_RENDERER_ACCEL_MODE,
|
||||
GTK_CELL_RENDERER_ACCEL_MODE_GTK,
|
||||
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
||||
|
||||
|
||||
/**
|
||||
* GtkCellRendererAccel::accel-edited:
|
||||
* @accel: the object reveiving the signal
|
||||
@@ -264,7 +268,7 @@ gtk_cell_renderer_accel_class_init (GtkCellRendererAccelClass *cell_accel_class)
|
||||
* gtk_cell_renderer_accel_new:
|
||||
*
|
||||
* Creates a new `GtkCellRendererAccel`.
|
||||
*
|
||||
*
|
||||
* Returns: the new cell renderer
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -288,7 +292,7 @@ convert_keysym_state_to_string (GtkCellRendererAccel *accel,
|
||||
* a disabled accelerator key combination.
|
||||
*/
|
||||
return g_strdup (C_("Accelerator", "Disabled"));
|
||||
else
|
||||
else
|
||||
{
|
||||
if (priv->accel_mode == GTK_CELL_RENDERER_ACCEL_MODE_GTK)
|
||||
{
|
||||
@@ -301,7 +305,7 @@ convert_keysym_state_to_string (GtkCellRendererAccel *accel,
|
||||
|
||||
return gtk_accelerator_get_label (keysym, mask);
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
char *name;
|
||||
|
||||
@@ -402,7 +406,7 @@ gtk_cell_renderer_accel_set_property (GObject *object,
|
||||
g_object_notify (object, "accel-mode");
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
|
||||
}
|
||||
@@ -537,7 +541,7 @@ key_controller_key_pressed (GtkEventControllerKey *key,
|
||||
event = gtk_event_controller_get_current_event (GTK_EVENT_CONTROLLER (key));
|
||||
if (!gdk_key_event_get_match (event, &accel_key, &accel_mods))
|
||||
return FALSE;
|
||||
|
||||
|
||||
if (accel_mods == 0)
|
||||
{
|
||||
switch (keyval)
|
||||
@@ -579,8 +583,8 @@ static void
|
||||
gtk_cell_editable_widget_unrealize (GtkWidget *widget)
|
||||
{
|
||||
gtk_grab_remove (widget);
|
||||
|
||||
GTK_WIDGET_CLASS (gtk_cell_editable_widget_parent_class)->unrealize (widget);
|
||||
|
||||
GTK_WIDGET_CLASS (gtk_cell_editable_widget_parent_class)->unrealize (widget);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
@@ -43,6 +43,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* box and sets it to display the column specified by its
|
||||
* `GtkCellRendererCombo`:text-column property. Further properties of the combo box
|
||||
* can be set in a handler for the `GtkCellRenderer::editing-started` signal.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets to display their contents. You
|
||||
* should use [class@Gtk.DropDown] instead
|
||||
*/
|
||||
|
||||
typedef struct _GtkCellRendererComboPrivate GtkCellRendererComboPrivate;
|
||||
@@ -125,7 +128,7 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
|
||||
/**
|
||||
* GtkCellRendererCombo:model:
|
||||
*
|
||||
* Holds a tree model containing the possible values for the combo box.
|
||||
* Holds a tree model containing the possible values for the combo box.
|
||||
* Use the text_column property to specify the column holding the values.
|
||||
*/
|
||||
g_object_class_install_property (object_class,
|
||||
@@ -137,14 +140,14 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
|
||||
/**
|
||||
* GtkCellRendererCombo:text-column:
|
||||
*
|
||||
* Specifies the model column which holds the possible values for the
|
||||
* combo box.
|
||||
* Specifies the model column which holds the possible values for the
|
||||
* combo box.
|
||||
*
|
||||
* Note that this refers to the model specified in the model property,
|
||||
* not the model backing the tree view to which
|
||||
* Note that this refers to the model specified in the model property,
|
||||
* not the model backing the tree view to which
|
||||
* this cell renderer is attached.
|
||||
*
|
||||
* `GtkCellRendererCombo` automatically adds a text cell renderer for
|
||||
*
|
||||
* `GtkCellRendererCombo` automatically adds a text cell renderer for
|
||||
* this column to its combo box.
|
||||
*/
|
||||
g_object_class_install_property (object_class,
|
||||
@@ -155,11 +158,11 @@ gtk_cell_renderer_combo_class_init (GtkCellRendererComboClass *klass)
|
||||
-1,
|
||||
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
||||
|
||||
/**
|
||||
/**
|
||||
* GtkCellRendererCombo:has-entry:
|
||||
*
|
||||
* If %TRUE, the cell renderer will include an entry and allow to enter
|
||||
* values other than the ones in the popup list.
|
||||
* If %TRUE, the cell renderer will include an entry and allow to enter
|
||||
* values other than the ones in the popup list.
|
||||
*/
|
||||
g_object_class_install_property (object_class,
|
||||
PROP_HAS_ENTRY,
|
||||
@@ -232,7 +235,7 @@ gtk_cell_renderer_combo_init (GtkCellRendererCombo *self)
|
||||
GtkCellRenderer *
|
||||
gtk_cell_renderer_combo_new (void)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_CELL_RENDERER_COMBO, NULL);
|
||||
return g_object_new (GTK_TYPE_CELL_RENDERER_COMBO, NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -240,13 +243,13 @@ gtk_cell_renderer_combo_finalize (GObject *object)
|
||||
{
|
||||
GtkCellRendererCombo *cell = GTK_CELL_RENDERER_COMBO (object);
|
||||
GtkCellRendererComboPrivate *priv = gtk_cell_renderer_combo_get_instance_private (cell);
|
||||
|
||||
|
||||
if (priv->model)
|
||||
{
|
||||
g_object_unref (priv->model);
|
||||
priv->model = NULL;
|
||||
}
|
||||
|
||||
|
||||
G_OBJECT_CLASS (gtk_cell_renderer_combo_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
@@ -263,7 +266,7 @@ gtk_cell_renderer_combo_get_property (GObject *object,
|
||||
{
|
||||
case PROP_MODEL:
|
||||
g_value_set_object (value, priv->model);
|
||||
break;
|
||||
break;
|
||||
case PROP_TEXT_COLUMN:
|
||||
g_value_set_int (value, priv->text_column);
|
||||
break;
|
||||
@@ -369,7 +372,7 @@ gtk_cell_renderer_combo_editing_done (GtkCellEditable *combo,
|
||||
entry = GTK_ENTRY (gtk_combo_box_get_child (GTK_COMBO_BOX (combo)));
|
||||
new_text = g_strdup (gtk_editable_get_text (GTK_EDITABLE (entry)));
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo));
|
||||
|
||||
@@ -395,17 +398,17 @@ gtk_cell_renderer_combo_focus_change (GtkWidget *widget,
|
||||
gtk_cell_renderer_combo_editing_done (GTK_CELL_EDITABLE (widget), data);
|
||||
}
|
||||
|
||||
typedef struct
|
||||
typedef struct
|
||||
{
|
||||
GtkCellRendererCombo *cell;
|
||||
gboolean found;
|
||||
GtkTreeIter iter;
|
||||
} SearchData;
|
||||
|
||||
static gboolean
|
||||
find_text (GtkTreeModel *model,
|
||||
GtkTreePath *path,
|
||||
GtkTreeIter *iter,
|
||||
static gboolean
|
||||
find_text (GtkTreeModel *model,
|
||||
GtkTreePath *path,
|
||||
GtkTreeIter *iter,
|
||||
gpointer data)
|
||||
{
|
||||
SearchData *search_data = (SearchData *)data;
|
||||
@@ -424,7 +427,7 @@ find_text (GtkTreeModel *model,
|
||||
|
||||
g_free (cell_text);
|
||||
g_free (text);
|
||||
|
||||
|
||||
return search_data->found;
|
||||
}
|
||||
|
||||
@@ -474,7 +477,7 @@ gtk_cell_renderer_combo_start_editing (GtkCellRenderer *cell,
|
||||
gtk_combo_box_set_model (GTK_COMBO_BOX (combo), priv->model);
|
||||
|
||||
gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), cell, TRUE);
|
||||
gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo),
|
||||
gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo),
|
||||
cell, "text", priv->text_column,
|
||||
NULL);
|
||||
|
||||
|
||||
@@ -48,6 +48,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* renders that pixbuf, if the `GtkCellRenderer:is-expanded` property is %FALSE
|
||||
* and the `GtkCellRendererPixbuf:pixbuf-expander-closed` property is set to a
|
||||
* pixbuf, it renders that one.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets to display their contents. You
|
||||
* should use [class@Gtk.Image] for icons, and [class@Gtk.Picture] for images
|
||||
*/
|
||||
|
||||
|
||||
@@ -321,13 +324,13 @@ take_image_definition (GtkCellRendererPixbuf *cellpixbuf,
|
||||
{
|
||||
GtkCellRendererPixbufPrivate *priv = gtk_cell_renderer_pixbuf_get_instance_private (cellpixbuf);
|
||||
GtkImageType old_storage_type, new_storage_type;
|
||||
|
||||
|
||||
if (def == NULL)
|
||||
def = gtk_image_definition_new_empty ();
|
||||
|
||||
old_storage_type = gtk_image_definition_get_storage_type (priv->image_def);
|
||||
new_storage_type = gtk_image_definition_get_storage_type (def);
|
||||
|
||||
|
||||
if (new_storage_type != old_storage_type)
|
||||
notify_storage_type (cellpixbuf, old_storage_type);
|
||||
|
||||
@@ -401,7 +404,7 @@ gtk_cell_renderer_pixbuf_set_property (GObject *object,
|
||||
|
||||
/**
|
||||
* gtk_cell_renderer_pixbuf_new:
|
||||
*
|
||||
*
|
||||
* Creates a new `GtkCellRendererPixbuf`. Adjust rendering
|
||||
* parameters using object properties. Object properties can be set
|
||||
* globally (with g_object_set()). Also, with `GtkTreeViewColumn`, you
|
||||
@@ -409,7 +412,7 @@ gtk_cell_renderer_pixbuf_set_property (GObject *object,
|
||||
* can bind the “pixbuf” property on the cell renderer to a pixbuf value
|
||||
* in the model, thus rendering a different image in each row of the
|
||||
* `GtkTreeView`.
|
||||
*
|
||||
*
|
||||
* Returns: the new cell renderer
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -469,7 +472,7 @@ gtk_cell_renderer_pixbuf_get_size (GtkCellRendererPixbuf *self,
|
||||
pixbuf_height = gdk_paintable_get_intrinsic_height (paintable);
|
||||
}
|
||||
else
|
||||
pixbuf_width = pixbuf_height = gtk_icon_helper_get_size (icon_helper);
|
||||
pixbuf_width = pixbuf_height = gtk_icon_helper_get_size (icon_helper);
|
||||
|
||||
g_object_unref (icon_helper);
|
||||
gtk_style_context_restore (context);
|
||||
@@ -488,7 +491,7 @@ gtk_cell_renderer_pixbuf_get_size (GtkCellRendererPixbuf *self,
|
||||
gtk_cell_renderer_get_padding (cell, &xpad, &ypad);
|
||||
calc_width = (int) xpad * 2 + pixbuf_width;
|
||||
calc_height = (int) ypad * 2 + pixbuf_height;
|
||||
|
||||
|
||||
if (cell_area && pixbuf_width > 0 && pixbuf_height > 0)
|
||||
{
|
||||
float xalign, yalign;
|
||||
@@ -516,7 +519,7 @@ gtk_cell_renderer_pixbuf_get_size (GtkCellRendererPixbuf *self,
|
||||
|
||||
if (width)
|
||||
*width = calc_width;
|
||||
|
||||
|
||||
if (height)
|
||||
*height = calc_height;
|
||||
}
|
||||
@@ -540,7 +543,7 @@ gtk_cell_renderer_pixbuf_snapshot (GtkCellRenderer *cell,
|
||||
|
||||
gtk_cell_renderer_pixbuf_get_size (cellpixbuf, widget,
|
||||
cell_area,
|
||||
&pix_rect.x,
|
||||
&pix_rect.x,
|
||||
&pix_rect.y,
|
||||
&pix_rect.width,
|
||||
&pix_rect.height);
|
||||
|
||||
@@ -42,6 +42,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
*
|
||||
* `GtkCellRendererProgress` renders a numeric value as a progress par in a cell.
|
||||
* Additionally, it can display a text on top of the progress bar.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets to display their contents.
|
||||
* You should use [class@Gtk.ProgressBar] instead
|
||||
*/
|
||||
|
||||
|
||||
|
||||
@@ -47,7 +47,8 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* of `GtkCellRendererSpin:digits` to display. Other `GtkSpinButton` properties
|
||||
* can be set in a handler for the `GtkCellRenderer::editing-started` signal.
|
||||
*
|
||||
* The `GtkCellRendererSpin` cell renderer was added in GTK 2.10.
|
||||
* Deprecated: 4.10: List views use widgets to display their contents.
|
||||
* You should use [class@Gtk.SpinButton] instead
|
||||
*/
|
||||
|
||||
typedef struct _GtkCellRendererSpinClass GtkCellRendererSpinClass;
|
||||
@@ -122,7 +123,7 @@ gtk_cell_renderer_spin_class_init (GtkCellRendererSpinClass *klass)
|
||||
/**
|
||||
* GtkCellRendererSpin:adjustment:
|
||||
*
|
||||
* The adjustment that holds the value of the spinbutton.
|
||||
* The adjustment that holds the value of the spinbutton.
|
||||
* This must be non-%NULL for the cell renderer to be editable.
|
||||
*/
|
||||
g_object_class_install_property (object_class,
|
||||
@@ -141,7 +142,7 @@ gtk_cell_renderer_spin_class_init (GtkCellRendererSpinClass *klass)
|
||||
PROP_CLIMB_RATE,
|
||||
g_param_spec_double ("climb-rate", NULL, NULL,
|
||||
0.0, G_MAXDOUBLE, 0.0,
|
||||
GTK_PARAM_READWRITE));
|
||||
GTK_PARAM_READWRITE));
|
||||
/**
|
||||
* GtkCellRendererSpin:digits:
|
||||
*
|
||||
@@ -151,7 +152,7 @@ gtk_cell_renderer_spin_class_init (GtkCellRendererSpinClass *klass)
|
||||
PROP_DIGITS,
|
||||
g_param_spec_uint ("digits", NULL, NULL,
|
||||
0, 20, 0,
|
||||
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
||||
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -366,7 +367,7 @@ gtk_cell_renderer_spin_start_editing (GtkCellRenderer *cell,
|
||||
/**
|
||||
* gtk_cell_renderer_spin_new:
|
||||
*
|
||||
* Creates a new `GtkCellRendererSpin`.
|
||||
* Creates a new `GtkCellRendererSpin`.
|
||||
*
|
||||
* Returns: a new `GtkCellRendererSpin`
|
||||
*
|
||||
|
||||
@@ -54,6 +54,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* at regular intervals. The usual way to set the cell renderer properties
|
||||
* for each cell is to bind them to columns in your tree model using e.g.
|
||||
* gtk_tree_view_column_add_attribute().
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets to display their contents.
|
||||
* You should use [class@Gtk.Spinner] instead
|
||||
*/
|
||||
|
||||
|
||||
|
||||
@@ -45,6 +45,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
*
|
||||
* If the `GtkCellRenderer:mode` is %GTK_CELL_RENDERER_MODE_EDITABLE,
|
||||
* the `GtkCellRendererText` allows to edit its text using an entry.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets to display their contents.
|
||||
* You should use [class@Gtk.Inscription] or [class@Gtk.Label] instead
|
||||
*/
|
||||
|
||||
|
||||
@@ -238,7 +241,7 @@ gtk_cell_renderer_text_class_init (GtkCellRendererTextClass *class)
|
||||
GtkCellRendererClass *cell_class = GTK_CELL_RENDERER_CLASS (class);
|
||||
|
||||
object_class->finalize = gtk_cell_renderer_text_finalize;
|
||||
|
||||
|
||||
object_class->get_property = gtk_cell_renderer_text_get_property;
|
||||
object_class->set_property = gtk_cell_renderer_text_set_property;
|
||||
|
||||
@@ -623,7 +626,7 @@ gtk_cell_renderer_text_get_property (GObject *object,
|
||||
case PROP_FONT:
|
||||
g_value_take_string (value, pango_font_description_to_string (priv->font));
|
||||
break;
|
||||
|
||||
|
||||
case PROP_FONT_DESC:
|
||||
g_value_set_boxed (value, priv->font);
|
||||
break;
|
||||
@@ -659,7 +662,7 @@ gtk_cell_renderer_text_get_property (GObject *object,
|
||||
case PROP_SCALE:
|
||||
g_value_set_double (value, priv->font_scale);
|
||||
break;
|
||||
|
||||
|
||||
case PROP_EDITABLE:
|
||||
g_value_set_boolean (value, priv->editable);
|
||||
break;
|
||||
@@ -674,7 +677,7 @@ gtk_cell_renderer_text_get_property (GObject *object,
|
||||
|
||||
case PROP_RISE:
|
||||
g_value_set_int (value, priv->rise);
|
||||
break;
|
||||
break;
|
||||
|
||||
case PROP_LANGUAGE:
|
||||
g_value_set_static_string (value, pango_language_to_string (priv->language));
|
||||
@@ -683,7 +686,7 @@ gtk_cell_renderer_text_get_property (GObject *object,
|
||||
case PROP_ELLIPSIZE:
|
||||
g_value_set_enum (value, priv->ellipsize);
|
||||
break;
|
||||
|
||||
|
||||
case PROP_WRAP_MODE:
|
||||
g_value_set_enum (value, priv->wrap_mode);
|
||||
break;
|
||||
@@ -691,7 +694,7 @@ gtk_cell_renderer_text_get_property (GObject *object,
|
||||
case PROP_WRAP_WIDTH:
|
||||
g_value_set_int (value, priv->wrap_width);
|
||||
break;
|
||||
|
||||
|
||||
case PROP_ALIGN:
|
||||
g_value_set_enum (value, priv->align);
|
||||
break;
|
||||
@@ -713,14 +716,14 @@ gtk_cell_renderer_text_get_property (GObject *object,
|
||||
{
|
||||
PangoFontMask mask = get_property_font_set_mask (param_id);
|
||||
g_value_set_boolean (value, (pango_font_description_get_set_fields (priv->font) & mask) != 0);
|
||||
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case PROP_SCALE_SET:
|
||||
g_value_set_boolean (value, priv->scale_set);
|
||||
break;
|
||||
|
||||
|
||||
case PROP_EDITABLE_SET:
|
||||
g_value_set_boolean (value, priv->editable_set);
|
||||
break;
|
||||
@@ -748,14 +751,14 @@ gtk_cell_renderer_text_get_property (GObject *object,
|
||||
case PROP_ALIGN_SET:
|
||||
g_value_set_boolean (value, priv->align_set);
|
||||
break;
|
||||
|
||||
|
||||
case PROP_WIDTH_CHARS:
|
||||
g_value_set_int (value, priv->width_chars);
|
||||
break;
|
||||
break;
|
||||
|
||||
case PROP_MAX_WIDTH_CHARS:
|
||||
g_value_set_int (value, priv->max_width_chars);
|
||||
break;
|
||||
break;
|
||||
|
||||
case PROP_PLACEHOLDER_TEXT:
|
||||
g_value_set_string (value, priv->placeholder_text);
|
||||
@@ -828,7 +831,7 @@ set_font_desc_fields (PangoFontDescription *desc,
|
||||
PangoFontMask to_set)
|
||||
{
|
||||
PangoFontMask changed_mask = 0;
|
||||
|
||||
|
||||
if (to_set & PANGO_FONT_MASK_FAMILY)
|
||||
{
|
||||
const char *family = pango_font_description_get_family (desc);
|
||||
@@ -856,7 +859,7 @@ set_font_desc_fields (PangoFontDescription *desc,
|
||||
size = 10 * PANGO_SCALE;
|
||||
changed_mask |= PANGO_FONT_MASK_SIZE;
|
||||
}
|
||||
|
||||
|
||||
pango_font_description_set_size (desc, size);
|
||||
}
|
||||
|
||||
@@ -1290,7 +1293,7 @@ gtk_cell_renderer_text_set_property (GObject *object,
|
||||
|
||||
/**
|
||||
* gtk_cell_renderer_text_new:
|
||||
*
|
||||
*
|
||||
* Creates a new `GtkCellRendererText`. Adjust how text is drawn using
|
||||
* object properties. Object properties can be
|
||||
* set globally (with g_object_set()). Also, with `GtkTreeViewColumn`,
|
||||
@@ -1298,7 +1301,7 @@ gtk_cell_renderer_text_set_property (GObject *object,
|
||||
* you can bind the “text” property on the cell renderer to a string
|
||||
* value in the model, thus rendering a different string in each row
|
||||
* of the `GtkTreeView`.
|
||||
*
|
||||
*
|
||||
* Returns: the new cell renderer
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -1324,7 +1327,7 @@ add_attr (PangoAttrList *attr_list,
|
||||
{
|
||||
attr->start_index = 0;
|
||||
attr->end_index = G_MAXINT;
|
||||
|
||||
|
||||
pango_attr_list_insert (attr_list, attr);
|
||||
}
|
||||
|
||||
@@ -1356,11 +1359,11 @@ get_layout (GtkCellRendererText *celltext,
|
||||
if (!placeholder_layout && cell_area)
|
||||
{
|
||||
/* Add options that affect appearance but not size */
|
||||
|
||||
|
||||
/* note that background doesn't go here, since it affects
|
||||
* background_area not the PangoLayout area
|
||||
*/
|
||||
|
||||
|
||||
if (priv->foreground_set
|
||||
&& (flags & GTK_CELL_RENDERER_SELECTED) == 0)
|
||||
{
|
||||
@@ -1497,7 +1500,7 @@ get_layout (GtkCellRendererText *celltext,
|
||||
|
||||
pango_layout_set_alignment (layout, align);
|
||||
}
|
||||
|
||||
|
||||
return layout;
|
||||
}
|
||||
|
||||
@@ -1554,7 +1557,7 @@ get_size (GtkCellRenderer *cell,
|
||||
gtk_cell_renderer_set_fixed_size (cell,
|
||||
cell_width, 2 * ypad +
|
||||
priv->fixed_height_rows * PANGO_PIXELS (row_height));
|
||||
|
||||
|
||||
if (height)
|
||||
{
|
||||
*height = cell_height;
|
||||
@@ -1731,7 +1734,7 @@ gtk_cell_renderer_text_start_editing (GtkCellRenderer *cell,
|
||||
if (priv->text)
|
||||
gtk_editable_set_text (GTK_EDITABLE (priv->entry), priv->text);
|
||||
g_object_set_data_full (G_OBJECT (priv->entry), I_(GTK_CELL_RENDERER_TEXT_PATH), g_strdup (path), g_free);
|
||||
|
||||
|
||||
gtk_editable_select_region (GTK_EDITABLE (priv->entry), 0, -1);
|
||||
|
||||
priv->in_entry_menu = FALSE;
|
||||
@@ -1754,7 +1757,7 @@ gtk_cell_renderer_text_start_editing (GtkCellRenderer *cell,
|
||||
* gtk_cell_renderer_text_set_fixed_height_from_font:
|
||||
* @renderer: A `GtkCellRendererText`
|
||||
* @number_of_rows: Number of rows of text each cell renderer is allocated, or -1
|
||||
*
|
||||
*
|
||||
* Sets the height of a renderer to explicitly be determined by the “font” and
|
||||
* “y_pad” property set on it. Further changes in these properties do not
|
||||
* affect the height, so they must be accompanied by a subsequent call to this
|
||||
@@ -1859,7 +1862,7 @@ gtk_cell_renderer_text_get_preferred_width (GtkCellRenderer *cell,
|
||||
if (priv->max_width_chars > 0)
|
||||
{
|
||||
int max_width = xpad * 2 + PANGO_PIXELS (char_width) * priv->max_width_chars;
|
||||
|
||||
|
||||
min_width = MIN (min_width, max_width);
|
||||
nat_width = MIN (nat_width, max_width);
|
||||
}
|
||||
@@ -1931,7 +1934,7 @@ gtk_cell_renderer_text_get_aligned_area (GtkCellRenderer *cell,
|
||||
int y_offset = 0;
|
||||
|
||||
layout = get_layout (celltext, widget, cell_area, flags);
|
||||
get_size (cell, widget, cell_area, layout, &x_offset, &y_offset,
|
||||
get_size (cell, widget, cell_area, layout, &x_offset, &y_offset,
|
||||
&aligned_area->width, &aligned_area->height);
|
||||
|
||||
aligned_area->x = cell_area->x + x_offset;
|
||||
|
||||
@@ -42,6 +42,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* button is drawn as a radio or a checkbutton, depending on the
|
||||
* `GtkCellRendererToggle:radio` property.
|
||||
* When activated, it emits the `GtkCellRendererToggle::toggled` signal.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets to display their contents.
|
||||
* You should use [class@Gtk.ToggleButton] instead
|
||||
*/
|
||||
|
||||
|
||||
@@ -190,7 +193,7 @@ gtk_cell_renderer_toggle_class_init (GtkCellRendererToggleClass *class)
|
||||
cell_class->get_preferred_height = gtk_cell_renderer_toggle_get_preferred_height;
|
||||
cell_class->snapshot = gtk_cell_renderer_toggle_snapshot;
|
||||
cell_class->activate = gtk_cell_renderer_toggle_activate;
|
||||
|
||||
|
||||
g_object_class_install_property (object_class,
|
||||
PROP_ACTIVE,
|
||||
g_param_spec_boolean ("active", NULL, NULL,
|
||||
@@ -202,7 +205,7 @@ gtk_cell_renderer_toggle_class_init (GtkCellRendererToggleClass *class)
|
||||
g_param_spec_boolean ("inconsistent", NULL, NULL,
|
||||
FALSE,
|
||||
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
||||
|
||||
|
||||
g_object_class_install_property (object_class,
|
||||
PROP_ACTIVATABLE,
|
||||
g_param_spec_boolean ("activatable", NULL, NULL,
|
||||
@@ -215,14 +218,14 @@ gtk_cell_renderer_toggle_class_init (GtkCellRendererToggleClass *class)
|
||||
FALSE,
|
||||
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* GtkCellRendererToggle::toggled:
|
||||
* @cell_renderer: the object which received the signal
|
||||
* @path: string representation of `GtkTreePath` describing the
|
||||
* @path: string representation of `GtkTreePath` describing the
|
||||
* event location
|
||||
*
|
||||
* The ::toggled signal is emitted when the cell is toggled.
|
||||
* The ::toggled signal is emitted when the cell is toggled.
|
||||
*
|
||||
* It is the responsibility of the application to update the model
|
||||
* with the correct value to store at @path. Often this is simply the
|
||||
@@ -467,7 +470,7 @@ gtk_cell_renderer_toggle_snapshot (GtkCellRenderer *cell,
|
||||
|
||||
if (priv->inconsistent)
|
||||
state |= GTK_STATE_FLAG_INCONSISTENT;
|
||||
|
||||
|
||||
if (priv->active)
|
||||
state |= GTK_STATE_FLAG_CHECKED;
|
||||
|
||||
@@ -528,7 +531,7 @@ gtk_cell_renderer_toggle_activate (GtkCellRenderer *cell,
|
||||
* gtk_cell_renderer_toggle_set_radio:
|
||||
* @toggle: a `GtkCellRendererToggle`
|
||||
* @radio: %TRUE to make the toggle look like a radio button
|
||||
*
|
||||
*
|
||||
* If @radio is %TRUE, the cell renderer renders a radio toggle
|
||||
* (i.e. a toggle in a group of mutually-exclusive toggles).
|
||||
* If %FALSE, it renders a check toggle (a standalone boolean option).
|
||||
@@ -554,8 +557,8 @@ gtk_cell_renderer_toggle_set_radio (GtkCellRendererToggle *toggle,
|
||||
* gtk_cell_renderer_toggle_get_radio:
|
||||
* @toggle: a `GtkCellRendererToggle`
|
||||
*
|
||||
* Returns whether we’re rendering radio toggles rather than checkboxes.
|
||||
*
|
||||
* Returns whether we’re rendering radio toggles rather than checkboxes.
|
||||
*
|
||||
* Returns: %TRUE if we’re rendering radio toggles rather than checkboxes
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
|
||||
@@ -40,7 +40,7 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* A widget displaying a single row of a GtkTreeModel
|
||||
*
|
||||
* A `GtkCellView` displays a single row of a `GtkTreeModel` using a `GtkCellArea`
|
||||
* and `GtkCellAreaContext`. A `GtkCellAreaContext` can be provided to the
|
||||
* and `GtkCellAreaContext`. A `GtkCellAreaContext` can be provided to the
|
||||
* `GtkCellView` at construction time in order to keep the cellview in context
|
||||
* of a group of cell views, this ensures that the renderers displayed will
|
||||
* be properly aligned with each other (like the aligned cells in the menus
|
||||
@@ -53,9 +53,12 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* individual heights (left-to-right menus should be allocated vertically since
|
||||
* they all share the same height but may have variable widths).
|
||||
*
|
||||
* # CSS nodes
|
||||
* ## CSS nodes
|
||||
*
|
||||
* GtkCellView has a single CSS node with name cellview.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets to display their contents.
|
||||
* You can use [class@Gtk.Box] instead
|
||||
*/
|
||||
|
||||
static void gtk_cell_view_constructed (GObject *object);
|
||||
@@ -206,7 +209,7 @@ gtk_cell_view_class_init (GtkCellViewClass *klass)
|
||||
*
|
||||
* The `GtkCellArea` rendering cells
|
||||
*
|
||||
* If no area is specified when creating the cell view with gtk_cell_view_new_with_context()
|
||||
* If no area is specified when creating the cell view with gtk_cell_view_new_with_context()
|
||||
* a horizontally oriented `GtkCellArea`Box will be used.
|
||||
*
|
||||
* since 3.0
|
||||
@@ -524,19 +527,19 @@ gtk_cell_view_request_model (GtkCellView *cellview,
|
||||
if (orientation == GTK_ORIENTATION_HORIZONTAL)
|
||||
{
|
||||
if (for_size < 0)
|
||||
gtk_cell_area_get_preferred_width (priv->area, priv->context,
|
||||
gtk_cell_area_get_preferred_width (priv->area, priv->context,
|
||||
GTK_WIDGET (cellview), &min, &nat);
|
||||
else
|
||||
gtk_cell_area_get_preferred_width_for_height (priv->area, priv->context,
|
||||
gtk_cell_area_get_preferred_width_for_height (priv->area, priv->context,
|
||||
GTK_WIDGET (cellview), for_size, &min, &nat);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (for_size < 0)
|
||||
gtk_cell_area_get_preferred_height (priv->area, priv->context,
|
||||
gtk_cell_area_get_preferred_height (priv->area, priv->context,
|
||||
GTK_WIDGET (cellview), &min, &nat);
|
||||
else
|
||||
gtk_cell_area_get_preferred_height_for_width (priv->area, priv->context,
|
||||
gtk_cell_area_get_preferred_height_for_width (priv->area, priv->context,
|
||||
GTK_WIDGET (cellview), for_size, &min, &nat);
|
||||
}
|
||||
|
||||
@@ -550,7 +553,7 @@ gtk_cell_view_request_model (GtkCellView *cellview,
|
||||
}
|
||||
}
|
||||
|
||||
static GtkSizeRequestMode
|
||||
static GtkSizeRequestMode
|
||||
gtk_cell_view_get_request_mode (GtkWidget *widget)
|
||||
{
|
||||
GtkCellView *cellview = GTK_CELL_VIEW (widget);
|
||||
@@ -698,13 +701,13 @@ gtk_cell_view_set_cell_data (GtkCellView *cell_view)
|
||||
gtk_tree_model_get_iter (priv->model, &iter, path);
|
||||
gtk_tree_path_free (path);
|
||||
|
||||
gtk_cell_area_apply_attributes (priv->area,
|
||||
priv->model,
|
||||
gtk_cell_area_apply_attributes (priv->area,
|
||||
priv->model,
|
||||
&iter, FALSE, FALSE);
|
||||
|
||||
if (priv->draw_sensitive)
|
||||
{
|
||||
GList *l, *cells =
|
||||
GList *l, *cells =
|
||||
gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (priv->area));
|
||||
|
||||
for (l = cells; l; l = l->next)
|
||||
@@ -846,7 +849,7 @@ gtk_cell_view_new_with_context (GtkCellArea *area,
|
||||
g_return_val_if_fail (GTK_IS_CELL_AREA (area), NULL);
|
||||
g_return_val_if_fail (context == NULL || GTK_IS_CELL_AREA_CONTEXT (context), NULL);
|
||||
|
||||
return (GtkWidget *)g_object_new (GTK_TYPE_CELL_VIEW,
|
||||
return (GtkWidget *)g_object_new (GTK_TYPE_CELL_VIEW,
|
||||
"cell-area", area,
|
||||
"cell-area-context", context,
|
||||
NULL);
|
||||
@@ -955,7 +958,7 @@ gtk_cell_view_new_with_texture (GdkTexture *texture)
|
||||
* @renderer: one of the renderers of @cell_view
|
||||
* @property: the name of the property of @renderer to set
|
||||
* @value: the new value to set the property to
|
||||
*
|
||||
*
|
||||
* Sets a property of a cell renderer of @cell_view, and
|
||||
* makes sure the display of @cell_view is updated.
|
||||
*
|
||||
@@ -1012,7 +1015,7 @@ gtk_cell_view_set_model (GtkCellView *cell_view,
|
||||
{
|
||||
g_object_ref (priv->model);
|
||||
|
||||
priv->row_changed_id =
|
||||
priv->row_changed_id =
|
||||
g_signal_connect (priv->model, "row-changed",
|
||||
G_CALLBACK (row_changed_cb), cell_view);
|
||||
}
|
||||
@@ -1079,8 +1082,8 @@ gtk_cell_view_set_displayed_row (GtkCellView *cell_view,
|
||||
* gtk_cell_view_get_displayed_row:
|
||||
* @cell_view: a `GtkCellView`
|
||||
*
|
||||
* Returns a `GtkTreePath` referring to the currently
|
||||
* displayed row. If no row is currently displayed,
|
||||
* Returns a `GtkTreePath` referring to the currently
|
||||
* displayed row. If no row is currently displayed,
|
||||
* %NULL is returned.
|
||||
*
|
||||
* Returns: (nullable) (transfer full): the currently displayed row
|
||||
|
||||
@@ -104,9 +104,11 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* a button, both with the .combo class added. The button also contains another
|
||||
* node with name arrow.
|
||||
*
|
||||
* # Accessibility
|
||||
* ## Accessibility
|
||||
*
|
||||
* `GtkComboBox` uses the %GTK_ACCESSIBLE_ROLE_COMBO_BOX role.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown] instead
|
||||
*/
|
||||
|
||||
typedef struct
|
||||
@@ -1373,7 +1375,7 @@ gtk_combo_box_menu_popup (GtkComboBox *combo_box)
|
||||
*
|
||||
* Before calling this, @combo_box must be mapped, or nothing will happen.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_popup (GtkComboBox *combo_box)
|
||||
@@ -1396,7 +1398,7 @@ gtk_combo_box_popup (GtkComboBox *combo_box)
|
||||
* in GTK 4. However, it is retained in case similar functionality is added
|
||||
* back later.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_popup_for_device (GtkComboBox *combo_box,
|
||||
@@ -1447,7 +1449,7 @@ gtk_combo_box_real_popdown (GtkComboBox *combo_box)
|
||||
* This function is mostly intended for use by accessibility technologies;
|
||||
* applications should have little use for it.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_popdown (GtkComboBox *combo_box)
|
||||
@@ -1851,7 +1853,7 @@ gtk_combo_box_cell_layout_get_area (GtkCellLayout *cell_layout)
|
||||
*
|
||||
* Returns: A new `GtkComboBox`
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_combo_box_new (void)
|
||||
@@ -1866,11 +1868,11 @@ gtk_combo_box_new (void)
|
||||
*
|
||||
* In order to use a combo box with entry, you need to tell it
|
||||
* which column of the model contains the text for the entry
|
||||
* by calling [method@Gtk.ComboBox.set_entry_text_column].
|
||||
* by calling [method@Gtk.ComboBox.set_entry_text_column].
|
||||
*
|
||||
* Returns: A new `GtkComboBox`
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_combo_box_new_with_entry (void)
|
||||
@@ -1886,7 +1888,7 @@ gtk_combo_box_new_with_entry (void)
|
||||
*
|
||||
* Returns: A new `GtkComboBox`
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_combo_box_new_with_model (GtkTreeModel *model)
|
||||
@@ -1910,7 +1912,7 @@ gtk_combo_box_new_with_model (GtkTreeModel *model)
|
||||
*
|
||||
* Returns: A new `GtkComboBox`
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_combo_box_new_with_model_and_entry (GtkTreeModel *model)
|
||||
@@ -1935,7 +1937,7 @@ gtk_combo_box_new_with_model_and_entry (GtkTreeModel *model)
|
||||
* Returns: An integer which is the index of the currently active item,
|
||||
* or -1 if there’s no active item
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
int
|
||||
gtk_combo_box_get_active (GtkComboBox *combo_box)
|
||||
@@ -1967,7 +1969,7 @@ gtk_combo_box_get_active (GtkComboBox *combo_box)
|
||||
*
|
||||
* Sets the active item of @combo_box to be the item at @index.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_set_active (GtkComboBox *combo_box,
|
||||
@@ -2066,7 +2068,7 @@ gtk_combo_box_set_active_internal (GtkComboBox *combo_box,
|
||||
*
|
||||
* Returns: %TRUE if @iter was set, %FALSE otherwise
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
gboolean
|
||||
gtk_combo_box_get_active_iter (GtkComboBox *combo_box,
|
||||
@@ -2097,7 +2099,7 @@ gtk_combo_box_get_active_iter (GtkComboBox *combo_box,
|
||||
*
|
||||
* If @iter is %NULL, the active item is unset.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_set_active_iter (GtkComboBox *combo_box,
|
||||
@@ -2128,7 +2130,7 @@ gtk_combo_box_set_active_iter (GtkComboBox *combo_box,
|
||||
* call [method@Gtk.CellLayout.clear] yourself if you need to set up different
|
||||
* cell renderers for the new model.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_set_model (GtkComboBox *combo_box,
|
||||
@@ -2191,7 +2193,7 @@ out:
|
||||
* Returns: (nullable) (transfer none): A `GtkTreeModel` which was passed
|
||||
* during construction.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
GtkTreeModel *
|
||||
gtk_combo_box_get_model (GtkComboBox *combo_box)
|
||||
@@ -2550,7 +2552,7 @@ gtk_combo_box_start_editing (GtkCellEditable *cell_editable,
|
||||
* If @fixed is %TRUE, the popup's width is set to match the
|
||||
* allocated width of the combo box.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_set_popup_fixed_width (GtkComboBox *combo_box,
|
||||
@@ -2576,7 +2578,7 @@ gtk_combo_box_set_popup_fixed_width (GtkComboBox *combo_box,
|
||||
*
|
||||
* Returns: %TRUE if the popup uses a fixed width
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
gboolean
|
||||
gtk_combo_box_get_popup_fixed_width (GtkComboBox *combo_box)
|
||||
@@ -2596,7 +2598,7 @@ gtk_combo_box_get_popup_fixed_width (GtkComboBox *combo_box)
|
||||
*
|
||||
* Returns: (nullable): the current row separator function.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
GtkTreeViewRowSeparatorFunc
|
||||
gtk_combo_box_get_row_separator_func (GtkComboBox *combo_box)
|
||||
@@ -2621,7 +2623,7 @@ gtk_combo_box_get_row_separator_func (GtkComboBox *combo_box)
|
||||
* If the row separator function is %NULL, no separators are drawn.
|
||||
* This is the default value.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_set_row_separator_func (GtkComboBox *combo_box,
|
||||
@@ -2655,7 +2657,7 @@ gtk_combo_box_set_row_separator_func (GtkComboBox *combo_box,
|
||||
* Sets whether the dropdown button of the combo box should update
|
||||
* its sensitivity depending on the model contents.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_set_button_sensitivity (GtkComboBox *combo_box,
|
||||
@@ -2687,7 +2689,7 @@ gtk_combo_box_set_button_sensitivity (GtkComboBox *combo_box,
|
||||
* if it is only sensitive as long as the model has one item to
|
||||
* be selected.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
GtkSensitivityType
|
||||
gtk_combo_box_get_button_sensitivity (GtkComboBox *combo_box)
|
||||
@@ -2707,7 +2709,7 @@ gtk_combo_box_get_button_sensitivity (GtkComboBox *combo_box)
|
||||
*
|
||||
* Returns: whether there is an entry in @combo_box.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
gboolean
|
||||
gtk_combo_box_get_has_entry (GtkComboBox *combo_box)
|
||||
@@ -2725,9 +2727,9 @@ gtk_combo_box_get_has_entry (GtkComboBox *combo_box)
|
||||
* the internal entry
|
||||
*
|
||||
* Sets the model column which @combo_box should use to get strings
|
||||
* from to be @text_column.
|
||||
* from to be @text_column.
|
||||
*
|
||||
* For this column no separate
|
||||
* For this column no separate
|
||||
* [class@Gtk.CellRenderer] is needed.
|
||||
*
|
||||
* The column @text_column in the model of @combo_box must be of
|
||||
@@ -2736,7 +2738,7 @@ gtk_combo_box_get_has_entry (GtkComboBox *combo_box)
|
||||
* This is only relevant if @combo_box has been created with
|
||||
* [property@Gtk.ComboBox:has-entry] as %TRUE.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_set_entry_text_column (GtkComboBox *combo_box,
|
||||
@@ -2771,7 +2773,7 @@ gtk_combo_box_set_entry_text_column (GtkComboBox *combo_box,
|
||||
*
|
||||
* Returns: A column in the data source model of @combo_box.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
int
|
||||
gtk_combo_box_get_entry_text_column (GtkComboBox *combo_box)
|
||||
@@ -2849,7 +2851,7 @@ gtk_combo_box_buildable_get_internal_child (GtkBuildable *buildable,
|
||||
* The column @id_column in the model of @combo_box must be of type
|
||||
* %G_TYPE_STRING.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_set_id_column (GtkComboBox *combo_box,
|
||||
@@ -2880,7 +2882,7 @@ gtk_combo_box_set_id_column (GtkComboBox *combo_box,
|
||||
*
|
||||
* Returns: A column in the data source model of @combo_box.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
int
|
||||
gtk_combo_box_get_id_column (GtkComboBox *combo_box)
|
||||
@@ -2912,7 +2914,7 @@ gtk_combo_box_get_id_column (GtkComboBox *combo_box)
|
||||
*
|
||||
* Returns: (nullable): the ID of the active row
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
const char *
|
||||
gtk_combo_box_get_active_id (GtkComboBox *combo_box)
|
||||
@@ -2967,7 +2969,7 @@ gtk_combo_box_get_active_id (GtkComboBox *combo_box)
|
||||
* @active_id was given to unset the active row, the function
|
||||
* always returns %TRUE.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
gboolean
|
||||
gtk_combo_box_set_active_id (GtkComboBox *combo_box,
|
||||
@@ -3032,7 +3034,7 @@ gtk_combo_box_get_popup (GtkComboBox *combo_box)
|
||||
*
|
||||
* Sets the child widget of @combo_box.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_set_child (GtkComboBox *combo_box,
|
||||
@@ -3060,7 +3062,7 @@ gtk_combo_box_set_child (GtkComboBox *combo_box,
|
||||
*
|
||||
* Returns: (nullable) (transfer none): the child widget of @combo_box
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_combo_box_get_child (GtkComboBox *combo_box)
|
||||
|
||||
@@ -71,87 +71,87 @@ struct _GtkComboBoxClass
|
||||
/* construction */
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_combo_box_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
GtkWidget *gtk_combo_box_new (void);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
GtkWidget *gtk_combo_box_new_with_entry (void);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
GtkWidget *gtk_combo_box_new_with_model (GtkTreeModel *model);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
GtkWidget *gtk_combo_box_new_with_model_and_entry (GtkTreeModel *model);
|
||||
|
||||
/* get/set active item */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
int gtk_combo_box_get_active (GtkComboBox *combo_box);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_set_active (GtkComboBox *combo_box,
|
||||
int index_);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
gboolean gtk_combo_box_get_active_iter (GtkComboBox *combo_box,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_set_active_iter (GtkComboBox *combo_box,
|
||||
GtkTreeIter *iter);
|
||||
|
||||
/* getters and setters */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_set_model (GtkComboBox *combo_box,
|
||||
GtkTreeModel *model);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
GtkTreeModel *gtk_combo_box_get_model (GtkComboBox *combo_box);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
GtkTreeViewRowSeparatorFunc gtk_combo_box_get_row_separator_func (GtkComboBox *combo_box);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_set_row_separator_func (GtkComboBox *combo_box,
|
||||
GtkTreeViewRowSeparatorFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_set_button_sensitivity (GtkComboBox *combo_box,
|
||||
GtkSensitivityType sensitivity);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
GtkSensitivityType gtk_combo_box_get_button_sensitivity (GtkComboBox *combo_box);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
gboolean gtk_combo_box_get_has_entry (GtkComboBox *combo_box);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_set_entry_text_column (GtkComboBox *combo_box,
|
||||
int text_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
int gtk_combo_box_get_entry_text_column (GtkComboBox *combo_box);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_set_popup_fixed_width (GtkComboBox *combo_box,
|
||||
gboolean fixed);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
gboolean gtk_combo_box_get_popup_fixed_width (GtkComboBox *combo_box);
|
||||
|
||||
/* programmatic control */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_popup (GtkComboBox *combo_box);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_popup_for_device (GtkComboBox *combo_box,
|
||||
GdkDevice *device);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_popdown (GtkComboBox *combo_box);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
int gtk_combo_box_get_id_column (GtkComboBox *combo_box);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_set_id_column (GtkComboBox *combo_box,
|
||||
int id_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
const char * gtk_combo_box_get_active_id (GtkComboBox *combo_box);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
gboolean gtk_combo_box_set_active_id (GtkComboBox *combo_box,
|
||||
const char *active_id);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
void gtk_combo_box_set_child (GtkComboBox *combo_box,
|
||||
GtkWidget *child);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown)
|
||||
GtkWidget * gtk_combo_box_get_child (GtkComboBox *combo_box);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkComboBox, g_object_unref)
|
||||
|
||||
@@ -56,7 +56,7 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* You should not call [method@Gtk.ComboBox.set_model] or attempt to pack more
|
||||
* cells into this combo box via its [iface@Gtk.CellLayout] interface.
|
||||
*
|
||||
* # GtkComboBoxText as GtkBuildable
|
||||
* ## GtkComboBoxText as GtkBuildable
|
||||
*
|
||||
* The `GtkComboBoxText` implementation of the `GtkBuildable` interface supports
|
||||
* adding items directly using the <items> element and specifying <item>
|
||||
@@ -75,7 +75,7 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* </object>
|
||||
* ```
|
||||
*
|
||||
* # CSS nodes
|
||||
* ## CSS nodes
|
||||
*
|
||||
* ```
|
||||
* combobox
|
||||
@@ -88,6 +88,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* `GtkComboBoxText` has a single CSS node with name combobox. It adds
|
||||
* the style class .combo to the main CSS nodes of its entry and button
|
||||
* children, and the .linked class to the node of its internal box.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown] with a [class@Gtk.StringList]
|
||||
* instead
|
||||
*/
|
||||
|
||||
typedef struct _GtkComboBoxTextClass GtkComboBoxTextClass;
|
||||
@@ -353,7 +356,7 @@ gtk_combo_box_text_buildable_custom_finished (GtkBuildable *buildable,
|
||||
*
|
||||
* Returns: A new `GtkComboBoxText`
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_combo_box_text_new (void)
|
||||
@@ -369,7 +372,7 @@ gtk_combo_box_text_new (void)
|
||||
*
|
||||
* Returns: a new `GtkComboBoxText`
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_combo_box_text_new_with_entry (void)
|
||||
@@ -389,7 +392,7 @@ gtk_combo_box_text_new_with_entry (void)
|
||||
* This is the same as calling [method@Gtk.ComboBoxText.insert_text]
|
||||
* with a position of -1.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_text_append_text (GtkComboBoxText *combo_box,
|
||||
@@ -408,7 +411,7 @@ gtk_combo_box_text_append_text (GtkComboBoxText *combo_box,
|
||||
* This is the same as calling [method@Gtk.ComboBoxText.insert_text]
|
||||
* with a position of 0.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_text_prepend_text (GtkComboBoxText *combo_box,
|
||||
@@ -430,7 +433,7 @@ gtk_combo_box_text_prepend_text (GtkComboBoxText *combo_box,
|
||||
* This is the same as calling [method@Gtk.ComboBoxText.insert]
|
||||
* with a %NULL ID string.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_text_insert_text (GtkComboBoxText *combo_box,
|
||||
@@ -453,7 +456,7 @@ gtk_combo_box_text_insert_text (GtkComboBoxText *combo_box,
|
||||
* This is the same as calling [method@Gtk.ComboBoxText.insert]
|
||||
* with a position of -1.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_text_append (GtkComboBoxText *combo_box,
|
||||
@@ -476,7 +479,7 @@ gtk_combo_box_text_append (GtkComboBoxText *combo_box,
|
||||
* This is the same as calling [method@Gtk.ComboBoxText.insert]
|
||||
* with a position of 0.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_text_prepend (GtkComboBoxText *combo_box,
|
||||
@@ -501,7 +504,7 @@ gtk_combo_box_text_prepend (GtkComboBoxText *combo_box,
|
||||
*
|
||||
* If @position is negative then @text is appended.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_text_insert (GtkComboBoxText *combo_box,
|
||||
@@ -554,7 +557,7 @@ gtk_combo_box_text_insert (GtkComboBoxText *combo_box,
|
||||
*
|
||||
* Removes the string at @position from @combo_box.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_text_remove (GtkComboBoxText *combo_box,
|
||||
@@ -581,7 +584,7 @@ gtk_combo_box_text_remove (GtkComboBoxText *combo_box,
|
||||
*
|
||||
* Removes all the text entries from the combo box.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
void
|
||||
gtk_combo_box_text_remove_all (GtkComboBoxText *combo_box)
|
||||
@@ -609,7 +612,7 @@ gtk_combo_box_text_remove_all (GtkComboBoxText *combo_box)
|
||||
* string containing the currently active text.
|
||||
* Must be freed with g_free().
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkDropDown
|
||||
* Deprecated: 4.10: Use [class@Gtk.DropDown]
|
||||
*/
|
||||
char *
|
||||
gtk_combo_box_text_get_active_text (GtkComboBoxText *combo_box)
|
||||
|
||||
@@ -35,38 +35,38 @@ typedef struct _GtkComboBoxText GtkComboBoxText;
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_combo_box_text_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
GtkWidget* gtk_combo_box_text_new (void);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
GtkWidget* gtk_combo_box_text_new_with_entry (void);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
void gtk_combo_box_text_append_text (GtkComboBoxText *combo_box,
|
||||
const char *text);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
void gtk_combo_box_text_insert_text (GtkComboBoxText *combo_box,
|
||||
int position,
|
||||
const char *text);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
void gtk_combo_box_text_prepend_text (GtkComboBoxText *combo_box,
|
||||
const char *text);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
void gtk_combo_box_text_remove (GtkComboBoxText *combo_box,
|
||||
int position);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
void gtk_combo_box_text_remove_all (GtkComboBoxText *combo_box);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
char *gtk_combo_box_text_get_active_text (GtkComboBoxText *combo_box);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
void gtk_combo_box_text_insert (GtkComboBoxText *combo_box,
|
||||
int position,
|
||||
const char *id,
|
||||
const char *text);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
void gtk_combo_box_text_append (GtkComboBoxText *combo_box,
|
||||
const char *id,
|
||||
const char *text);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropDown and GtkStringList)
|
||||
void gtk_combo_box_text_prepend (GtkComboBoxText *combo_box,
|
||||
const char *id,
|
||||
const char *text);
|
||||
|
||||
@@ -56,6 +56,8 @@
|
||||
* [method@Gtk.TreeModelFilter.get_model]. Don’t forget to use
|
||||
* [method@Gtk.TreeModelFilter.convert_iter_to_child_iter] to obtain a
|
||||
* matching iter.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
@@ -434,6 +436,7 @@ gtk_entry_completion_init (GtkEntryCompletion *completion)
|
||||
completion->inline_selection = FALSE;
|
||||
|
||||
completion->filter_model = NULL;
|
||||
completion->insert_text_signal_group = NULL;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
@@ -1382,13 +1385,12 @@ gtk_entry_completion_insert_completion_text (GtkEntryCompletion *completion,
|
||||
{
|
||||
int len;
|
||||
GtkText *text = gtk_entry_get_text_widget (GTK_ENTRY (completion->entry));
|
||||
GtkEntryBuffer *buffer = gtk_text_get_buffer (text);
|
||||
|
||||
if (completion->changed_id > 0)
|
||||
g_signal_handler_block (text, completion->changed_id);
|
||||
|
||||
if (completion->insert_text_id > 0)
|
||||
g_signal_handler_block (buffer, completion->insert_text_id);
|
||||
if (completion->insert_text_signal_group != NULL)
|
||||
g_signal_group_block (completion->insert_text_signal_group);
|
||||
|
||||
gtk_editable_set_text (GTK_EDITABLE (completion->entry), new_text);
|
||||
|
||||
@@ -1398,8 +1400,8 @@ gtk_entry_completion_insert_completion_text (GtkEntryCompletion *completion,
|
||||
if (completion->changed_id > 0)
|
||||
g_signal_handler_unblock (text, completion->changed_id);
|
||||
|
||||
if (completion->insert_text_id > 0)
|
||||
g_signal_handler_unblock (buffer, completion->insert_text_id);
|
||||
if (completion->insert_text_signal_group != NULL)
|
||||
g_signal_group_unblock (completion->insert_text_signal_group);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
@@ -1438,11 +1440,9 @@ gtk_entry_completion_insert_prefix (GtkEntryCompletion *completion)
|
||||
|
||||
gboolean done;
|
||||
char *prefix;
|
||||
GtkText *text = gtk_entry_get_text_widget (GTK_ENTRY (completion->entry));
|
||||
GtkEntryBuffer *buffer = gtk_text_get_buffer (text);
|
||||
|
||||
if (completion->insert_text_id > 0)
|
||||
g_signal_handler_block (buffer, completion->insert_text_id);
|
||||
if (completion->insert_text_signal_group != NULL)
|
||||
g_signal_group_block (completion->insert_text_signal_group);
|
||||
|
||||
prefix = gtk_entry_completion_compute_prefix (completion,
|
||||
gtk_editable_get_text (GTK_EDITABLE (completion->entry)));
|
||||
@@ -1454,8 +1454,8 @@ gtk_entry_completion_insert_prefix (GtkEntryCompletion *completion)
|
||||
g_free (prefix);
|
||||
}
|
||||
|
||||
if (completion->insert_text_id > 0)
|
||||
g_signal_handler_unblock (buffer, completion->insert_text_id);
|
||||
if (completion->insert_text_signal_group != NULL)
|
||||
g_signal_group_unblock (completion->insert_text_signal_group);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -2028,7 +2028,7 @@ static gboolean
|
||||
check_completion_callback (GtkEntryCompletion *completion)
|
||||
{
|
||||
completion->check_completion_idle = NULL;
|
||||
|
||||
|
||||
gtk_entry_completion_complete (completion);
|
||||
gtk_entry_completion_insert_prefix (completion);
|
||||
|
||||
@@ -2096,7 +2096,6 @@ connect_completion_signals (GtkEntryCompletion *completion)
|
||||
{
|
||||
GtkEventController *controller;
|
||||
GtkText *text = gtk_entry_get_text_widget (GTK_ENTRY (completion->entry));
|
||||
GtkEntryBuffer *buffer = gtk_text_get_buffer (text);
|
||||
|
||||
controller = completion->entry_key_controller = gtk_event_controller_key_new ();
|
||||
gtk_event_controller_set_static_name (controller, "gtk-entry-completion");
|
||||
@@ -2111,8 +2110,10 @@ connect_completion_signals (GtkEntryCompletion *completion)
|
||||
completion->changed_id =
|
||||
g_signal_connect (text, "changed", G_CALLBACK (gtk_entry_completion_changed), completion);
|
||||
|
||||
completion->insert_text_id =
|
||||
g_signal_connect (buffer, "inserted-text", G_CALLBACK (completion_inserted_text_callback), completion);
|
||||
completion->insert_text_signal_group = g_signal_group_new (GTK_TYPE_ENTRY_BUFFER);
|
||||
g_signal_group_connect (completion->insert_text_signal_group, "inserted-text", G_CALLBACK (completion_inserted_text_callback), completion);
|
||||
g_object_bind_property (text, "buffer", completion->insert_text_signal_group, "target", G_BINDING_SYNC_CREATE);
|
||||
|
||||
g_signal_connect (text, "notify", G_CALLBACK (clear_completion_callback), completion);
|
||||
g_signal_connect_swapped (text, "activate", G_CALLBACK (accept_completion_callback), completion);
|
||||
}
|
||||
@@ -2121,7 +2122,6 @@ static void
|
||||
disconnect_completion_signals (GtkEntryCompletion *completion)
|
||||
{
|
||||
GtkText *text = gtk_entry_get_text_widget (GTK_ENTRY (completion->entry));
|
||||
GtkEntryBuffer *buffer = gtk_text_get_buffer (text);
|
||||
|
||||
gtk_widget_remove_controller (GTK_WIDGET (text), completion->entry_key_controller);
|
||||
gtk_widget_remove_controller (GTK_WIDGET (text), completion->entry_focus_controller);
|
||||
@@ -2132,12 +2132,9 @@ disconnect_completion_signals (GtkEntryCompletion *completion)
|
||||
g_signal_handler_disconnect (text, completion->changed_id);
|
||||
completion->changed_id = 0;
|
||||
}
|
||||
if (completion->insert_text_id > 0 &&
|
||||
g_signal_handler_is_connected (buffer, completion->insert_text_id))
|
||||
{
|
||||
g_signal_handler_disconnect (buffer, completion->insert_text_id);
|
||||
completion->insert_text_id = 0;
|
||||
}
|
||||
|
||||
g_clear_object (&completion->insert_text_signal_group);
|
||||
|
||||
g_signal_handlers_disconnect_by_func (text, G_CALLBACK (clear_completion_callback), completion);
|
||||
g_signal_handlers_disconnect_by_func (text, G_CALLBACK (accept_completion_callback), completion);
|
||||
}
|
||||
|
||||
+383
-381
File diff suppressed because it is too large
Load Diff
@@ -74,138 +74,138 @@ typedef enum
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_icon_view_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
GtkWidget * gtk_icon_view_new (void);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
GtkWidget * gtk_icon_view_new_with_area (GtkCellArea *area);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
GtkWidget * gtk_icon_view_new_with_model (GtkTreeModel *model);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_model (GtkIconView *icon_view,
|
||||
GtkTreeModel *model);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
GtkTreeModel * gtk_icon_view_get_model (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_text_column (GtkIconView *icon_view,
|
||||
int column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_text_column (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_markup_column (GtkIconView *icon_view,
|
||||
int column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_markup_column (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_pixbuf_column (GtkIconView *icon_view,
|
||||
int column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_pixbuf_column (GtkIconView *icon_view);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_item_orientation (GtkIconView *icon_view,
|
||||
GtkOrientation orientation);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
GtkOrientation gtk_icon_view_get_item_orientation (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_columns (GtkIconView *icon_view,
|
||||
int columns);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_columns (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_item_width (GtkIconView *icon_view,
|
||||
int item_width);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_item_width (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_spacing (GtkIconView *icon_view,
|
||||
int spacing);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_spacing (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_row_spacing (GtkIconView *icon_view,
|
||||
int row_spacing);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_row_spacing (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_column_spacing (GtkIconView *icon_view,
|
||||
int column_spacing);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_column_spacing (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_margin (GtkIconView *icon_view,
|
||||
int margin);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_margin (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_item_padding (GtkIconView *icon_view,
|
||||
int item_padding);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_item_padding (GtkIconView *icon_view);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
GtkTreePath * gtk_icon_view_get_path_at_pos (GtkIconView *icon_view,
|
||||
int x,
|
||||
int y);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
gboolean gtk_icon_view_get_item_at_pos (GtkIconView *icon_view,
|
||||
int x,
|
||||
int y,
|
||||
GtkTreePath **path,
|
||||
GtkCellRenderer **cell);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
gboolean gtk_icon_view_get_visible_range (GtkIconView *icon_view,
|
||||
GtkTreePath **start_path,
|
||||
GtkTreePath **end_path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_activate_on_single_click (GtkIconView *icon_view,
|
||||
gboolean single);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
gboolean gtk_icon_view_get_activate_on_single_click (GtkIconView *icon_view);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_selected_foreach (GtkIconView *icon_view,
|
||||
GtkIconViewForeachFunc func,
|
||||
gpointer data);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_selection_mode (GtkIconView *icon_view,
|
||||
GtkSelectionMode mode);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
GtkSelectionMode gtk_icon_view_get_selection_mode (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_select_path (GtkIconView *icon_view,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_unselect_path (GtkIconView *icon_view,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
gboolean gtk_icon_view_path_is_selected (GtkIconView *icon_view,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_item_row (GtkIconView *icon_view,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_item_column (GtkIconView *icon_view,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
GList *gtk_icon_view_get_selected_items (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_select_all (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_unselect_all (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_item_activated (GtkIconView *icon_view,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_cursor (GtkIconView *icon_view,
|
||||
GtkTreePath *path,
|
||||
GtkCellRenderer *cell,
|
||||
gboolean start_editing);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
gboolean gtk_icon_view_get_cursor (GtkIconView *icon_view,
|
||||
GtkTreePath **path,
|
||||
GtkCellRenderer **cell);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_scroll_to_path (GtkIconView *icon_view,
|
||||
GtkTreePath *path,
|
||||
gboolean use_align,
|
||||
@@ -213,62 +213,62 @@ void gtk_icon_view_scroll_to_path (GtkIconView *icon_
|
||||
float col_align);
|
||||
|
||||
/* Drag-and-Drop support */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_enable_model_drag_source (GtkIconView *icon_view,
|
||||
GdkModifierType start_button_mask,
|
||||
GdkContentFormats *formats,
|
||||
GdkDragAction actions);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_enable_model_drag_dest (GtkIconView *icon_view,
|
||||
GdkContentFormats *formats,
|
||||
GdkDragAction actions);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_unset_model_drag_source (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_unset_model_drag_dest (GtkIconView *icon_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_reorderable (GtkIconView *icon_view,
|
||||
gboolean reorderable);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
gboolean gtk_icon_view_get_reorderable (GtkIconView *icon_view);
|
||||
|
||||
|
||||
/* These are useful to implement your own custom stuff. */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_drag_dest_item (GtkIconView *icon_view,
|
||||
GtkTreePath *path,
|
||||
GtkIconViewDropPosition pos);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_get_drag_dest_item (GtkIconView *icon_view,
|
||||
GtkTreePath **path,
|
||||
GtkIconViewDropPosition *pos);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
gboolean gtk_icon_view_get_dest_item_at_pos (GtkIconView *icon_view,
|
||||
int drag_x,
|
||||
int drag_y,
|
||||
GtkTreePath **path,
|
||||
GtkIconViewDropPosition *pos);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
GdkPaintable *gtk_icon_view_create_drag_icon (GtkIconView *icon_view,
|
||||
GtkTreePath *path);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
gboolean gtk_icon_view_get_cell_rect (GtkIconView *icon_view,
|
||||
GtkTreePath *path,
|
||||
GtkCellRenderer *cell,
|
||||
GdkRectangle *rect);
|
||||
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_tooltip_item (GtkIconView *icon_view,
|
||||
GtkTooltip *tooltip,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_tooltip_cell (GtkIconView *icon_view,
|
||||
GtkTooltip *tooltip,
|
||||
GtkTreePath *path,
|
||||
GtkCellRenderer *cell);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
gboolean gtk_icon_view_get_tooltip_context (GtkIconView *icon_view,
|
||||
int x,
|
||||
int y,
|
||||
@@ -276,10 +276,10 @@ gboolean gtk_icon_view_get_tooltip_context (GtkIconView
|
||||
GtkTreeModel **model,
|
||||
GtkTreePath **path,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
void gtk_icon_view_set_tooltip_column (GtkIconView *icon_view,
|
||||
int column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkGridView)
|
||||
int gtk_icon_view_get_tooltip_column (GtkIconView *icon_view);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkIconView, g_object_unref)
|
||||
|
||||
@@ -104,7 +104,11 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* }
|
||||
* ```
|
||||
*
|
||||
* # Performance Considerations
|
||||
* `GtkListStore` is deprecated since GTK 4.10, and should not be used in newly
|
||||
* written code. You should use [class@Gio.ListStore] instead, and the various
|
||||
* list models provided by GTK.
|
||||
*
|
||||
* ## Performance Considerations
|
||||
*
|
||||
* Internally, the `GtkListStore` was originally implemented with a linked list
|
||||
* with a tail pointer. As a result, it was fast at data insertion and deletion,
|
||||
@@ -114,7 +118,7 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* often and your code is expected to run on older versions of GTK, it is worth
|
||||
* keeping the iter around.
|
||||
*
|
||||
* # Atomic Operations
|
||||
* ## Atomic Operations
|
||||
*
|
||||
* It is important to note that only the methods
|
||||
* gtk_list_store_insert_with_values() and gtk_list_store_insert_with_valuesv()
|
||||
@@ -131,7 +135,7 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* `GtkTreeModel`FilterVisibleFunc to be visited with an empty row first; the
|
||||
* function must be prepared for that.
|
||||
*
|
||||
* # GtkListStore as GtkBuildable
|
||||
* ## GtkListStore as GtkBuildable
|
||||
*
|
||||
* The GtkListStore implementation of the [iface@Gtk.Buildable] interface allows
|
||||
* to specify the model columns with a `<columns>` element that may contain
|
||||
@@ -171,6 +175,8 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* </data>
|
||||
* </object>
|
||||
* ```
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gio.ListStore] instead
|
||||
*/
|
||||
|
||||
|
||||
@@ -390,7 +396,7 @@ static gboolean
|
||||
iter_is_valid (GtkTreeIter *iter,
|
||||
GtkListStore *list_store)
|
||||
{
|
||||
return iter != NULL &&
|
||||
return iter != NULL &&
|
||||
iter->user_data != NULL &&
|
||||
list_store->priv->stamp == iter->stamp &&
|
||||
!g_sequence_iter_is_end (iter->user_data) &&
|
||||
@@ -402,17 +408,27 @@ iter_is_valid (GtkTreeIter *iter,
|
||||
* @n_columns: number of columns in the list store
|
||||
* @...: all `GType` types for the columns, from first to last
|
||||
*
|
||||
* Creates a new list store as with @n_columns columns each of the types passed
|
||||
* in. Note that only types derived from standard GObject fundamental types
|
||||
* Creates a new list store.
|
||||
*
|
||||
* The list store will have @n_columns columns, with each column using
|
||||
* the given type passed to this function.
|
||||
*
|
||||
*
|
||||
* Note that only types derived from standard GObject fundamental types
|
||||
* are supported.
|
||||
*
|
||||
* As an example, `gtk_list_store_new (3, G_TYPE_INT, G_TYPE_STRING,
|
||||
* GDK_TYPE_TEXTURE);` will create a new `GtkListStore` with three columns, of type
|
||||
* int, string and `GdkTexture`, respectively.
|
||||
* As an example:
|
||||
*
|
||||
* ```c
|
||||
* gtk_list_store_new (3, G_TYPE_INT, G_TYPE_STRING, GDK_TYPE_TEXTURE);
|
||||
* ```
|
||||
*
|
||||
* will create a new `GtkListStore` with three columns, of type `int`,
|
||||
* `gchararray` and `GdkTexture`, respectively.
|
||||
*
|
||||
* Returns: a new `GtkListStore`
|
||||
*
|
||||
* Deprecated: 4.10: Use list models
|
||||
* Deprecated: 4.10: Use [class@Gio.ListStore] instead
|
||||
*/
|
||||
GtkListStore *
|
||||
gtk_list_store_new (int n_columns,
|
||||
@@ -455,11 +471,13 @@ gtk_list_store_new (int n_columns,
|
||||
* @n_columns: number of columns in the list store
|
||||
* @types: (array length=n_columns): an array of `GType` types for the columns, from first to last
|
||||
*
|
||||
* Non-vararg creation function. Used primarily by language bindings.
|
||||
* Creates a new `GtkListStore`.
|
||||
*
|
||||
* This function is meant to be used by language bindings.
|
||||
*
|
||||
* Returns: (transfer full): a new `GtkListStore`
|
||||
*
|
||||
* Deprecated: 4.10: Use list models
|
||||
* Deprecated: 4.10: Use [class@Gio.ListStore] instead
|
||||
**/
|
||||
GtkListStore *
|
||||
gtk_list_store_newv (int n_columns,
|
||||
@@ -494,10 +512,14 @@ gtk_list_store_newv (int n_columns,
|
||||
* @n_columns: Number of columns for the list store
|
||||
* @types: (array length=n_columns): An array length n of `GType`s
|
||||
*
|
||||
* This function is meant primarily for `GObject`s that inherit from `GtkListStore`,
|
||||
* and should only be used when constructing a new `GtkListStore`. It will not
|
||||
* function after a row has been added, or a method on the `GtkTreeModel`
|
||||
* interface is called.
|
||||
* Sets the types of the columns of a list store.
|
||||
*
|
||||
* This function is meant primarily for objects that inherit
|
||||
* from `GtkListStore`, and should only be used when constructing
|
||||
* a new instance.
|
||||
*
|
||||
* This function cannot be called after a row has been added, or
|
||||
* a method on the `GtkTreeModel` interface is called.
|
||||
*
|
||||
* Deprecated: 4.10: Use list models
|
||||
**/
|
||||
@@ -661,10 +683,10 @@ gtk_list_store_get_path (GtkTreeModel *tree_model,
|
||||
|
||||
if (g_sequence_iter_is_end (iter->user_data))
|
||||
return NULL;
|
||||
|
||||
|
||||
path = gtk_tree_path_new ();
|
||||
gtk_tree_path_append_index (path, g_sequence_iter_get_position (iter->user_data));
|
||||
|
||||
|
||||
return path;
|
||||
}
|
||||
|
||||
@@ -681,7 +703,7 @@ gtk_list_store_get_value (GtkTreeModel *tree_model,
|
||||
|
||||
g_return_if_fail (column < priv->n_columns);
|
||||
g_return_if_fail (iter_is_valid (iter, list_store));
|
||||
|
||||
|
||||
list = g_sequence_get (iter->user_data);
|
||||
|
||||
while (tmp_column-- > 0 && list)
|
||||
@@ -998,8 +1020,8 @@ gtk_list_store_set_vector_internal (GtkListStore *list_store,
|
||||
|
||||
for (i = 0; i < n_values; i++)
|
||||
{
|
||||
*emit_signal = gtk_list_store_real_set_value (list_store,
|
||||
iter,
|
||||
*emit_signal = gtk_list_store_real_set_value (list_store,
|
||||
iter,
|
||||
columns[i],
|
||||
&values[i],
|
||||
FALSE) || *emit_signal;
|
||||
@@ -1057,7 +1079,7 @@ gtk_list_store_set_valist_internal (GtkListStore *list_store,
|
||||
column,
|
||||
&value,
|
||||
FALSE) || *emit_signal;
|
||||
|
||||
|
||||
if (func == _gtk_tree_data_list_compare_func &&
|
||||
column == priv->sort_column_id)
|
||||
*maybe_need_sort = TRUE;
|
||||
@@ -1078,7 +1100,7 @@ gtk_list_store_set_valist_internal (GtkListStore *list_store,
|
||||
*
|
||||
* A variant of gtk_list_store_set_valist() which
|
||||
* takes the columns and values as two arrays, instead of
|
||||
* varargs. This function is mainly intended for
|
||||
* varargs. This function is mainly intended for
|
||||
* language-bindings and in case the number of columns to
|
||||
* change is not known until run-time.
|
||||
*
|
||||
@@ -1143,8 +1165,8 @@ gtk_list_store_set_valist (GtkListStore *list_store,
|
||||
|
||||
priv = list_store->priv;
|
||||
|
||||
gtk_list_store_set_valist_internal (list_store, iter,
|
||||
&emit_signal,
|
||||
gtk_list_store_set_valist_internal (list_store, iter,
|
||||
&emit_signal,
|
||||
&maybe_need_sort,
|
||||
var_args);
|
||||
|
||||
@@ -1196,8 +1218,8 @@ gtk_list_store_set (GtkListStore *list_store,
|
||||
* @list_store: A `GtkListStore`
|
||||
* @iter: A valid `GtkTreeIter`
|
||||
*
|
||||
* Removes the given row from the list store. After being removed,
|
||||
* @iter is set to be the next valid row, or invalidated if it pointed
|
||||
* Removes the given row from the list store. After being removed,
|
||||
* @iter is set to be the next valid row, or invalidated if it pointed
|
||||
* to the last row in @list_store.
|
||||
*
|
||||
* Returns: %TRUE if @iter is valid, %FALSE if not.
|
||||
@@ -1221,12 +1243,12 @@ gtk_list_store_remove (GtkListStore *list_store,
|
||||
|
||||
ptr = iter->user_data;
|
||||
next = g_sequence_iter_next (ptr);
|
||||
|
||||
|
||||
_gtk_tree_data_list_free (g_sequence_get (ptr), priv->column_headers);
|
||||
g_sequence_remove (iter->user_data);
|
||||
|
||||
priv->length--;
|
||||
|
||||
|
||||
gtk_tree_model_row_deleted (GTK_TREE_MODEL (list_store), path);
|
||||
gtk_tree_path_free (path);
|
||||
|
||||
@@ -1290,7 +1312,7 @@ gtk_list_store_insert (GtkListStore *list_store,
|
||||
g_assert (iter_is_valid (iter, list_store));
|
||||
|
||||
priv->length++;
|
||||
|
||||
|
||||
path = gtk_tree_path_new ();
|
||||
gtk_tree_path_append_index (path, position);
|
||||
gtk_tree_model_row_inserted (GTK_TREE_MODEL (list_store), path, iter);
|
||||
@@ -1303,9 +1325,9 @@ gtk_list_store_insert (GtkListStore *list_store,
|
||||
* @iter: (out): An unset `GtkTreeIter` to set to the new row
|
||||
* @sibling: (nullable): A valid `GtkTreeIter`
|
||||
*
|
||||
* Inserts a new row before @sibling. If @sibling is %NULL, then the row will
|
||||
* be appended to the end of the list. @iter will be changed to point to this
|
||||
* new row. The row will be empty after this function is called. To fill in
|
||||
* Inserts a new row before @sibling. If @sibling is %NULL, then the row will
|
||||
* be appended to the end of the list. @iter will be changed to point to this
|
||||
* new row. The row will be empty after this function is called. To fill in
|
||||
* values, you need to call gtk_list_store_set() or gtk_list_store_set_value().
|
||||
*
|
||||
* Deprecated: 4.10: Use list models
|
||||
@@ -1317,7 +1339,7 @@ gtk_list_store_insert_before (GtkListStore *list_store,
|
||||
{
|
||||
GtkListStorePrivate *priv;
|
||||
GSequenceIter *after;
|
||||
|
||||
|
||||
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
||||
g_return_if_fail (iter != NULL);
|
||||
|
||||
@@ -1429,7 +1451,7 @@ gtk_list_store_increment_stamp (GtkListStore *list_store)
|
||||
* gtk_list_store_clear:
|
||||
* @list_store: a `GtkListStore`.
|
||||
*
|
||||
* Removes all rows from the list store.
|
||||
* Removes all rows from the list store.
|
||||
*
|
||||
* Deprecated: 4.10: Use list models
|
||||
**/
|
||||
@@ -1506,7 +1528,7 @@ static gboolean real_gtk_list_store_row_draggable (GtkTreeDragSource *drag_sourc
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
static gboolean
|
||||
gtk_list_store_drag_data_delete (GtkTreeDragSource *drag_source,
|
||||
GtkTreePath *path)
|
||||
@@ -1677,7 +1699,7 @@ gtk_list_store_row_drop_possible (GtkTreeDragDest *drag_dest,
|
||||
out:
|
||||
if (src_path)
|
||||
gtk_tree_path_free (src_path);
|
||||
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
@@ -1699,7 +1721,7 @@ gtk_list_store_reorder_func (GSequenceIter *a,
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* gtk_list_store_reorder:
|
||||
* @store: A `GtkListStore`.
|
||||
@@ -1723,7 +1745,7 @@ gtk_list_store_reorder (GtkListStore *store,
|
||||
GHashTable *new_positions;
|
||||
GSequenceIter *ptr;
|
||||
int *order;
|
||||
|
||||
|
||||
g_return_if_fail (GTK_IS_LIST_STORE (store));
|
||||
g_return_if_fail (!GTK_LIST_STORE_IS_SORTED (store));
|
||||
g_return_if_fail (new_order != NULL);
|
||||
@@ -1733,7 +1755,7 @@ gtk_list_store_reorder (GtkListStore *store,
|
||||
order = g_new (int, g_sequence_get_length (priv->seq));
|
||||
for (i = 0; i < g_sequence_get_length (priv->seq); i++)
|
||||
order[new_order[i]] = i;
|
||||
|
||||
|
||||
new_positions = g_hash_table_new (g_direct_hash, g_direct_equal);
|
||||
|
||||
ptr = g_sequence_get_begin_iter (priv->seq);
|
||||
@@ -1745,11 +1767,11 @@ gtk_list_store_reorder (GtkListStore *store,
|
||||
ptr = g_sequence_iter_next (ptr);
|
||||
}
|
||||
g_free (order);
|
||||
|
||||
|
||||
g_sequence_sort_iter (priv->seq, gtk_list_store_reorder_func, new_positions);
|
||||
|
||||
g_hash_table_destroy (new_positions);
|
||||
|
||||
|
||||
/* emit signal */
|
||||
path = gtk_tree_path_new ();
|
||||
gtk_tree_model_rows_reordered (GTK_TREE_MODEL (store),
|
||||
@@ -1828,12 +1850,12 @@ gtk_list_store_swap (GtkListStore *store,
|
||||
return;
|
||||
|
||||
old_positions = save_positions (priv->seq);
|
||||
|
||||
|
||||
g_sequence_swap (a->user_data, b->user_data);
|
||||
|
||||
order = generate_order (priv->seq, old_positions);
|
||||
path = gtk_tree_path_new ();
|
||||
|
||||
|
||||
gtk_tree_model_rows_reordered (GTK_TREE_MODEL (store),
|
||||
path, NULL, order);
|
||||
|
||||
@@ -1882,7 +1904,7 @@ gtk_list_store_move_before (GtkListStore *store,
|
||||
GtkTreeIter *position)
|
||||
{
|
||||
int pos;
|
||||
|
||||
|
||||
g_return_if_fail (GTK_IS_LIST_STORE (store));
|
||||
g_return_if_fail (!GTK_LIST_STORE_IS_SORTED (store));
|
||||
g_return_if_fail (iter_is_valid (iter, store));
|
||||
@@ -1893,7 +1915,7 @@ gtk_list_store_move_before (GtkListStore *store,
|
||||
pos = g_sequence_iter_get_position (position->user_data);
|
||||
else
|
||||
pos = -1;
|
||||
|
||||
|
||||
gtk_list_store_move_to (store, iter, pos);
|
||||
}
|
||||
|
||||
@@ -1915,7 +1937,7 @@ gtk_list_store_move_after (GtkListStore *store,
|
||||
GtkTreeIter *position)
|
||||
{
|
||||
int pos;
|
||||
|
||||
|
||||
g_return_if_fail (GTK_IS_LIST_STORE (store));
|
||||
g_return_if_fail (!GTK_LIST_STORE_IS_SORTED (store));
|
||||
g_return_if_fail (iter_is_valid (iter, store));
|
||||
@@ -1926,10 +1948,10 @@ gtk_list_store_move_after (GtkListStore *store,
|
||||
pos = g_sequence_iter_get_position (position->user_data) + 1;
|
||||
else
|
||||
pos = 0;
|
||||
|
||||
|
||||
gtk_list_store_move_to (store, iter, pos);
|
||||
}
|
||||
|
||||
|
||||
/* Sorting */
|
||||
static int
|
||||
gtk_list_store_compare_func (GSequenceIter *a,
|
||||
@@ -2029,7 +2051,7 @@ iter_is_sorted (GtkListStore *list_store,
|
||||
if (gtk_list_store_compare_func (iter->user_data, cmp, list_store) > 0)
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -2102,7 +2124,7 @@ gtk_list_store_set_sort_column_id (GtkTreeSortable *sortable,
|
||||
{
|
||||
GtkTreeDataSortHeader *header = NULL;
|
||||
|
||||
header = _gtk_tree_data_list_get_header (priv->sort_list,
|
||||
header = _gtk_tree_data_list_get_header (priv->sort_list,
|
||||
sort_column_id);
|
||||
|
||||
/* We want to make sure that we have a function */
|
||||
@@ -2134,8 +2156,8 @@ gtk_list_store_set_sort_func (GtkTreeSortable *sortable,
|
||||
GtkListStore *list_store = GTK_LIST_STORE (sortable);
|
||||
GtkListStorePrivate *priv = list_store->priv;
|
||||
|
||||
priv->sort_list = _gtk_tree_data_list_set_header (priv->sort_list,
|
||||
sort_column_id,
|
||||
priv->sort_list = _gtk_tree_data_list_set_header (priv->sort_list,
|
||||
sort_column_id,
|
||||
func, data, destroy);
|
||||
|
||||
if (priv->sort_column_id == sort_column_id)
|
||||
@@ -2262,7 +2284,7 @@ gtk_list_store_insert_with_values (GtkListStore *list_store,
|
||||
priv->length++;
|
||||
|
||||
va_start (var_args, position);
|
||||
gtk_list_store_set_valist_internal (list_store, iter,
|
||||
gtk_list_store_set_valist_internal (list_store, iter,
|
||||
&changed, &maybe_need_sort,
|
||||
var_args);
|
||||
va_end (var_args);
|
||||
@@ -2286,9 +2308,9 @@ gtk_list_store_insert_with_values (GtkListStore *list_store,
|
||||
* @iter: (out) (optional): An unset `GtkTreeIter` to set to the new row
|
||||
* @position: position to insert the new row, or -1 for last
|
||||
* @columns: (array length=n_values): an array of column numbers
|
||||
* @values: (array length=n_values): an array of GValues
|
||||
* @values: (array length=n_values): an array of GValues
|
||||
* @n_values: the length of the @columns and @values arrays
|
||||
*
|
||||
*
|
||||
* A variant of gtk_list_store_insert_with_values() which
|
||||
* takes the columns and values as two arrays, instead of
|
||||
* varargs.
|
||||
@@ -2301,7 +2323,7 @@ void
|
||||
gtk_list_store_insert_with_valuesv (GtkListStore *list_store,
|
||||
GtkTreeIter *iter,
|
||||
int position,
|
||||
int *columns,
|
||||
int *columns,
|
||||
GValue *values,
|
||||
int n_values)
|
||||
{
|
||||
@@ -2314,8 +2336,8 @@ gtk_list_store_insert_with_valuesv (GtkListStore *list_store,
|
||||
gboolean changed = FALSE;
|
||||
gboolean maybe_need_sort = FALSE;
|
||||
|
||||
/* FIXME refactor to reduce overlap with
|
||||
* gtk_list_store_insert_with_values()
|
||||
/* FIXME refactor to reduce overlap with
|
||||
* gtk_list_store_insert_with_values()
|
||||
*/
|
||||
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
||||
|
||||
@@ -2340,7 +2362,7 @@ gtk_list_store_insert_with_valuesv (GtkListStore *list_store,
|
||||
|
||||
g_assert (iter_is_valid (iter, list_store));
|
||||
|
||||
priv->length++;
|
||||
priv->length++;
|
||||
|
||||
gtk_list_store_set_vector_internal (list_store, iter,
|
||||
&changed, &maybe_need_sort,
|
||||
|
||||
@@ -60,88 +60,88 @@ struct _GtkListStoreClass
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_list_store_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
GtkListStore *gtk_list_store_new (int n_columns,
|
||||
...);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
GtkListStore *gtk_list_store_newv (int n_columns,
|
||||
GType *types);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_set_column_types (GtkListStore *list_store,
|
||||
int n_columns,
|
||||
GType *types);
|
||||
|
||||
/* NOTE: use gtk_tree_model_get to get values from a GtkListStore */
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_set_value (GtkListStore *list_store,
|
||||
GtkTreeIter *iter,
|
||||
int column,
|
||||
GValue *value);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_set (GtkListStore *list_store,
|
||||
GtkTreeIter *iter,
|
||||
...);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_set_valuesv (GtkListStore *list_store,
|
||||
GtkTreeIter *iter,
|
||||
int *columns,
|
||||
GValue *values,
|
||||
int n_values);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_set_valist (GtkListStore *list_store,
|
||||
GtkTreeIter *iter,
|
||||
va_list var_args);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
gboolean gtk_list_store_remove (GtkListStore *list_store,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_insert (GtkListStore *list_store,
|
||||
GtkTreeIter *iter,
|
||||
int position);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_insert_before (GtkListStore *list_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *sibling);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_insert_after (GtkListStore *list_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *sibling);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_insert_with_values (GtkListStore *list_store,
|
||||
GtkTreeIter *iter,
|
||||
int position,
|
||||
...);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_insert_with_valuesv (GtkListStore *list_store,
|
||||
GtkTreeIter *iter,
|
||||
int position,
|
||||
int *columns,
|
||||
GValue *values,
|
||||
int n_values);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_prepend (GtkListStore *list_store,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_append (GtkListStore *list_store,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_clear (GtkListStore *list_store);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
gboolean gtk_list_store_iter_is_valid (GtkListStore *list_store,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_reorder (GtkListStore *store,
|
||||
int *new_order);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_swap (GtkListStore *store,
|
||||
GtkTreeIter *a,
|
||||
GtkTreeIter *b);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_move_after (GtkListStore *store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *position);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListStore)
|
||||
void gtk_list_store_move_before (GtkListStore *store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *position);
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
* and RTL/LTR information set. The style context will also be updated
|
||||
* automatically if any of these settings change on the widget.
|
||||
*
|
||||
* # Style Classes
|
||||
* ## Style Classes
|
||||
*
|
||||
* Widgets can add style classes to their context, which can be used to associate
|
||||
* different styles by class. The documentation for individual widgets lists
|
||||
@@ -71,6 +71,10 @@
|
||||
* `XDG_CONFIG_HOME/gtk-4.0/gtk.css` will
|
||||
* still take precedence over your changes, as it uses the
|
||||
* %GTK_STYLE_PROVIDER_PRIORITY_USER priority.
|
||||
*
|
||||
* Deprecated: 4.10: The relevant API has been moved to [class@Gtk.Widget]
|
||||
* where applicable; otherwise, there is no replacement for querying the
|
||||
* style machinery. Stylable UI elements should use widgets.
|
||||
*/
|
||||
|
||||
#define CURSOR_ASPECT_RATIO (0.04)
|
||||
|
||||
+30
-24
@@ -49,12 +49,18 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* GtkTreeDragDest:
|
||||
*
|
||||
* Interface for Drag-and-Drop destinations in `GtkTreeView`.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets to display their contents.
|
||||
* You can use [class@Gtk.DropTarget] to implement a drop destination
|
||||
*/
|
||||
|
||||
/**
|
||||
* GtkTreeDragSource:
|
||||
*
|
||||
* Interface for Drag-and-Drop destinations in `GtkTreeView`.
|
||||
*
|
||||
* Deprecated: 4.10: List views use widgets to display their contents.
|
||||
* You can use [class@Gtk.DragSource] to implement a drag source
|
||||
*/
|
||||
|
||||
GType
|
||||
@@ -77,11 +83,11 @@ gtk_tree_drag_source_get_type (void)
|
||||
NULL
|
||||
};
|
||||
|
||||
our_type = g_type_register_static (G_TYPE_INTERFACE,
|
||||
our_type = g_type_register_static (G_TYPE_INTERFACE,
|
||||
I_("GtkTreeDragSource"),
|
||||
&our_info, 0);
|
||||
}
|
||||
|
||||
|
||||
return our_type;
|
||||
}
|
||||
|
||||
@@ -108,7 +114,7 @@ gtk_tree_drag_dest_get_type (void)
|
||||
|
||||
our_type = g_type_register_static (G_TYPE_INTERFACE, I_("GtkTreeDragDest"), &our_info, 0);
|
||||
}
|
||||
|
||||
|
||||
return our_type;
|
||||
}
|
||||
|
||||
@@ -116,7 +122,7 @@ gtk_tree_drag_dest_get_type (void)
|
||||
* gtk_tree_drag_source_row_draggable:
|
||||
* @drag_source: a `GtkTreeDragSource`
|
||||
* @path: row on which user is initiating a drag
|
||||
*
|
||||
*
|
||||
* Asks the `GtkTreeDragSource` whether a particular row can be used as
|
||||
* the source of a DND operation. If the source doesn’t implement
|
||||
* this interface, the row is assumed draggable.
|
||||
@@ -147,13 +153,13 @@ gtk_tree_drag_source_row_draggable (GtkTreeDragSource *drag_source,
|
||||
* gtk_tree_drag_source_drag_data_delete:
|
||||
* @drag_source: a `GtkTreeDragSource`
|
||||
* @path: row that was being dragged
|
||||
*
|
||||
*
|
||||
* Asks the `GtkTreeDragSource` to delete the row at @path, because
|
||||
* it was moved somewhere else via drag-and-drop. Returns %FALSE
|
||||
* if the deletion fails because @path no longer exists, or for
|
||||
* some model-specific reason. Should robustly handle a @path no
|
||||
* longer found in the model!
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE if the row was successfully deleted
|
||||
*
|
||||
* Deprecated: 4.10: Use list models instead
|
||||
@@ -174,11 +180,11 @@ gtk_tree_drag_source_drag_data_delete (GtkTreeDragSource *drag_source,
|
||||
* gtk_tree_drag_source_drag_data_get:
|
||||
* @drag_source: a `GtkTreeDragSource`
|
||||
* @path: row that was dragged
|
||||
*
|
||||
*
|
||||
* Asks the `GtkTreeDragSource` to return a `GdkContentProvider` representing
|
||||
* the row at @path. Should robustly handle a @path no
|
||||
* longer found in the model!
|
||||
*
|
||||
*
|
||||
* Returns: (nullable) (transfer full): a `GdkContentProvider` for the
|
||||
* given @path
|
||||
*
|
||||
@@ -201,14 +207,14 @@ gtk_tree_drag_source_drag_data_get (GtkTreeDragSource *drag_source,
|
||||
* @drag_dest: a `GtkTreeDragDest`
|
||||
* @dest: row to drop in front of
|
||||
* @value: data to drop
|
||||
*
|
||||
*
|
||||
* Asks the `GtkTreeDragDest` to insert a row before the path @dest,
|
||||
* deriving the contents of the row from @value. If @dest is
|
||||
* outside the tree so that inserting before it is impossible, %FALSE
|
||||
* will be returned. Also, %FALSE may be returned if the new row is
|
||||
* not created for some model-specific reason. Should robustly handle
|
||||
* a @dest no longer found in the model!
|
||||
*
|
||||
*
|
||||
* Returns: whether a new row was created before position @dest
|
||||
*
|
||||
* Deprecated: 4.10: Use list models instead
|
||||
@@ -233,13 +239,13 @@ gtk_tree_drag_dest_drag_data_received (GtkTreeDragDest *drag_dest,
|
||||
* @drag_dest: a `GtkTreeDragDest`
|
||||
* @dest_path: destination row
|
||||
* @value: the data being dropped
|
||||
*
|
||||
*
|
||||
* Determines whether a drop is possible before the given @dest_path,
|
||||
* at the same depth as @dest_path. i.e., can we drop the data in
|
||||
* @value at that location. @dest_path does not have to
|
||||
* exist; the return value will almost certainly be %FALSE if the
|
||||
* parent of @dest_path doesn’t exist, though.
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE if a drop is possible before @dest_path
|
||||
*
|
||||
* Deprecated: 4.10: Use list models instead
|
||||
@@ -281,9 +287,9 @@ G_DEFINE_BOXED_TYPE (GtkTreeRowData, gtk_tree_row_data,
|
||||
* gtk_tree_create_row_drag_content:
|
||||
* @tree_model: a `GtkTreeModel`
|
||||
* @path: a row in @tree_model
|
||||
*
|
||||
*
|
||||
* Creates a content provider for dragging @path from @tree_model.
|
||||
*
|
||||
*
|
||||
* Returns: (transfer full): a new `GdkContentProvider`
|
||||
*
|
||||
* Deprecated: 4.10: Use list models instead
|
||||
@@ -297,7 +303,7 @@ gtk_tree_create_row_drag_content (GtkTreeModel *tree_model,
|
||||
char *path_str;
|
||||
int len;
|
||||
int struct_size;
|
||||
|
||||
|
||||
g_return_val_if_fail (GTK_IS_TREE_MODEL (tree_model), FALSE);
|
||||
g_return_val_if_fail (path != NULL, FALSE);
|
||||
|
||||
@@ -309,18 +315,18 @@ gtk_tree_create_row_drag_content (GtkTreeModel *tree_model,
|
||||
struct_size = sizeof (GtkTreeRowData) + len + 1 -
|
||||
(sizeof (GtkTreeRowData) - G_STRUCT_OFFSET (GtkTreeRowData, path));
|
||||
|
||||
trd = g_malloc (struct_size);
|
||||
trd = g_malloc (struct_size);
|
||||
|
||||
strcpy (trd->path, path_str);
|
||||
|
||||
g_free (path_str);
|
||||
|
||||
|
||||
trd->model = tree_model;
|
||||
|
||||
|
||||
content = gdk_content_provider_new_typed (GTK_TYPE_TREE_ROW_DATA, trd);
|
||||
|
||||
g_free (trd);
|
||||
|
||||
|
||||
return content;
|
||||
}
|
||||
|
||||
@@ -329,12 +335,12 @@ gtk_tree_create_row_drag_content (GtkTreeModel *tree_model,
|
||||
* @value: a `GValue`
|
||||
* @tree_model: (nullable) (optional) (transfer none) (out): a `GtkTreeModel`
|
||||
* @path: (nullable) (optional) (out): row in @tree_model
|
||||
*
|
||||
*
|
||||
* Obtains a @tree_model and @path from value of target type
|
||||
* %GTK_TYPE_TREE_ROW_DATA.
|
||||
*
|
||||
* The returned path must be freed with gtk_tree_path_free().
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE if @selection_data had target type %GTK_TYPE_TREE_ROW_DATA
|
||||
* is otherwise valid
|
||||
*
|
||||
@@ -346,8 +352,8 @@ gtk_tree_get_row_drag_data (const GValue *value,
|
||||
GtkTreePath **path)
|
||||
{
|
||||
GtkTreeRowData *trd;
|
||||
|
||||
g_return_val_if_fail (value != NULL, FALSE);
|
||||
|
||||
g_return_val_if_fail (value != NULL, FALSE);
|
||||
|
||||
if (tree_model)
|
||||
*tree_model = NULL;
|
||||
@@ -367,6 +373,6 @@ gtk_tree_get_row_drag_data (const GValue *value,
|
||||
|
||||
if (path)
|
||||
*path = gtk_tree_path_new_from_string (trd->path);
|
||||
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
+10
-10
@@ -74,23 +74,23 @@ struct _GtkTreeDragSourceIface
|
||||
GtkTreePath *path);
|
||||
};
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDragSource)
|
||||
GType gtk_tree_drag_source_get_type (void) G_GNUC_CONST;
|
||||
|
||||
/* Returns whether the given row can be dragged */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDragSource)
|
||||
gboolean gtk_tree_drag_source_row_draggable (GtkTreeDragSource *drag_source,
|
||||
GtkTreePath *path);
|
||||
|
||||
/* Deletes the given row, or returns FALSE if it can't */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDragSource)
|
||||
gboolean gtk_tree_drag_source_drag_data_delete (GtkTreeDragSource *drag_source,
|
||||
GtkTreePath *path);
|
||||
|
||||
/* Fills in selection_data with type selection_data->target based on
|
||||
* the row denoted by path, returns TRUE if it does anything
|
||||
*/
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDragSource)
|
||||
GdkContentProvider *
|
||||
gtk_tree_drag_source_drag_data_get (GtkTreeDragSource *drag_source,
|
||||
GtkTreePath *path);
|
||||
@@ -129,20 +129,20 @@ struct _GtkTreeDragDestIface
|
||||
const GValue *value);
|
||||
};
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropTarget)
|
||||
GType gtk_tree_drag_dest_get_type (void) G_GNUC_CONST;
|
||||
|
||||
/* Inserts a row before dest which contains data in selection_data,
|
||||
* or returns FALSE if it can't
|
||||
*/
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropTarget)
|
||||
gboolean gtk_tree_drag_dest_drag_data_received (GtkTreeDragDest *drag_dest,
|
||||
GtkTreePath *dest,
|
||||
const GValue *value);
|
||||
|
||||
|
||||
/* Returns TRUE if we can drop before path; path may not exist. */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDropTarget)
|
||||
gboolean gtk_tree_drag_dest_row_drop_possible (GtkTreeDragDest *drag_dest,
|
||||
GtkTreePath *dest_path,
|
||||
const GValue *value);
|
||||
@@ -151,11 +151,11 @@ gboolean gtk_tree_drag_dest_row_drop_possible (GtkTreeDragDest *drag_dest,
|
||||
/* The selection data would normally have target type GTK_TREE_MODEL_ROW in this
|
||||
* case. If the target is wrong these functions return FALSE.
|
||||
*/
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GdkContentProvider *
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDragSource and GtkDropTarget)
|
||||
GdkContentProvider *
|
||||
gtk_tree_create_row_drag_content (GtkTreeModel *tree_model,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkDragSource and GtkDropTarget)
|
||||
gboolean gtk_tree_get_row_drag_data (const GValue *value,
|
||||
GtkTreeModel **tree_model,
|
||||
GtkTreePath **path);
|
||||
|
||||
@@ -228,6 +228,8 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* required for levels in which nodes are referenced. For the root level
|
||||
* however, signals must be emitted at all times (however the root level
|
||||
* is always referenced when any view is attached).
|
||||
*
|
||||
* Deprecated: 4.10: Use [iface@Gio.ListModel] instead
|
||||
*/
|
||||
|
||||
#define INITIALIZE_TREE_ITER(Iter) \
|
||||
@@ -362,7 +364,7 @@ gtk_tree_model_base_init (gpointer g_class)
|
||||
tree_model_signals[ROW_CHANGED] =
|
||||
g_signal_new (I_("row-changed"),
|
||||
GTK_TYPE_TREE_MODEL,
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET (GtkTreeModelIface, row_changed),
|
||||
NULL, NULL,
|
||||
_gtk_marshal_VOID__BOXED_BOXED,
|
||||
|
||||
@@ -192,57 +192,57 @@ struct _GtkTreeModelIface
|
||||
|
||||
|
||||
/* GtkTreePath operations */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreePath *gtk_tree_path_new (void);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreePath *gtk_tree_path_new_from_string (const char *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreePath *gtk_tree_path_new_from_indices (int first_index,
|
||||
...);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreePath *gtk_tree_path_new_from_indicesv (int *indices,
|
||||
gsize length);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
char *gtk_tree_path_to_string (GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreePath *gtk_tree_path_new_first (void);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_path_append_index (GtkTreePath *path,
|
||||
int index_);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_path_prepend_index (GtkTreePath *path,
|
||||
int index_);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
int gtk_tree_path_get_depth (GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
int *gtk_tree_path_get_indices (GtkTreePath *path);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
int *gtk_tree_path_get_indices_with_depth (GtkTreePath *path,
|
||||
int *depth);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_path_free (GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreePath *gtk_tree_path_copy (const GtkTreePath *path);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_tree_path_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
int gtk_tree_path_compare (const GtkTreePath *a,
|
||||
const GtkTreePath *b);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_path_next (GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_path_prev (GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_path_up (GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_path_down (GtkTreePath *path);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_path_is_ancestor (GtkTreePath *path,
|
||||
GtkTreePath *descendant);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_path_is_descendant (GtkTreePath *path,
|
||||
GtkTreePath *ancestor);
|
||||
|
||||
@@ -256,147 +256,147 @@ gboolean gtk_tree_path_is_descendant (GtkTreePath *path,
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_tree_row_reference_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreeRowReference *gtk_tree_row_reference_new (GtkTreeModel *model,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreeRowReference *gtk_tree_row_reference_new_proxy (GObject *proxy,
|
||||
GtkTreeModel *model,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreePath *gtk_tree_row_reference_get_path (GtkTreeRowReference *reference);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreeModel *gtk_tree_row_reference_get_model (GtkTreeRowReference *reference);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_row_reference_valid (GtkTreeRowReference *reference);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreeRowReference *gtk_tree_row_reference_copy (GtkTreeRowReference *reference);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_row_reference_free (GtkTreeRowReference *reference);
|
||||
/* These two functions are only needed if you created the row reference with a
|
||||
* proxy object */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_row_reference_inserted (GObject *proxy,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_row_reference_deleted (GObject *proxy,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_row_reference_reordered (GObject *proxy,
|
||||
GtkTreePath *path,
|
||||
GtkTreeIter *iter,
|
||||
int *new_order);
|
||||
|
||||
/* GtkTreeIter operations */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreeIter * gtk_tree_iter_copy (GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_iter_free (GtkTreeIter *iter);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_tree_iter_get_type (void) G_GNUC_CONST;
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_tree_model_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreeModelFlags gtk_tree_model_get_flags (GtkTreeModel *tree_model);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
int gtk_tree_model_get_n_columns (GtkTreeModel *tree_model);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GType gtk_tree_model_get_column_type (GtkTreeModel *tree_model,
|
||||
int index_);
|
||||
|
||||
|
||||
/* Iterator movement */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_model_get_iter (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_model_get_iter_from_string (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter,
|
||||
const char *path_string);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
char * gtk_tree_model_get_string_from_iter (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_model_get_iter_first (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
GtkTreePath * gtk_tree_model_get_path (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_get_value (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter,
|
||||
int column,
|
||||
GValue *value);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_model_iter_previous (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_model_iter_next (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_model_iter_children (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *parent);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_model_iter_has_child (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
int gtk_tree_model_iter_n_children (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_model_iter_nth_child (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *parent,
|
||||
int n);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
gboolean gtk_tree_model_iter_parent (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *child);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_ref_node (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_unref_node (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_get (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter,
|
||||
...);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_get_valist (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter,
|
||||
va_list var_args);
|
||||
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_foreach (GtkTreeModel *model,
|
||||
GtkTreeModelForeachFunc func,
|
||||
gpointer user_data);
|
||||
|
||||
/* Signals */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_row_changed (GtkTreeModel *tree_model,
|
||||
GtkTreePath *path,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_row_inserted (GtkTreeModel *tree_model,
|
||||
GtkTreePath *path,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_row_has_child_toggled (GtkTreeModel *tree_model,
|
||||
GtkTreePath *path,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_row_deleted (GtkTreeModel *tree_model,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_rows_reordered (GtkTreeModel *tree_model,
|
||||
GtkTreePath *path,
|
||||
GtkTreeIter *iter,
|
||||
int *new_order);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GListModel)
|
||||
void gtk_tree_model_rows_reordered_with_length (GtkTreeModel *tree_model,
|
||||
GtkTreePath *path,
|
||||
GtkTreeIter *iter,
|
||||
|
||||
@@ -31,13 +31,13 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
*
|
||||
* A `GtkTreeModelFilter` is a tree model which wraps another tree model,
|
||||
* and can do the following things:
|
||||
*
|
||||
*
|
||||
* - Filter specific rows, based on data from a “visible column”, a column
|
||||
* storing booleans indicating whether the row should be filtered or not,
|
||||
* or based on the return value of a “visible function”, which gets a
|
||||
* model, iter and user_data and returns a boolean indicating whether the
|
||||
* row should be filtered or not.
|
||||
*
|
||||
*
|
||||
* - Modify the “appearance” of the model, using a modify function.
|
||||
* This is extremely powerful and allows for just changing some
|
||||
* values and also for creating a completely different model based
|
||||
@@ -94,6 +94,8 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* because it does not implement reference counting, or for models that
|
||||
* do implement reference counting, obtain references on these child levels
|
||||
* yourself.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.FilterListModel] instead.
|
||||
*/
|
||||
|
||||
/* Notes on this implementation of GtkTreeModelFilter
|
||||
@@ -588,7 +590,7 @@ gtk_tree_model_filter_finalize (GObject *object)
|
||||
gtk_tree_model_filter_free_level (filter, filter->priv->root, TRUE, TRUE, FALSE);
|
||||
|
||||
g_free (filter->priv->modify_types);
|
||||
|
||||
|
||||
if (filter->priv->modify_destroy)
|
||||
filter->priv->modify_destroy (filter->priv->modify_data);
|
||||
|
||||
@@ -3801,7 +3803,7 @@ gtk_tree_model_filter_get_model (GtkTreeModelFilter *filter)
|
||||
* %FALSE otherwise.
|
||||
*
|
||||
* If the condition calculated by the function changes over time (e.g.
|
||||
* because it depends on some global parameters), you must call
|
||||
* because it depends on some global parameters), you must call
|
||||
* gtk_tree_model_filter_refilter() to keep the visibility information
|
||||
* of the model up-to-date.
|
||||
*
|
||||
@@ -3864,8 +3866,8 @@ gtk_tree_model_filter_set_visible_func (GtkTreeModelFilter *filter,
|
||||
* types for this model (which will be exposed to the parent model/view).
|
||||
* The @func, @data and @destroy parameters are for specifying the modify
|
||||
* function. The modify function will get called for each
|
||||
* data access, the goal of the modify function is to return the data which
|
||||
* should be displayed at the location specified using the parameters of the
|
||||
* data access, the goal of the modify function is to return the data which
|
||||
* should be displayed at the location specified using the parameters of the
|
||||
* modify function.
|
||||
*
|
||||
* Note that gtk_tree_model_filter_set_modify_func()
|
||||
|
||||
@@ -105,48 +105,48 @@ struct _GtkTreeModelFilterClass
|
||||
/* base */
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_tree_model_filter_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
GtkTreeModel *gtk_tree_model_filter_new (GtkTreeModel *child_model,
|
||||
GtkTreePath *root);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
void gtk_tree_model_filter_set_visible_func (GtkTreeModelFilter *filter,
|
||||
GtkTreeModelFilterVisibleFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
void gtk_tree_model_filter_set_modify_func (GtkTreeModelFilter *filter,
|
||||
int n_columns,
|
||||
GType *types,
|
||||
GtkTreeModelFilterModifyFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
void gtk_tree_model_filter_set_visible_column (GtkTreeModelFilter *filter,
|
||||
int column);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
GtkTreeModel *gtk_tree_model_filter_get_model (GtkTreeModelFilter *filter);
|
||||
|
||||
/* conversion */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
gboolean gtk_tree_model_filter_convert_child_iter_to_iter (GtkTreeModelFilter *filter,
|
||||
GtkTreeIter *filter_iter,
|
||||
GtkTreeIter *child_iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
void gtk_tree_model_filter_convert_iter_to_child_iter (GtkTreeModelFilter *filter,
|
||||
GtkTreeIter *child_iter,
|
||||
GtkTreeIter *filter_iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
GtkTreePath *gtk_tree_model_filter_convert_child_path_to_path (GtkTreeModelFilter *filter,
|
||||
GtkTreePath *child_path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
GtkTreePath *gtk_tree_model_filter_convert_path_to_child_path (GtkTreeModelFilter *filter,
|
||||
GtkTreePath *filter_path);
|
||||
|
||||
/* extras */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
void gtk_tree_model_filter_refilter (GtkTreeModelFilter *filter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
void gtk_tree_model_filter_clear_cache (GtkTreeModelFilter *filter);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkTreeModelFilter, g_object_unref)
|
||||
|
||||
@@ -127,6 +127,8 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* g_free (modified_data);
|
||||
* }
|
||||
* ]|
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.SortListModel] instead
|
||||
*/
|
||||
|
||||
|
||||
@@ -659,13 +661,13 @@ fill_sort_data (SortData *data,
|
||||
if (priv->sort_column_id != GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID)
|
||||
{
|
||||
GtkTreeDataSortHeader *header;
|
||||
|
||||
|
||||
header = _gtk_tree_data_list_get_header (priv->sort_list,
|
||||
priv->sort_column_id);
|
||||
|
||||
|
||||
g_return_if_fail (header != NULL);
|
||||
g_return_if_fail (header->func != NULL);
|
||||
|
||||
|
||||
data->sort_func = header->func;
|
||||
data->sort_data = header->data;
|
||||
}
|
||||
@@ -1421,7 +1423,7 @@ gtk_tree_model_sort_iter_children (GtkTreeModel *tree_model,
|
||||
|
||||
iter->stamp = 0;
|
||||
g_return_val_if_fail (priv->child_model != NULL, FALSE);
|
||||
if (parent)
|
||||
if (parent)
|
||||
g_return_val_if_fail (VALID_ITER (parent, tree_model_sort), FALSE);
|
||||
|
||||
if (parent == NULL)
|
||||
@@ -1482,7 +1484,7 @@ gtk_tree_model_sort_iter_n_children (GtkTreeModel *tree_model,
|
||||
GtkTreeIter child_iter;
|
||||
|
||||
g_return_val_if_fail (priv->child_model != NULL, 0);
|
||||
if (iter)
|
||||
if (iter)
|
||||
g_return_val_if_fail (VALID_ITER (iter, tree_model_sort), 0);
|
||||
|
||||
if (iter == NULL)
|
||||
@@ -1504,7 +1506,7 @@ gtk_tree_model_sort_iter_nth_child (GtkTreeModel *tree_model,
|
||||
/* We have this for the iter == parent case */
|
||||
GtkTreeIter children;
|
||||
|
||||
if (parent)
|
||||
if (parent)
|
||||
g_return_val_if_fail (VALID_ITER (parent, tree_model_sort), FALSE);
|
||||
|
||||
/* Use this instead of has_child to force us to build the level, if needed */
|
||||
@@ -1532,7 +1534,7 @@ static gboolean
|
||||
gtk_tree_model_sort_iter_parent (GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *child)
|
||||
{
|
||||
{
|
||||
GtkTreeModelSort *tree_model_sort = (GtkTreeModelSort *) tree_model;
|
||||
GtkTreeModelSortPrivate *priv = tree_model_sort->priv;
|
||||
SortLevel *level;
|
||||
@@ -1670,7 +1672,7 @@ gtk_tree_model_sort_get_sort_column_id (GtkTreeSortable *sortable,
|
||||
if (priv->sort_column_id == GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID ||
|
||||
priv->sort_column_id == GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID)
|
||||
return FALSE;
|
||||
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -2111,9 +2113,9 @@ gtk_tree_model_sort_elt_get_path (SortLevel *level,
|
||||
* @tree_model_sort: The `GtkTreeModelSort`.
|
||||
* @child_model: (nullable): A `GtkTreeModel`
|
||||
*
|
||||
* Sets the model of @tree_model_sort to be @model. If @model is %NULL,
|
||||
* then the old model is unset. The sort function is unset as a result
|
||||
* of this call. The model will be in an unsorted state until a sort
|
||||
* Sets the model of @tree_model_sort to be @model. If @model is %NULL,
|
||||
* then the old model is unset. The sort function is unset as a result
|
||||
* of this call. The model will be in an unsorted state until a sort
|
||||
* function is set.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -2274,12 +2276,12 @@ gtk_real_tree_model_sort_convert_child_path_to_path (GtkTreeModelSort *tree_mode
|
||||
* gtk_tree_model_sort_convert_child_path_to_path:
|
||||
* @tree_model_sort: A `GtkTreeModelSort`
|
||||
* @child_path: A `GtkTreePath` to convert
|
||||
*
|
||||
*
|
||||
* Converts @child_path to a path relative to @tree_model_sort. That is,
|
||||
* @child_path points to a path in the child model. The returned path will
|
||||
* point to the same row in the sorted model. If @child_path isn’t a valid
|
||||
* point to the same row in the sorted model. If @child_path isn’t a valid
|
||||
* path on the child model, then %NULL is returned.
|
||||
*
|
||||
*
|
||||
* Returns: (nullable) (transfer full): A newly allocated `GtkTreePath`
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -2300,7 +2302,7 @@ gtk_tree_model_sort_convert_child_path_to_path (GtkTreeModelSort *tree_model_sor
|
||||
* @tree_model_sort: A `GtkTreeModelSort`
|
||||
* @sort_iter: (out): An uninitialized `GtkTreeIter`
|
||||
* @child_iter: A valid `GtkTreeIter` pointing to a row on the child model
|
||||
*
|
||||
*
|
||||
* Sets @sort_iter to point to the row in @tree_model_sort that corresponds to
|
||||
* the row pointed at by @child_iter. If @sort_iter was not set, %FALSE
|
||||
* is returned. Note: a boolean is only returned since 2.14.
|
||||
@@ -2350,13 +2352,13 @@ gtk_tree_model_sort_convert_child_iter_to_iter (GtkTreeModelSort *tree_model_sor
|
||||
* gtk_tree_model_sort_convert_path_to_child_path:
|
||||
* @tree_model_sort: A `GtkTreeModelSort`
|
||||
* @sorted_path: A `GtkTreePath` to convert
|
||||
*
|
||||
* Converts @sorted_path to a path on the child model of @tree_model_sort.
|
||||
* That is, @sorted_path points to a location in @tree_model_sort. The
|
||||
* returned path will point to the same location in the model not being
|
||||
* sorted. If @sorted_path does not point to a location in the child model,
|
||||
*
|
||||
* Converts @sorted_path to a path on the child model of @tree_model_sort.
|
||||
* That is, @sorted_path points to a location in @tree_model_sort. The
|
||||
* returned path will point to the same location in the model not being
|
||||
* sorted. If @sorted_path does not point to a location in the child model,
|
||||
* %NULL is returned.
|
||||
*
|
||||
*
|
||||
* Returns: (nullable) (transfer full): A newly allocated `GtkTreePath`
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -2414,7 +2416,7 @@ gtk_tree_model_sort_convert_path_to_child_path (GtkTreeModelSort *tree_model_sor
|
||||
gtk_tree_path_append_index (retval, elt->offset);
|
||||
level = elt->children;
|
||||
}
|
||||
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
@@ -2423,7 +2425,7 @@ gtk_tree_model_sort_convert_path_to_child_path (GtkTreeModelSort *tree_model_sor
|
||||
* @tree_model_sort: A `GtkTreeModelSort`
|
||||
* @child_iter: (out): An uninitialized `GtkTreeIter`
|
||||
* @sorted_iter: A valid `GtkTreeIter` pointing to a row on @tree_model_sort.
|
||||
*
|
||||
*
|
||||
* Sets @child_iter to point to the row pointed to by @sorted_iter.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -2689,7 +2691,7 @@ gtk_tree_model_sort_clear_cache_helper (GtkTreeModelSort *tree_model_sort,
|
||||
/**
|
||||
* gtk_tree_model_sort_reset_default_sort_func:
|
||||
* @tree_model_sort: A `GtkTreeModelSort`
|
||||
*
|
||||
*
|
||||
* This resets the default sort function to be in the “unsorted” state. That
|
||||
* is, it is in the same order as the child model. It will re-sort the model
|
||||
* to be in the same order as the child model only if the `GtkTreeModelSort`
|
||||
@@ -2724,7 +2726,7 @@ gtk_tree_model_sort_reset_default_sort_func (GtkTreeModelSort *tree_model_sort)
|
||||
/**
|
||||
* gtk_tree_model_sort_clear_cache:
|
||||
* @tree_model_sort: A `GtkTreeModelSort`
|
||||
*
|
||||
*
|
||||
* This function should almost never be called. It clears the @tree_model_sort
|
||||
* of any cached iterators that haven’t been reffed with
|
||||
* gtk_tree_model_ref_node(). This might be useful if the child model being
|
||||
|
||||
@@ -58,30 +58,30 @@ struct _GtkTreeModelSortClass
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_tree_model_sort_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
GtkTreeModel *gtk_tree_model_sort_new_with_model (GtkTreeModel *child_model);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
GtkTreeModel *gtk_tree_model_sort_get_model (GtkTreeModelSort *tree_model);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
GtkTreePath *gtk_tree_model_sort_convert_child_path_to_path (GtkTreeModelSort *tree_model_sort,
|
||||
GtkTreePath *child_path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
gboolean gtk_tree_model_sort_convert_child_iter_to_iter (GtkTreeModelSort *tree_model_sort,
|
||||
GtkTreeIter *sort_iter,
|
||||
GtkTreeIter *child_iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
GtkTreePath *gtk_tree_model_sort_convert_path_to_child_path (GtkTreeModelSort *tree_model_sort,
|
||||
GtkTreePath *sorted_path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
void gtk_tree_model_sort_convert_iter_to_child_iter (GtkTreeModelSort *tree_model_sort,
|
||||
GtkTreeIter *child_iter,
|
||||
GtkTreeIter *sorted_iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
void gtk_tree_model_sort_reset_default_sort_func (GtkTreeModelSort *tree_model_sort);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
void gtk_tree_model_sort_clear_cache (GtkTreeModelSort *tree_model_sort);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkFilterListModel)
|
||||
gboolean gtk_tree_model_sort_iter_is_valid (GtkTreeModelSort *tree_model_sort,
|
||||
GtkTreeIter *iter);
|
||||
|
||||
|
||||
@@ -55,6 +55,8 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* Additionally, it may on occasion emit a `GtkTreeSelection`::changed signal
|
||||
* when nothing has happened (mostly as a result of programmers calling
|
||||
* select_row on an already selected row).
|
||||
*
|
||||
* Deprecated: 4.10: Use [iface@Gtk.SelectionModel] instead
|
||||
*/
|
||||
|
||||
typedef struct _GtkTreeSelectionClass GtkTreeSelectionClass;
|
||||
@@ -124,7 +126,7 @@ gtk_tree_selection_class_init (GtkTreeSelectionClass *class)
|
||||
class->changed = NULL;
|
||||
|
||||
/* Properties */
|
||||
|
||||
|
||||
/**
|
||||
* GtkTreeSelection:mode:
|
||||
*
|
||||
@@ -138,9 +140,9 @@ gtk_tree_selection_class_init (GtkTreeSelectionClass *class)
|
||||
|
||||
/* Install all properties */
|
||||
g_object_class_install_properties (object_class, N_PROPERTIES, properties);
|
||||
|
||||
|
||||
/* Signals */
|
||||
|
||||
|
||||
/**
|
||||
* GtkTreeSelection::changed:
|
||||
* @treeselection: the object which received the signal.
|
||||
@@ -331,7 +333,7 @@ gtk_tree_selection_set_mode (GtkTreeSelection *selection,
|
||||
anchor_path,
|
||||
&tree,
|
||||
&node);
|
||||
|
||||
|
||||
if (node && GTK_TREE_RBNODE_FLAG_SET (node, GTK_TREE_RBNODE_IS_SELECTED))
|
||||
selected = TRUE;
|
||||
}
|
||||
@@ -355,7 +357,7 @@ gtk_tree_selection_set_mode (GtkTreeSelection *selection,
|
||||
}
|
||||
|
||||
selection->type = type;
|
||||
|
||||
|
||||
g_object_notify_by_pspec (G_OBJECT (selection), properties[PROP_MODE]);
|
||||
}
|
||||
|
||||
@@ -450,9 +452,9 @@ gtk_tree_selection_get_user_data (GtkTreeSelection *selection)
|
||||
/**
|
||||
* gtk_tree_selection_get_tree_view:
|
||||
* @selection: A `GtkTreeSelection`
|
||||
*
|
||||
*
|
||||
* Returns the tree view associated with @selection.
|
||||
*
|
||||
*
|
||||
* Returns: (transfer none): A `GtkTreeView`
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkListView or GtkColumnView
|
||||
@@ -629,7 +631,7 @@ gtk_tree_selection_get_selected_rows (GtkTreeSelection *selection,
|
||||
{
|
||||
gtk_tree_path_free (path);
|
||||
|
||||
goto done;
|
||||
goto done;
|
||||
}
|
||||
|
||||
gtk_tree_path_up (path);
|
||||
@@ -778,7 +780,7 @@ gtk_tree_selection_selected_foreach (GtkTreeSelection *selection,
|
||||
G_CALLBACK (model_changed),
|
||||
&stop);
|
||||
changed_id = g_signal_connect_swapped (selection->tree_view, "notify::model",
|
||||
G_CALLBACK (model_changed),
|
||||
G_CALLBACK (model_changed),
|
||||
&stop);
|
||||
|
||||
/* find the node internally */
|
||||
@@ -1001,10 +1003,10 @@ gtk_tree_selection_unselect_iter (GtkTreeSelection *selection,
|
||||
* gtk_tree_selection_path_is_selected:
|
||||
* @selection: A `GtkTreeSelection`.
|
||||
* @path: A `GtkTreePath` to check selection on.
|
||||
*
|
||||
*
|
||||
* Returns %TRUE if the row pointed to by @path is currently selected. If @path
|
||||
* does not point to a valid location, %FALSE is returned
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE if @path is selected.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkListView or GtkColumnView
|
||||
@@ -1040,9 +1042,9 @@ gtk_tree_selection_path_is_selected (GtkTreeSelection *selection,
|
||||
* gtk_tree_selection_iter_is_selected:
|
||||
* @selection: A `GtkTreeSelection`
|
||||
* @iter: A valid `GtkTreeIter`
|
||||
*
|
||||
*
|
||||
* Returns %TRUE if the row at @iter is currently selected.
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE, if @iter is selected
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkListView or GtkColumnView
|
||||
@@ -1255,7 +1257,7 @@ gtk_tree_selection_unselect_all (GtkTreeSelection *selection)
|
||||
if (_gtk_tree_view_get_rbtree (selection->tree_view) == NULL ||
|
||||
gtk_tree_view_get_model (selection->tree_view) == NULL)
|
||||
return;
|
||||
|
||||
|
||||
if (gtk_tree_selection_real_unselect_all (selection))
|
||||
g_signal_emit (selection, tree_selection_signals[CHANGED], 0);
|
||||
}
|
||||
@@ -1357,7 +1359,7 @@ gtk_tree_selection_real_modify_range (GtkTreeSelection *selection,
|
||||
* @end_path: The final node of the range.
|
||||
*
|
||||
* Selects a range of nodes, determined by @start_path and @end_path inclusive.
|
||||
* @selection must be set to %GTK_SELECTION_MULTIPLE mode.
|
||||
* @selection must be set to %GTK_SELECTION_MULTIPLE mode.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkListView or GtkColumnView
|
||||
**/
|
||||
@@ -1562,14 +1564,14 @@ _gtk_tree_selection_internal_select_node (GtkTreeSelection *selection,
|
||||
gtk_tree_path_free (anchor_path);
|
||||
|
||||
if (dirty)
|
||||
g_signal_emit (selection, tree_selection_signals[CHANGED], 0);
|
||||
g_signal_emit (selection, tree_selection_signals[CHANGED], 0);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
void
|
||||
_gtk_tree_selection_emit_changed (GtkTreeSelection *selection)
|
||||
{
|
||||
g_signal_emit (selection, tree_selection_signals[CHANGED], 0);
|
||||
g_signal_emit (selection, tree_selection_signals[CHANGED], 0);
|
||||
}
|
||||
|
||||
/* NOTE: Any {un,}selection ever done _MUST_ be done through this function!
|
||||
|
||||
@@ -32,6 +32,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* `GtkTreeSortable` is an interface to be implemented by tree models which
|
||||
* support sorting. The `GtkTreeView` uses the methods provided by this interface
|
||||
* to sort the model.
|
||||
*
|
||||
* Deprecated: 4.10: There is no replacement for this interface. You should
|
||||
* use [class@Gtk.SortListModel] to wrap your list model instead
|
||||
*/
|
||||
|
||||
|
||||
@@ -96,7 +99,7 @@ gtk_tree_sortable_base_init (gpointer g_class)
|
||||
/**
|
||||
* gtk_tree_sortable_sort_column_changed:
|
||||
* @sortable: A `GtkTreeSortable`
|
||||
*
|
||||
*
|
||||
* Emits a `GtkTreeSortable::sort-column-changed` signal on @sortable.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -114,12 +117,12 @@ gtk_tree_sortable_sort_column_changed (GtkTreeSortable *sortable)
|
||||
* @sortable: A `GtkTreeSortable`
|
||||
* @sort_column_id: (out): The sort column id to be filled in
|
||||
* @order: (out): The `GtkSortType` to be filled in
|
||||
*
|
||||
*
|
||||
* Fills in @sort_column_id and @order with the current sort column and the
|
||||
* order. It returns %TRUE unless the @sort_column_id is
|
||||
* %GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID or
|
||||
* order. It returns %TRUE unless the @sort_column_id is
|
||||
* %GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID or
|
||||
* %GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID.
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE if the sort column is not one of the special sort
|
||||
* column ids.
|
||||
*
|
||||
@@ -147,15 +150,15 @@ gtk_tree_sortable_get_sort_column_id (GtkTreeSortable *sortable,
|
||||
* @sortable: A `GtkTreeSortable`
|
||||
* @sort_column_id: the sort column id to set
|
||||
* @order: The sort order of the column
|
||||
*
|
||||
*
|
||||
* Sets the current sort column to be @sort_column_id. The @sortable will
|
||||
* resort itself to reflect this change, after emitting a
|
||||
* `GtkTreeSortable::sort-column-changed` signal. @sort_column_id may either be
|
||||
* a regular column id, or one of the following special values:
|
||||
*
|
||||
*
|
||||
* - %GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID: the default sort function
|
||||
* will be used, if it is set
|
||||
*
|
||||
*
|
||||
* - %GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID: no sorting will occur
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -173,7 +176,7 @@ gtk_tree_sortable_set_sort_column_id (GtkTreeSortable *sortable,
|
||||
|
||||
g_return_if_fail (iface != NULL);
|
||||
g_return_if_fail (iface->set_sort_column_id != NULL);
|
||||
|
||||
|
||||
(* iface->set_sort_column_id) (sortable, sort_column_id, order);
|
||||
}
|
||||
|
||||
@@ -184,9 +187,9 @@ gtk_tree_sortable_set_sort_column_id (GtkTreeSortable *sortable,
|
||||
* @sort_func: The comparison function
|
||||
* @user_data: (closure): User data to pass to @sort_func
|
||||
* @destroy: (nullable): Destroy notifier of @user_data
|
||||
*
|
||||
*
|
||||
* Sets the comparison function used when sorting to be @sort_func. If the
|
||||
* current sort column id of @sortable is the same as @sort_column_id, then
|
||||
* current sort column id of @sortable is the same as @sort_column_id, then
|
||||
* the model will sort using this function.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -218,15 +221,15 @@ gtk_tree_sortable_set_sort_func (GtkTreeSortable *sortable,
|
||||
* @sort_func: The comparison function
|
||||
* @user_data: (closure): User data to pass to @sort_func
|
||||
* @destroy: (nullable): Destroy notifier of @user_data
|
||||
*
|
||||
* Sets the default comparison function used when sorting to be @sort_func.
|
||||
*
|
||||
* Sets the default comparison function used when sorting to be @sort_func.
|
||||
* If the current sort column id of @sortable is
|
||||
* %GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID, then the model will sort using
|
||||
* %GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID, then the model will sort using
|
||||
* this function.
|
||||
*
|
||||
* If @sort_func is %NULL, then there will be no default comparison function.
|
||||
* This means that once the model has been sorted, it can’t go back to the
|
||||
* default state. In this case, when the current sort column id of @sortable
|
||||
* default state. In this case, when the current sort column id of @sortable
|
||||
* is %GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID, the model will be unsorted.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -245,18 +248,18 @@ gtk_tree_sortable_set_default_sort_func (GtkTreeSortable *sortable,
|
||||
|
||||
g_return_if_fail (iface != NULL);
|
||||
g_return_if_fail (iface->set_default_sort_func != NULL);
|
||||
|
||||
|
||||
(* iface->set_default_sort_func) (sortable, sort_func, user_data, destroy);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_tree_sortable_has_default_sort_func:
|
||||
* @sortable: A `GtkTreeSortable`
|
||||
*
|
||||
*
|
||||
* Returns %TRUE if the model has a default sort function. This is used
|
||||
* primarily by GtkTreeViewColumns in order to determine if a model can
|
||||
* primarily by GtkTreeViewColumns in order to determine if a model can
|
||||
* go back to the default state, or not.
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE, if the model has a default sort function
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
@@ -272,6 +275,6 @@ gtk_tree_sortable_has_default_sort_func (GtkTreeSortable *sortable)
|
||||
|
||||
g_return_val_if_fail (iface != NULL, FALSE);
|
||||
g_return_val_if_fail (iface->has_default_sort_func != NULL, FALSE);
|
||||
|
||||
|
||||
return (* iface->has_default_sort_func) (sortable);
|
||||
}
|
||||
|
||||
+205
-124
@@ -31,17 +31,20 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
/**
|
||||
* GtkTreeStore:
|
||||
*
|
||||
* A tree-like data structure that can be used with the GtkTreeView
|
||||
* A tree-like data structure that can be used with the [class@Gtk.TreeView].
|
||||
*
|
||||
* The `GtkTreeStore` object is a list model for use with a `GtkTreeView`
|
||||
* widget. It implements the `GtkTreeModel` interface, and consequently,
|
||||
* can use all of the methods available there. It also implements the
|
||||
* `GtkTreeSortable` interface so it can be sorted by the view. Finally,
|
||||
* it also implements the tree
|
||||
* [drag and drop][gtk3-GtkTreeView-drag-and-drop]
|
||||
* interfaces.
|
||||
* widget. It implements the [iface@Gtk.TreeModel] interface, and consequently,
|
||||
* can use all of the methods available there. It also implements the
|
||||
* [iface@Gtk.TreeSortable] interface so it can be sorted by the view.
|
||||
* Finally, it also implements the tree [drag][iface@Gtk.TreeDragSource]
|
||||
* and [drop][iface@Gtk.TreeDragDest] interfaces.
|
||||
*
|
||||
* # GtkTreeStore as GtkBuildable
|
||||
* `GtkTreeStore` is deprecated since GTK 4.10, and should not be used in newly
|
||||
* written code. You should use [class@Gtk.TreeListModel] for a tree-like model
|
||||
* object.
|
||||
*
|
||||
* ## GtkTreeStore as GtkBuildable
|
||||
*
|
||||
* The GtkTreeStore implementation of the `GtkBuildable` interface allows
|
||||
* to specify the model columns with a <columns> element that may contain
|
||||
@@ -49,7 +52,8 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* attribute specifies the data type for the column.
|
||||
*
|
||||
* An example of a UI Definition fragment for a tree store:
|
||||
* |[
|
||||
*
|
||||
* ```xml
|
||||
* <object class="GtkTreeStore">
|
||||
* <columns>
|
||||
* <column type="gchararray"/>
|
||||
@@ -57,7 +61,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* <column type="gint"/>
|
||||
* </columns>
|
||||
* </object>
|
||||
* ]|
|
||||
* ```
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
*/
|
||||
|
||||
struct _GtkTreeStorePrivate
|
||||
@@ -303,22 +309,26 @@ gtk_tree_store_init (GtkTreeStore *tree_store)
|
||||
* @n_columns: number of columns in the tree store
|
||||
* @...: all `GType` types for the columns, from first to last
|
||||
*
|
||||
* Creates a new tree store as with @n_columns columns each of the types passed
|
||||
* in. Note that only types derived from standard GObject fundamental types
|
||||
* Creates a new tree store.
|
||||
*
|
||||
* The tree store will have @n_columns, with each column using the
|
||||
* corresponding type passed to this function.
|
||||
*
|
||||
* Note that only types derived from standard GObject fundamental types
|
||||
* are supported.
|
||||
*
|
||||
* As an example,
|
||||
* As an example:
|
||||
*
|
||||
* ```
|
||||
* ```c
|
||||
* gtk_tree_store_new (3, G_TYPE_INT, G_TYPE_STRING, GDK_TYPE_TEXTURE);
|
||||
* ```
|
||||
*
|
||||
* will create a new `GtkTreeStore` with three columns, of type
|
||||
* will create a new `GtkTreeStore` with three columns of type
|
||||
* `int`, `gchararray`, and `GdkTexture` respectively.
|
||||
*
|
||||
* Returns: a new `GtkTreeStore`
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
GtkTreeStore *
|
||||
gtk_tree_store_new (int n_columns,
|
||||
@@ -356,11 +366,13 @@ gtk_tree_store_new (int n_columns,
|
||||
* @n_columns: number of columns in the tree store
|
||||
* @types: (array length=n_columns): an array of `GType` types for the columns, from first to last
|
||||
*
|
||||
* Non vararg creation function. Used primarily by language bindings.
|
||||
* Creates a new tree store.
|
||||
*
|
||||
* This constructor is meant for language bindings.
|
||||
*
|
||||
* Returns: (transfer full): a new `GtkTreeStore`
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
GtkTreeStore *
|
||||
gtk_tree_store_newv (int n_columns,
|
||||
@@ -395,12 +407,17 @@ gtk_tree_store_newv (int n_columns,
|
||||
* @n_columns: Number of columns for the tree store
|
||||
* @types: (array length=n_columns): An array of `GType` types, one for each column
|
||||
*
|
||||
* This function is meant primarily for `GObjects` that inherit from
|
||||
* `GtkTreeStore`, and should only be used when constructing a new
|
||||
* `GtkTreeStore`. It will not function after a row has been added,
|
||||
* or a method on the `GtkTreeModel` interface is called.
|
||||
* Sets the type of the columns in a tree store.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* This function is meant primarily for types that inherit from
|
||||
* `GtkTreeStore`, and should only be used when constructing a new
|
||||
* `GtkTreeStore`.
|
||||
*
|
||||
* This functions cannot be called after a row has been added,
|
||||
* or a method on the `GtkTreeModel` interface is called on the
|
||||
* tree store.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_set_column_types (GtkTreeStore *tree_store,
|
||||
@@ -451,12 +468,31 @@ gtk_tree_store_set_n_columns (GtkTreeStore *tree_store,
|
||||
* @column: column number
|
||||
* @type: type of the data to be stored in @column
|
||||
*
|
||||
* Supported types include: %G_TYPE_UINT, %G_TYPE_INT, %G_TYPE_UCHAR,
|
||||
* %G_TYPE_CHAR, %G_TYPE_BOOLEAN, %G_TYPE_POINTER, %G_TYPE_FLOAT,
|
||||
* %G_TYPE_DOUBLE, %G_TYPE_STRING, %G_TYPE_OBJECT, and %G_TYPE_BOXED, along with
|
||||
* subclasses of those types such as %GDK_TYPE_PIXBUF.
|
||||
* Sets the type of the given column in a tree store.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* This function is meant primarily for types that inherit from
|
||||
* `GtkTreeStore`, and should only be used when constructing a new
|
||||
* `GtkTreeStore`.
|
||||
*
|
||||
* This functions cannot be called after a row has been added,
|
||||
* or a method on the `GtkTreeModel` interface is called on the
|
||||
* tree store.
|
||||
*
|
||||
* Supported types include:
|
||||
*
|
||||
* - `G_TYPE_UINT`
|
||||
* - `G_TYPE_INT`
|
||||
* - `G_TYPE_UCHAR`
|
||||
* - `G_TYPE_CHAR`
|
||||
* - `G_TYPE_BOOLEAN`
|
||||
* - `G_TYPE_POINTER`
|
||||
* - `G_TYPE_FLOAT`
|
||||
* - `G_TYPE_DOUBLE`
|
||||
* - `G_TYPE_STRING`
|
||||
* - `G_TYPE_BOXED` and its derived types
|
||||
* - `G_TYPE_OBJECT` and its derived types
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
static void
|
||||
gtk_tree_store_set_column_type (GtkTreeStore *tree_store,
|
||||
@@ -950,10 +986,11 @@ gtk_tree_store_real_set_value (GtkTreeStore *tree_store,
|
||||
* @value: new value for the cell
|
||||
*
|
||||
* Sets the data in the cell specified by @iter and @column.
|
||||
*
|
||||
* The type of @value must be convertible to the type of the
|
||||
* column.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_set_value (GtkTreeStore *tree_store,
|
||||
@@ -1097,11 +1134,13 @@ gtk_tree_store_set_valist_internal (GtkTreeStore *tree_store,
|
||||
* @n_values: the length of the @columns and @values arrays
|
||||
*
|
||||
* A variant of gtk_tree_store_set_valist() which takes
|
||||
* the columns and values as two arrays, instead of varargs. This
|
||||
* function is mainly intended for language bindings or in case
|
||||
* the columns and values as two arrays, instead of using variadic
|
||||
* arguments.
|
||||
*
|
||||
* This function is mainly intended for language bindings or in case
|
||||
* the number of columns to change is not known until run-time.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_set_valuesv (GtkTreeStore *tree_store,
|
||||
@@ -1141,10 +1180,9 @@ gtk_tree_store_set_valuesv (GtkTreeStore *tree_store,
|
||||
* @iter: A valid `GtkTreeIter` for the row being modified
|
||||
* @var_args: va_list of column/value pairs
|
||||
*
|
||||
* See gtk_tree_store_set(); this version takes a va_list for
|
||||
* use by language bindings.
|
||||
* A version of gtk_tree_store_set() using `va_list`.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_set_valist (GtkTreeStore *tree_store,
|
||||
@@ -1183,16 +1221,23 @@ gtk_tree_store_set_valist (GtkTreeStore *tree_store,
|
||||
* @...: pairs of column number and value, terminated with -1
|
||||
*
|
||||
* Sets the value of one or more cells in the row referenced by @iter.
|
||||
*
|
||||
* The variable argument list should contain integer column numbers,
|
||||
* each column number followed by the value to be set.
|
||||
* The list is terminated by a -1. For example, to set column 0 with type
|
||||
* %G_TYPE_STRING to “Foo”, you would write
|
||||
* `gtk_tree_store_set (store, iter, 0, "Foo", -1)`.
|
||||
*
|
||||
* The value will be referenced by the store if it is a %G_TYPE_OBJECT, and it
|
||||
* will be copied if it is a %G_TYPE_STRING or %G_TYPE_BOXED.
|
||||
* The list is terminated by a value of `-1`.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* For example, to set column 0 with type `G_TYPE_STRING` to “Foo”, you would
|
||||
* write
|
||||
*
|
||||
* ```c
|
||||
* gtk_tree_store_set (store, iter, 0, "Foo", -1);
|
||||
* ```
|
||||
*
|
||||
* The value will be referenced by the store if it is a `G_TYPE_OBJECT`, and it
|
||||
* will be copied if it is a `G_TYPE_STRING` or `G_TYPE_BOXED`.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_set (GtkTreeStore *tree_store,
|
||||
@@ -1211,13 +1256,14 @@ gtk_tree_store_set (GtkTreeStore *tree_store,
|
||||
* @tree_store: A `GtkTreeStore`
|
||||
* @iter: A valid `GtkTreeIter`
|
||||
*
|
||||
* Removes @iter from @tree_store. After being removed, @iter is set to the
|
||||
* next valid row at that level, or invalidated if it previously pointed to the
|
||||
* last one.
|
||||
* Removes @iter from @tree_store.
|
||||
*
|
||||
* Returns: %TRUE if @iter is still valid, %FALSE if not.
|
||||
* After being removed, @iter is set to the next valid row at that level, or
|
||||
* invalidated if it previously pointed to the last one.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Returns: true if @iter is still valid, and false otherwise
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
gboolean
|
||||
gtk_tree_store_remove (GtkTreeStore *tree_store,
|
||||
@@ -1283,15 +1329,19 @@ gtk_tree_store_remove (GtkTreeStore *tree_store,
|
||||
* @parent: (nullable): A valid `GtkTreeIter`
|
||||
* @position: position to insert the new row, or -1 for last
|
||||
*
|
||||
* Creates a new row at @position. If parent is non-%NULL, then the row will be
|
||||
* made a child of @parent. Otherwise, the row will be created at the toplevel.
|
||||
* If @position is -1 or is larger than the number of rows at that level, then
|
||||
* the new row will be inserted to the end of the list. @iter will be changed
|
||||
* to point to this new row. The row will be empty after this function is
|
||||
* called. To fill in values, you need to call gtk_tree_store_set() or
|
||||
* gtk_tree_store_set_value().
|
||||
* Creates a new row at @position.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* If parent is non-%NULL, then the row will be made a child of @parent.
|
||||
* Otherwise, the row will be created at the toplevel.
|
||||
*
|
||||
* If @position is `-1` or is larger than the number of rows at that level,
|
||||
* then the new row will be inserted to the end of the list.
|
||||
*
|
||||
* The @iter parameter will be changed to point to this new row. The row
|
||||
* will be empty after this function is called. To fill in values, you
|
||||
* need to call gtk_tree_store_set() or gtk_tree_store_set_value().
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_insert (GtkTreeStore *tree_store,
|
||||
@@ -1346,17 +1396,21 @@ gtk_tree_store_insert (GtkTreeStore *tree_store,
|
||||
* @parent: (nullable): A valid `GtkTreeIter`
|
||||
* @sibling: (nullable): A valid `GtkTreeIter`
|
||||
*
|
||||
* Inserts a new row before @sibling. If @sibling is %NULL, then the row will
|
||||
* be appended to @parent ’s children. If @parent and @sibling are %NULL, then
|
||||
* the row will be appended to the toplevel. If both @sibling and @parent are
|
||||
* set, then @parent must be the parent of @sibling. When @sibling is set,
|
||||
* @parent is optional.
|
||||
* Inserts a new row before @sibling.
|
||||
*
|
||||
* @iter will be changed to point to this new row. The row will be empty after
|
||||
* this function is called. To fill in values, you need to call
|
||||
* If @sibling is %NULL, then the row will be appended to @parent’s children.
|
||||
*
|
||||
* If @parent and @sibling are %NULL, then the row will be appended to the
|
||||
* toplevel.
|
||||
*
|
||||
* If both @sibling and @parent are set, then @parent must be the parent
|
||||
* of @sibling. When @sibling is set, @parent is optional.
|
||||
*
|
||||
* The @iter parameter will be changed to point to this new row. The row will
|
||||
* be empty after this function is called. To fill in values, you need to call
|
||||
* gtk_tree_store_set() or gtk_tree_store_set_value().
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_insert_before (GtkTreeStore *tree_store,
|
||||
@@ -1428,17 +1482,21 @@ gtk_tree_store_insert_before (GtkTreeStore *tree_store,
|
||||
* @parent: (nullable): A valid `GtkTreeIter`
|
||||
* @sibling: (nullable): A valid `GtkTreeIter`
|
||||
*
|
||||
* Inserts a new row after @sibling. If @sibling is %NULL, then the row will be
|
||||
* prepended to @parent ’s children. If @parent and @sibling are %NULL, then
|
||||
* the row will be prepended to the toplevel. If both @sibling and @parent are
|
||||
* set, then @parent must be the parent of @sibling. When @sibling is set,
|
||||
* @parent is optional.
|
||||
* Inserts a new row after @sibling.
|
||||
*
|
||||
* @iter will be changed to point to this new row. The row will be empty after
|
||||
* this function is called. To fill in values, you need to call
|
||||
* If @sibling is %NULL, then the row will be prepended to @parent’s children.
|
||||
*
|
||||
* If @parent and @sibling are %NULL, then the row will be prepended to the
|
||||
* toplevel.
|
||||
*
|
||||
* If both @sibling and @parent are set, then @parent must be the parent
|
||||
* of @sibling. When @sibling is set, @parent is optional.
|
||||
*
|
||||
* The @iter parameter will be changed to point to this new row. The row will
|
||||
* be empty after this function is called. To fill in values, you need to call
|
||||
* gtk_tree_store_set() or gtk_tree_store_set_value().
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_insert_after (GtkTreeStore *tree_store,
|
||||
@@ -1512,26 +1570,34 @@ gtk_tree_store_insert_after (GtkTreeStore *tree_store,
|
||||
* @position: position to insert the new row, or -1 to append after existing rows
|
||||
* @...: pairs of column number and value, terminated with -1
|
||||
*
|
||||
* Creates a new row at @position. @iter will be changed to point to this
|
||||
* new row. If @position is -1, or larger than the number of rows on the list, then
|
||||
* Creates a new row at the given @position.
|
||||
*
|
||||
* The @iter parameter will be changed to point to this new row.
|
||||
*
|
||||
* If @position is -1, or larger than the number of rows on the list, then
|
||||
* the new row will be appended to the list. The row will be filled with
|
||||
* the values given to this function.
|
||||
*
|
||||
* Calling
|
||||
* `gtk_tree_store_insert_with_values (tree_store, iter, position, ...)`
|
||||
*
|
||||
* gtk_tree_store_insert_with_values (tree_store, iter, position, ...)
|
||||
*
|
||||
* has the same effect as calling
|
||||
* |[<!-- language="C" -->
|
||||
*
|
||||
* ```c
|
||||
* gtk_tree_store_insert (tree_store, iter, position);
|
||||
* gtk_tree_store_set (tree_store, iter, ...);
|
||||
* ]|
|
||||
* ```
|
||||
*
|
||||
* with the different that the former will only emit a row_inserted signal,
|
||||
* while the latter will emit row_inserted, row_changed and if the tree store
|
||||
* is sorted, rows_reordered. Since emitting the rows_reordered signal
|
||||
* repeatedly can affect the performance of the program,
|
||||
* gtk_tree_store_insert_with_values() should generally be preferred when
|
||||
* inserting rows in a sorted tree store.
|
||||
* is sorted, rows_reordered.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Since emitting the rows_reordered signal repeatedly can affect the
|
||||
* performance of the program, gtk_tree_store_insert_with_values() should
|
||||
* generally be preferred when inserting rows in a sorted tree store.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
*/
|
||||
void
|
||||
gtk_tree_store_insert_with_values (GtkTreeStore *tree_store,
|
||||
@@ -1607,10 +1673,11 @@ gtk_tree_store_insert_with_values (GtkTreeStore *tree_store,
|
||||
* @n_values: the length of the @columns and @values arrays
|
||||
*
|
||||
* A variant of gtk_tree_store_insert_with_values() which takes
|
||||
* the columns and values as two arrays, instead of varargs. This
|
||||
* function is mainly intended for language bindings.
|
||||
* the columns and values as two arrays, instead of varargs.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* This function is mainly intended for language bindings.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
*/
|
||||
void
|
||||
gtk_tree_store_insert_with_valuesv (GtkTreeStore *tree_store,
|
||||
@@ -1680,13 +1747,15 @@ gtk_tree_store_insert_with_valuesv (GtkTreeStore *tree_store,
|
||||
* @iter: (out): An unset `GtkTreeIter` to set to the prepended row
|
||||
* @parent: (nullable): A valid `GtkTreeIter`
|
||||
*
|
||||
* Prepends a new row to @tree_store. If @parent is non-%NULL, then it will prepend
|
||||
* the new row before the first child of @parent, otherwise it will prepend a row
|
||||
* to the top level. @iter will be changed to point to this new row. The row
|
||||
* will be empty after this function is called. To fill in values, you need to
|
||||
* Prepends a new row to @tree_store.
|
||||
*
|
||||
* If @parent is non-%NULL, then it will prepend the new row before the first
|
||||
* child of @parent, otherwise it will prepend a row to the top level. The
|
||||
* `iter` parameter will be changed to point to this new row. The row will
|
||||
* be empty after this function is called. To fill in values, you need to
|
||||
* call gtk_tree_store_set() or gtk_tree_store_set_value().
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_prepend (GtkTreeStore *tree_store,
|
||||
@@ -1741,13 +1810,16 @@ gtk_tree_store_prepend (GtkTreeStore *tree_store,
|
||||
* @iter: (out): An unset `GtkTreeIter` to set to the appended row
|
||||
* @parent: (nullable): A valid `GtkTreeIter`
|
||||
*
|
||||
* Appends a new row to @tree_store. If @parent is non-%NULL, then it will append the
|
||||
* new row after the last child of @parent, otherwise it will append a row to
|
||||
* the top level. @iter will be changed to point to this new row. The row will
|
||||
* be empty after this function is called. To fill in values, you need to call
|
||||
* Appends a new row to @tree_store.
|
||||
*
|
||||
* If @parent is non-%NULL, then it will append the new row after the last
|
||||
* child of @parent, otherwise it will append a row to the top level.
|
||||
*
|
||||
* The @iter parameter will be changed to point to this new row. The row will
|
||||
* be empty after this function is called. To fill in values, you need to call
|
||||
* gtk_tree_store_set() or gtk_tree_store_set_value().
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_append (GtkTreeStore *tree_store,
|
||||
@@ -1802,12 +1874,11 @@ gtk_tree_store_append (GtkTreeStore *tree_store,
|
||||
* @iter: A valid `GtkTreeIter`
|
||||
* @descendant: A valid `GtkTreeIter`
|
||||
*
|
||||
* Returns %TRUE if @iter is an ancestor of @descendant. That is, @iter is the
|
||||
* parent (or grandparent or great-grandparent) of @descendant.
|
||||
* Checks if @iter is an ancestor of @descendant.
|
||||
*
|
||||
* Returns: %TRUE, if @iter is an ancestor of @descendant
|
||||
* Returns: true if @iter is an ancestor of @descendant, and false otherwise
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
gboolean
|
||||
gtk_tree_store_is_ancestor (GtkTreeStore *tree_store,
|
||||
@@ -1828,12 +1899,14 @@ gtk_tree_store_is_ancestor (GtkTreeStore *tree_store,
|
||||
* @tree_store: A `GtkTreeStore`
|
||||
* @iter: A valid `GtkTreeIter`
|
||||
*
|
||||
* Returns the depth of @iter. This will be 0 for anything on the root level, 1
|
||||
* for anything down a level, etc.
|
||||
* Returns the depth of the position pointed by the iterator
|
||||
*
|
||||
* Returns: The depth of @iter
|
||||
* The depth will be 0 for anything on the root level, 1 for anything down
|
||||
* a level, etc.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Returns: The depth of the position pointed by the iterator
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
int
|
||||
gtk_tree_store_iter_depth (GtkTreeStore *tree_store,
|
||||
@@ -1903,7 +1976,7 @@ gtk_tree_store_increment_stamp (GtkTreeStore *tree_store)
|
||||
*
|
||||
* Removes all rows from @tree_store
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_clear (GtkTreeStore *tree_store)
|
||||
@@ -1948,9 +2021,9 @@ gtk_tree_store_iter_is_valid_helper (GtkTreeIter *iter,
|
||||
* This function is slow. Only use it for debugging and/or testing
|
||||
* purposes.
|
||||
*
|
||||
* Returns: %TRUE if the iter is valid, %FALSE if the iter is invalid.
|
||||
* Returns: true if the iter is valid, and false otherwise
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
gboolean
|
||||
gtk_tree_store_iter_is_valid (GtkTreeStore *tree_store,
|
||||
@@ -2270,16 +2343,17 @@ gtk_tree_store_reorder_func (gconstpointer a,
|
||||
/**
|
||||
* gtk_tree_store_reorder: (skip)
|
||||
* @tree_store: A `GtkTreeStore`
|
||||
* @parent: (nullable): A `GtkTreeIter`
|
||||
* @new_order: (array): an array of integers mapping the new position of each child
|
||||
* to its old position before the re-ordering,
|
||||
* i.e. @new_order`[newpos] = oldpos`.
|
||||
* @parent: (nullable): the parent of the children to re-order
|
||||
* @new_order: (array): an array of integers mapping the new position
|
||||
* of each child to its old position before the re-ordering,
|
||||
* i.e. `new_order[newpos] = oldpos`
|
||||
*
|
||||
* Reorders the children of @parent in @tree_store to follow the order
|
||||
* indicated by @new_order. Note that this function only works with
|
||||
* unsorted stores.
|
||||
* indicated by @new_order.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Note that this function only works with unsorted stores.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
*/
|
||||
void
|
||||
gtk_tree_store_reorder (GtkTreeStore *tree_store,
|
||||
@@ -2364,10 +2438,11 @@ gtk_tree_store_reorder (GtkTreeStore *tree_store,
|
||||
* @a: A `GtkTreeIter`.
|
||||
* @b: Another `GtkTreeIter`.
|
||||
*
|
||||
* Swaps @a and @b in the same level of @tree_store. Note that this function
|
||||
* only works with unsorted stores.
|
||||
* Swaps @a and @b in the same level of @tree_store.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* Note that this function only works with unsorted stores.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_swap (GtkTreeStore *tree_store,
|
||||
@@ -2830,12 +2905,15 @@ free_paths_and_out:
|
||||
* @iter: A `GtkTreeIter`
|
||||
* @position: (nullable): A `GtkTreeIter`
|
||||
*
|
||||
* Moves @iter in @tree_store to the position before @position. @iter and
|
||||
* @position should be in the same level. Note that this function only
|
||||
* works with unsorted stores. If @position is %NULL, @iter will be
|
||||
* moved to the end of the level.
|
||||
* Moves @iter in @tree_store to the position before @position.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* @iter and @position should be in the same level.
|
||||
*
|
||||
* Note that this function only works with unsorted stores.
|
||||
*
|
||||
* If @position is %NULL, @iter will be moved to the end of the level.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_move_before (GtkTreeStore *tree_store,
|
||||
@@ -2851,12 +2929,15 @@ gtk_tree_store_move_before (GtkTreeStore *tree_store,
|
||||
* @iter: A `GtkTreeIter`.
|
||||
* @position: (nullable): A `GtkTreeIter`.
|
||||
*
|
||||
* Moves @iter in @tree_store to the position after @position. @iter and
|
||||
* @position should be in the same level. Note that this function only
|
||||
* works with unsorted stores. If @position is %NULL, @iter will be moved
|
||||
* to the start of the level.
|
||||
* Moves @iter in @tree_store to the position after @position.
|
||||
*
|
||||
* Deprecated: 4.10
|
||||
* @iter and @position should be in the same level.
|
||||
*
|
||||
* Note that this function only works with unsorted stores.
|
||||
*
|
||||
* If @position is %NULL, @iter will be moved to the start of the level.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.TreeListModel] instead
|
||||
**/
|
||||
void
|
||||
gtk_tree_store_move_after (GtkTreeStore *tree_store,
|
||||
|
||||
@@ -60,63 +60,63 @@ struct _GtkTreeStoreClass
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_tree_store_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
GtkTreeStore *gtk_tree_store_new (int n_columns,
|
||||
...);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
GtkTreeStore *gtk_tree_store_newv (int n_columns,
|
||||
GType *types);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_set_column_types (GtkTreeStore *tree_store,
|
||||
int n_columns,
|
||||
GType *types);
|
||||
|
||||
/* NOTE: use gtk_tree_model_get to get values from a GtkTreeStore */
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_set_value (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
int column,
|
||||
GValue *value);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_set (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
...);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_set_valuesv (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
int *columns,
|
||||
GValue *values,
|
||||
int n_values);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_set_valist (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
va_list var_args);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
gboolean gtk_tree_store_remove (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_insert (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *parent,
|
||||
int position);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_insert_before (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *parent,
|
||||
GtkTreeIter *sibling);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_insert_after (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *parent,
|
||||
GtkTreeIter *sibling);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_insert_with_values (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *parent,
|
||||
int position,
|
||||
...);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_insert_with_valuesv (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *parent,
|
||||
@@ -124,39 +124,39 @@ void gtk_tree_store_insert_with_valuesv (GtkTreeStore *tree_store,
|
||||
int *columns,
|
||||
GValue *values,
|
||||
int n_values);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_prepend (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *parent);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_append (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *parent);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
gboolean gtk_tree_store_is_ancestor (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *descendant);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
int gtk_tree_store_iter_depth (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_clear (GtkTreeStore *tree_store);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
gboolean gtk_tree_store_iter_is_valid (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_reorder (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *parent,
|
||||
int *new_order);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_swap (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *a,
|
||||
GtkTreeIter *b);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_move_before (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *position);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkTreeListModel)
|
||||
void gtk_tree_store_move_after (GtkTreeStore *tree_store,
|
||||
GtkTreeIter *iter,
|
||||
GtkTreeIter *position);
|
||||
|
||||
+203
-200
File diff suppressed because it is too large
Load Diff
@@ -190,56 +190,56 @@ GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_tree_view_get_type (void) G_GNUC_CONST;
|
||||
|
||||
/* Creators */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GtkWidget *gtk_tree_view_new (void);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GtkWidget *gtk_tree_view_new_with_model (GtkTreeModel *model);
|
||||
|
||||
/* Accessors */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GtkTreeModel *gtk_tree_view_get_model (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_model (GtkTreeView *tree_view,
|
||||
GtkTreeModel *model);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GtkTreeSelection *gtk_tree_view_get_selection (GtkTreeView *tree_view);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_headers_visible (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_headers_visible (GtkTreeView *tree_view,
|
||||
gboolean headers_visible);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_columns_autosize (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_headers_clickable (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_headers_clickable (GtkTreeView *tree_view,
|
||||
gboolean setting);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_activate_on_single_click (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_activate_on_single_click (GtkTreeView *tree_view,
|
||||
gboolean single);
|
||||
|
||||
/* Column functions */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
int gtk_tree_view_append_column (GtkTreeView *tree_view,
|
||||
GtkTreeViewColumn *column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
int gtk_tree_view_remove_column (GtkTreeView *tree_view,
|
||||
GtkTreeViewColumn *column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
int gtk_tree_view_insert_column (GtkTreeView *tree_view,
|
||||
GtkTreeViewColumn *column,
|
||||
int position);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
int gtk_tree_view_insert_column_with_attributes (GtkTreeView *tree_view,
|
||||
int position,
|
||||
const char *title,
|
||||
GtkCellRenderer *cell,
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
int gtk_tree_view_insert_column_with_data_func (GtkTreeView *tree_view,
|
||||
int position,
|
||||
const char *title,
|
||||
@@ -248,89 +248,89 @@ int gtk_tree_view_insert_column_with_data_func (GtkTreeView
|
||||
gpointer data,
|
||||
GDestroyNotify dnotify);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
guint gtk_tree_view_get_n_columns (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GtkTreeViewColumn *gtk_tree_view_get_column (GtkTreeView *tree_view,
|
||||
int n);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GList *gtk_tree_view_get_columns (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_move_column_after (GtkTreeView *tree_view,
|
||||
GtkTreeViewColumn *column,
|
||||
GtkTreeViewColumn *base_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_expander_column (GtkTreeView *tree_view,
|
||||
GtkTreeViewColumn *column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GtkTreeViewColumn *gtk_tree_view_get_expander_column (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_column_drag_function (GtkTreeView *tree_view,
|
||||
GtkTreeViewColumnDropFunc func,
|
||||
gpointer user_data,
|
||||
GDestroyNotify destroy);
|
||||
|
||||
/* Actions */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_scroll_to_point (GtkTreeView *tree_view,
|
||||
int tree_x,
|
||||
int tree_y);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_scroll_to_cell (GtkTreeView *tree_view,
|
||||
GtkTreePath *path,
|
||||
GtkTreeViewColumn *column,
|
||||
gboolean use_align,
|
||||
float row_align,
|
||||
float col_align);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_row_activated (GtkTreeView *tree_view,
|
||||
GtkTreePath *path,
|
||||
GtkTreeViewColumn *column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_expand_all (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_collapse_all (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_expand_to_path (GtkTreeView *tree_view,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_expand_row (GtkTreeView *tree_view,
|
||||
GtkTreePath *path,
|
||||
gboolean open_all);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_collapse_row (GtkTreeView *tree_view,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_map_expanded_rows (GtkTreeView *tree_view,
|
||||
GtkTreeViewMappingFunc func,
|
||||
gpointer data);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_row_expanded (GtkTreeView *tree_view,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_reorderable (GtkTreeView *tree_view,
|
||||
gboolean reorderable);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_reorderable (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_cursor (GtkTreeView *tree_view,
|
||||
GtkTreePath *path,
|
||||
GtkTreeViewColumn *focus_column,
|
||||
gboolean start_editing);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_cursor_on_cell (GtkTreeView *tree_view,
|
||||
GtkTreePath *path,
|
||||
GtkTreeViewColumn *focus_column,
|
||||
GtkCellRenderer *focus_cell,
|
||||
gboolean start_editing);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_get_cursor (GtkTreeView *tree_view,
|
||||
GtkTreePath **path,
|
||||
GtkTreeViewColumn **focus_column);
|
||||
|
||||
|
||||
/* Layout information */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_path_at_pos (GtkTreeView *tree_view,
|
||||
int x,
|
||||
int y,
|
||||
@@ -338,24 +338,24 @@ gboolean gtk_tree_view_get_path_at_pos (GtkTreeView
|
||||
GtkTreeViewColumn **column,
|
||||
int *cell_x,
|
||||
int *cell_y);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_get_cell_area (GtkTreeView *tree_view,
|
||||
GtkTreePath *path,
|
||||
GtkTreeViewColumn *column,
|
||||
GdkRectangle *rect);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_get_background_area (GtkTreeView *tree_view,
|
||||
GtkTreePath *path,
|
||||
GtkTreeViewColumn *column,
|
||||
GdkRectangle *rect);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_get_visible_rect (GtkTreeView *tree_view,
|
||||
GdkRectangle *visible_rect);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_visible_range (GtkTreeView *tree_view,
|
||||
GtkTreePath **start_path,
|
||||
GtkTreePath **end_path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_is_blank_at_pos (GtkTreeView *tree_view,
|
||||
int x,
|
||||
int y,
|
||||
@@ -365,168 +365,168 @@ gboolean gtk_tree_view_is_blank_at_pos (GtkTreeView
|
||||
int *cell_y);
|
||||
|
||||
/* Drag-and-Drop support */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_enable_model_drag_source (GtkTreeView *tree_view,
|
||||
GdkModifierType start_button_mask,
|
||||
GdkContentFormats *formats,
|
||||
GdkDragAction actions);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_enable_model_drag_dest (GtkTreeView *tree_view,
|
||||
GdkContentFormats *formats,
|
||||
GdkDragAction actions);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_unset_rows_drag_source (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_unset_rows_drag_dest (GtkTreeView *tree_view);
|
||||
|
||||
|
||||
/* These are useful to implement your own custom stuff. */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_drag_dest_row (GtkTreeView *tree_view,
|
||||
GtkTreePath *path,
|
||||
GtkTreeViewDropPosition pos);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_get_drag_dest_row (GtkTreeView *tree_view,
|
||||
GtkTreePath **path,
|
||||
GtkTreeViewDropPosition *pos);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_dest_row_at_pos (GtkTreeView *tree_view,
|
||||
int drag_x,
|
||||
int drag_y,
|
||||
GtkTreePath **path,
|
||||
GtkTreeViewDropPosition *pos);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GdkPaintable *gtk_tree_view_create_row_drag_icon (GtkTreeView *tree_view,
|
||||
GtkTreePath *path);
|
||||
|
||||
/* Interactive search */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_enable_search (GtkTreeView *tree_view,
|
||||
gboolean enable_search);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_enable_search (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
int gtk_tree_view_get_search_column (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_search_column (GtkTreeView *tree_view,
|
||||
int column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GtkTreeViewSearchEqualFunc gtk_tree_view_get_search_equal_func (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_search_equal_func (GtkTreeView *tree_view,
|
||||
GtkTreeViewSearchEqualFunc search_equal_func,
|
||||
gpointer search_user_data,
|
||||
GDestroyNotify search_destroy);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GtkEditable *gtk_tree_view_get_search_entry (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_search_entry (GtkTreeView *tree_view,
|
||||
GtkEditable *entry);
|
||||
|
||||
/* Convert between the different coordinate systems */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_convert_widget_to_tree_coords (GtkTreeView *tree_view,
|
||||
int wx,
|
||||
int wy,
|
||||
int *tx,
|
||||
int *ty);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_convert_tree_to_widget_coords (GtkTreeView *tree_view,
|
||||
int tx,
|
||||
int ty,
|
||||
int *wx,
|
||||
int *wy);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_convert_widget_to_bin_window_coords (GtkTreeView *tree_view,
|
||||
int wx,
|
||||
int wy,
|
||||
int *bx,
|
||||
int *by);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_convert_bin_window_to_widget_coords (GtkTreeView *tree_view,
|
||||
int bx,
|
||||
int by,
|
||||
int *wx,
|
||||
int *wy);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_convert_tree_to_bin_window_coords (GtkTreeView *tree_view,
|
||||
int tx,
|
||||
int ty,
|
||||
int *bx,
|
||||
int *by);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_convert_bin_window_to_tree_coords (GtkTreeView *tree_view,
|
||||
int bx,
|
||||
int by,
|
||||
int *tx,
|
||||
int *ty);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_fixed_height_mode (GtkTreeView *tree_view,
|
||||
gboolean enable);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_fixed_height_mode (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_hover_selection (GtkTreeView *tree_view,
|
||||
gboolean hover);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_hover_selection (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_hover_expand (GtkTreeView *tree_view,
|
||||
gboolean expand);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_hover_expand (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_rubber_banding (GtkTreeView *tree_view,
|
||||
gboolean enable);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_rubber_banding (GtkTreeView *tree_view);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_is_rubber_banding_active (GtkTreeView *tree_view);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GtkTreeViewRowSeparatorFunc gtk_tree_view_get_row_separator_func (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_row_separator_func (GtkTreeView *tree_view,
|
||||
GtkTreeViewRowSeparatorFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
GtkTreeViewGridLines gtk_tree_view_get_grid_lines (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_grid_lines (GtkTreeView *tree_view,
|
||||
GtkTreeViewGridLines grid_lines);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_enable_tree_lines (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_enable_tree_lines (GtkTreeView *tree_view,
|
||||
gboolean enabled);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_show_expanders (GtkTreeView *tree_view,
|
||||
gboolean enabled);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_show_expanders (GtkTreeView *tree_view);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_level_indentation (GtkTreeView *tree_view,
|
||||
int indentation);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
int gtk_tree_view_get_level_indentation (GtkTreeView *tree_view);
|
||||
|
||||
/* Convenience functions for setting tooltips */
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_tooltip_row (GtkTreeView *tree_view,
|
||||
GtkTooltip *tooltip,
|
||||
GtkTreePath *path);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_tooltip_cell (GtkTreeView *tree_view,
|
||||
GtkTooltip *tooltip,
|
||||
GtkTreePath *path,
|
||||
GtkTreeViewColumn *column,
|
||||
GtkCellRenderer *cell);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
gboolean gtk_tree_view_get_tooltip_context(GtkTreeView *tree_view,
|
||||
int x,
|
||||
int y,
|
||||
@@ -534,10 +534,10 @@ gboolean gtk_tree_view_get_tooltip_context(GtkTreeView *tree_view,
|
||||
GtkTreeModel **model,
|
||||
GtkTreePath **path,
|
||||
GtkTreeIter *iter);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
void gtk_tree_view_set_tooltip_column (GtkTreeView *tree_view,
|
||||
int column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkListView)
|
||||
int gtk_tree_view_get_tooltip_column (GtkTreeView *tree_view);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkTreeView, g_object_unref)
|
||||
|
||||
@@ -56,6 +56,9 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
* for an overview of all the objects and data types related to the tree widget and
|
||||
* how they work together, and to the [class@Gtk.TreeView] documentation for specifics
|
||||
* about the CSS node structure for treeviews and their headers.
|
||||
*
|
||||
* Deprecated: 4.10: Use [class@Gtk.ColumnView] and [class@Gtk.ColumnViewColumn]
|
||||
* instead of [class@Gtk.TreeView] to show a tabular list
|
||||
*/
|
||||
|
||||
|
||||
@@ -149,7 +152,7 @@ struct _GtkTreeViewColumnClass
|
||||
};
|
||||
|
||||
|
||||
struct _GtkTreeViewColumnPrivate
|
||||
struct _GtkTreeViewColumnPrivate
|
||||
{
|
||||
GtkWidget *tree_view;
|
||||
GtkWidget *button;
|
||||
@@ -381,7 +384,7 @@ gtk_tree_view_column_class_init (GtkTreeViewColumnClass *class)
|
||||
*
|
||||
* The `GtkCellArea` used to layout cell renderers for this column.
|
||||
*
|
||||
* If no area is specified when creating the tree view column with gtk_tree_view_column_new_with_area()
|
||||
* If no area is specified when creating the tree view column with gtk_tree_view_column_new_with_area()
|
||||
* a horizontally oriented `GtkCellAreaBox` will be used.
|
||||
*/
|
||||
tree_column_props[PROP_CELL_AREA] =
|
||||
@@ -467,14 +470,14 @@ gtk_tree_view_column_dispose (GObject *object)
|
||||
GtkTreeViewColumn *tree_column = (GtkTreeViewColumn *) object;
|
||||
GtkTreeViewColumnPrivate *priv = tree_column->priv;
|
||||
|
||||
/* Remove this column from its treeview,
|
||||
/* Remove this column from its treeview,
|
||||
* in case this column is destroyed before its treeview.
|
||||
*/
|
||||
*/
|
||||
if (priv->tree_view)
|
||||
gtk_tree_view_remove_column (GTK_TREE_VIEW (priv->tree_view), tree_column);
|
||||
|
||||
|
||||
if (priv->cell_area_context)
|
||||
{
|
||||
{
|
||||
g_signal_handler_disconnect (priv->cell_area_context,
|
||||
priv->context_changed_signal);
|
||||
|
||||
@@ -606,7 +609,7 @@ gtk_tree_view_column_set_property (GObject *object,
|
||||
gtk_tree_view_column_set_sort_order (tree_column,
|
||||
g_value_get_enum (value));
|
||||
break;
|
||||
|
||||
|
||||
case PROP_SORT_COLUMN_ID:
|
||||
gtk_tree_view_column_set_sort_column_id (tree_column,
|
||||
g_value_get_int (value));
|
||||
@@ -731,7 +734,7 @@ gtk_tree_view_column_get_property (GObject *object,
|
||||
g_value_set_enum (value,
|
||||
gtk_tree_view_column_get_sort_order (tree_column));
|
||||
break;
|
||||
|
||||
|
||||
case PROP_SORT_COLUMN_ID:
|
||||
g_value_set_int (value,
|
||||
gtk_tree_view_column_get_sort_column_id (tree_column));
|
||||
@@ -740,7 +743,7 @@ gtk_tree_view_column_get_property (GObject *object,
|
||||
case PROP_CELL_AREA:
|
||||
g_value_set_object (value, tree_column->priv->cell_area);
|
||||
break;
|
||||
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
@@ -979,7 +982,7 @@ gtk_tree_view_column_update_button (GtkTreeViewColumn *tree_column)
|
||||
gtk_widget_hide (priv->button);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (priv->reorderable || priv->clickable)
|
||||
{
|
||||
gtk_widget_set_focusable (priv->button, TRUE);
|
||||
@@ -1177,7 +1180,7 @@ gtk_tree_view_column_setup_sort_column_id_callback (GtkTreeViewColumn *tree_colu
|
||||
gtk_tree_view_column_set_sort_indicator (tree_column, TRUE);
|
||||
gtk_tree_view_column_set_sort_order (tree_column, real_order);
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
gtk_tree_view_column_set_sort_indicator (tree_column, FALSE);
|
||||
}
|
||||
@@ -1192,7 +1195,7 @@ gtk_tree_view_column_context_changed (GtkCellAreaContext *context,
|
||||
/* Here we want the column re-requested if the underlying context was
|
||||
* actually reset for any reason, this can happen if the underlying
|
||||
* area/cell configuration changes (i.e. cell packing properties
|
||||
* or cell spacing and the like)
|
||||
* or cell spacing and the like)
|
||||
*
|
||||
* Note that we block this handler while requesting for sizes
|
||||
* so there is no need to check for the new context size being -1,
|
||||
@@ -1221,13 +1224,13 @@ gtk_tree_view_column_add_editable_callback (GtkCellArea *area,
|
||||
if (priv->tree_view)
|
||||
{
|
||||
path = gtk_tree_path_new_from_string (path_string);
|
||||
|
||||
|
||||
_gtk_tree_view_add_editable (GTK_TREE_VIEW (priv->tree_view),
|
||||
column,
|
||||
path,
|
||||
edit_widget,
|
||||
cell_area);
|
||||
|
||||
|
||||
gtk_tree_path_free (path);
|
||||
}
|
||||
}
|
||||
@@ -1449,9 +1452,9 @@ _gtk_tree_view_column_is_blank_at_pos (GtkTreeViewColumn *column,
|
||||
|
||||
/**
|
||||
* gtk_tree_view_column_new:
|
||||
*
|
||||
*
|
||||
* Creates a new `GtkTreeViewColumn`.
|
||||
*
|
||||
*
|
||||
* Returns: A newly created `GtkTreeViewColumn`.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -1469,9 +1472,9 @@ gtk_tree_view_column_new (void)
|
||||
/**
|
||||
* gtk_tree_view_column_new_with_area:
|
||||
* @area: the `GtkCellArea` that the newly created column should use to layout cells.
|
||||
*
|
||||
*
|
||||
* Creates a new `GtkTreeViewColumn` using @area to render its cells.
|
||||
*
|
||||
*
|
||||
* Returns: A newly created `GtkTreeViewColumn`.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -1505,7 +1508,7 @@ gtk_tree_view_column_new_with_area (GtkCellArea *area)
|
||||
* {
|
||||
* GtkTreeViewColumn *column;
|
||||
* GtkCellRenderer *renderer = gtk_cell_renderer_text_new ();
|
||||
*
|
||||
*
|
||||
* column = gtk_tree_view_column_new_with_attributes ("Title",
|
||||
* renderer,
|
||||
* "text", TEXT_COLUMN,
|
||||
@@ -1513,7 +1516,7 @@ gtk_tree_view_column_new_with_area (GtkCellArea *area)
|
||||
* NULL);
|
||||
* }
|
||||
* ]|
|
||||
*
|
||||
*
|
||||
* Returns: A newly created `GtkTreeViewColumn`.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -1581,7 +1584,7 @@ gtk_tree_view_column_pack_end (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_clear:
|
||||
* @tree_column: A `GtkTreeViewColumn`
|
||||
*
|
||||
*
|
||||
* Unsets all the mappings on all renderers on the @tree_column.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -1598,7 +1601,7 @@ gtk_tree_view_column_clear (GtkTreeViewColumn *tree_column)
|
||||
* @cell_renderer: the `GtkCellRenderer` to set attributes on
|
||||
* @attribute: An attribute on the renderer
|
||||
* @column: The column position on the model to get the attribute from.
|
||||
*
|
||||
*
|
||||
* Adds an attribute mapping to the list in @tree_column.
|
||||
*
|
||||
* The @column is the
|
||||
@@ -1633,7 +1636,7 @@ gtk_tree_view_column_set_attributesv (GtkTreeViewColumn *tree_column,
|
||||
|
||||
gtk_cell_layout_clear_attributes (GTK_CELL_LAYOUT (priv->cell_area),
|
||||
cell_renderer);
|
||||
|
||||
|
||||
while (attribute != NULL)
|
||||
{
|
||||
column = va_arg (args, int);
|
||||
@@ -1677,10 +1680,10 @@ gtk_tree_view_column_set_attributes (GtkTreeViewColumn *tree_column,
|
||||
* gtk_tree_view_column_set_cell_data_func:
|
||||
* @tree_column: A `GtkTreeViewColumn`
|
||||
* @cell_renderer: A `GtkCellRenderer`
|
||||
* @func: (nullable): The `GtkTreeCellDataFunc` to use.
|
||||
* @func: (nullable): The `GtkTreeCellDataFunc` to use.
|
||||
* @func_data: (closure): The user data for @func.
|
||||
* @destroy: The destroy notification for @func_data
|
||||
*
|
||||
*
|
||||
* Sets the `GtkTreeCellDataFunc` to use for the column.
|
||||
*
|
||||
* This
|
||||
@@ -1727,7 +1730,7 @@ gtk_tree_view_column_clear_attributes (GtkTreeViewColumn *tree_column,
|
||||
* gtk_tree_view_column_set_spacing:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
* @spacing: distance between cell renderers in pixels.
|
||||
*
|
||||
*
|
||||
* Sets the spacing field of @tree_column, which is the number of pixels to
|
||||
* place between cell renderers packed into it.
|
||||
*
|
||||
@@ -1756,9 +1759,9 @@ gtk_tree_view_column_set_spacing (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_spacing:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
*
|
||||
*
|
||||
* Returns the spacing of @tree_column.
|
||||
*
|
||||
*
|
||||
* Returns: the spacing of @tree_column.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -1781,7 +1784,7 @@ gtk_tree_view_column_get_spacing (GtkTreeViewColumn *tree_column)
|
||||
* gtk_tree_view_column_set_visible:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
* @visible: %TRUE if the @tree_column is visible.
|
||||
*
|
||||
*
|
||||
* Sets the visibility of @tree_column.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -1814,9 +1817,9 @@ gtk_tree_view_column_set_visible (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_visible:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
*
|
||||
*
|
||||
* Returns %TRUE if @tree_column is visible.
|
||||
*
|
||||
*
|
||||
* Returns: whether the column is visible or not. If it is visible, then
|
||||
* the tree will show the column.
|
||||
*
|
||||
@@ -1834,7 +1837,7 @@ gtk_tree_view_column_get_visible (GtkTreeViewColumn *tree_column)
|
||||
* gtk_tree_view_column_set_resizable:
|
||||
* @tree_column: A `GtkTreeViewColumn`
|
||||
* @resizable: %TRUE, if the column can be resized
|
||||
*
|
||||
*
|
||||
* If @resizable is %TRUE, then the user can explicitly resize the column by
|
||||
* grabbing the outer edge of the column button.
|
||||
*
|
||||
@@ -1871,9 +1874,9 @@ gtk_tree_view_column_set_resizable (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_resizable:
|
||||
* @tree_column: A `GtkTreeViewColumn`
|
||||
*
|
||||
*
|
||||
* Returns %TRUE if the @tree_column can be resized by the end user.
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE, if the @tree_column can be resized.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -1891,7 +1894,7 @@ gtk_tree_view_column_get_resizable (GtkTreeViewColumn *tree_column)
|
||||
* gtk_tree_view_column_set_sizing:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
* @type: The `GtkTreeViewColumn`Sizing.
|
||||
*
|
||||
*
|
||||
* Sets the growth behavior of @tree_column to @type.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -1922,9 +1925,9 @@ gtk_tree_view_column_set_sizing (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_sizing:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
*
|
||||
*
|
||||
* Returns the current type of @tree_column.
|
||||
*
|
||||
*
|
||||
* Returns: The type of @tree_column.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -1940,9 +1943,9 @@ gtk_tree_view_column_get_sizing (GtkTreeViewColumn *tree_column)
|
||||
/**
|
||||
* gtk_tree_view_column_get_width:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
*
|
||||
*
|
||||
* Returns the current size of @tree_column in pixels.
|
||||
*
|
||||
*
|
||||
* Returns: The current width of @tree_column.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -1958,9 +1961,9 @@ gtk_tree_view_column_get_width (GtkTreeViewColumn *tree_column)
|
||||
/**
|
||||
* gtk_tree_view_column_get_x_offset:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
*
|
||||
*
|
||||
* Returns the current X offset of @tree_column in pixels.
|
||||
*
|
||||
*
|
||||
* Returns: The current X offset of @tree_column.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2121,7 +2124,7 @@ gtk_tree_view_column_get_fixed_width (GtkTreeViewColumn *tree_column)
|
||||
* gtk_tree_view_column_set_min_width:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
* @min_width: The minimum width of the column in pixels, or -1.
|
||||
*
|
||||
*
|
||||
* Sets the minimum width of the @tree_column. If @min_width is -1, then the
|
||||
* minimum width is unset.
|
||||
*
|
||||
@@ -2167,10 +2170,10 @@ gtk_tree_view_column_set_min_width (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_min_width:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
*
|
||||
*
|
||||
* Returns the minimum width in pixels of the @tree_column, or -1 if no minimum
|
||||
* width is set.
|
||||
*
|
||||
*
|
||||
* Returns: The minimum width of the @tree_column.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2187,7 +2190,7 @@ gtk_tree_view_column_get_min_width (GtkTreeViewColumn *tree_column)
|
||||
* gtk_tree_view_column_set_max_width:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
* @max_width: The maximum width of the column in pixels, or -1.
|
||||
*
|
||||
*
|
||||
* Sets the maximum width of the @tree_column. If @max_width is -1, then the
|
||||
* maximum width is unset. Note, the column can actually be wider than max
|
||||
* width if it’s the last column in a view. In this case, the column expands to
|
||||
@@ -2235,10 +2238,10 @@ gtk_tree_view_column_set_max_width (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_max_width:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
*
|
||||
*
|
||||
* Returns the maximum width in pixels of the @tree_column, or -1 if no maximum
|
||||
* width is set.
|
||||
*
|
||||
*
|
||||
* Returns: The maximum width of the @tree_column.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2254,7 +2257,7 @@ gtk_tree_view_column_get_max_width (GtkTreeViewColumn *tree_column)
|
||||
/**
|
||||
* gtk_tree_view_column_clicked:
|
||||
* @tree_column: a `GtkTreeViewColumn`
|
||||
*
|
||||
*
|
||||
* Emits the “clicked” signal on the column. This function will only work if
|
||||
* @tree_column is clickable.
|
||||
*
|
||||
@@ -2277,7 +2280,7 @@ gtk_tree_view_column_clicked (GtkTreeViewColumn *tree_column)
|
||||
* gtk_tree_view_column_set_title:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
* @title: The title of the @tree_column.
|
||||
*
|
||||
*
|
||||
* Sets the title of the @tree_column. If a custom widget has been set, then
|
||||
* this value is ignored.
|
||||
*
|
||||
@@ -2305,9 +2308,9 @@ gtk_tree_view_column_set_title (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_title:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
*
|
||||
*
|
||||
* Returns the title of the widget.
|
||||
*
|
||||
*
|
||||
* Returns: the title of the column. This string should not be
|
||||
* modified or freed.
|
||||
*
|
||||
@@ -2383,7 +2386,7 @@ gtk_tree_view_column_get_expand (GtkTreeViewColumn *tree_column)
|
||||
* gtk_tree_view_column_set_clickable:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
* @clickable: %TRUE if the header is active.
|
||||
*
|
||||
*
|
||||
* Sets the header to be active if @clickable is %TRUE. When the header is
|
||||
* active, then it can take keyboard focus, and can be clicked.
|
||||
*
|
||||
@@ -2411,9 +2414,9 @@ gtk_tree_view_column_set_clickable (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_clickable:
|
||||
* @tree_column: a `GtkTreeViewColumn`
|
||||
*
|
||||
*
|
||||
* Returns %TRUE if the user can click on the header for the column.
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE if user can click the column header.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2482,7 +2485,7 @@ gtk_tree_view_column_get_widget (GtkTreeViewColumn *tree_column)
|
||||
* gtk_tree_view_column_set_alignment:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
* @xalign: The alignment, which is between [0.0 and 1.0] inclusive.
|
||||
*
|
||||
*
|
||||
* Sets the alignment of the title or custom widget inside the column header.
|
||||
* The alignment determines its location inside the button -- 0.0 for left, 0.5
|
||||
* for center, 1.0 for right.
|
||||
@@ -2512,10 +2515,10 @@ gtk_tree_view_column_set_alignment (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_alignment:
|
||||
* @tree_column: A `GtkTreeViewColumn`.
|
||||
*
|
||||
*
|
||||
* Returns the current x alignment of @tree_column. This value can range
|
||||
* between 0.0 and 1.0.
|
||||
*
|
||||
*
|
||||
* Returns: The current alignent of @tree_column.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2532,7 +2535,7 @@ gtk_tree_view_column_get_alignment (GtkTreeViewColumn *tree_column)
|
||||
* gtk_tree_view_column_set_reorderable:
|
||||
* @tree_column: A `GtkTreeViewColumn`
|
||||
* @reorderable: %TRUE, if the column can be reordered.
|
||||
*
|
||||
*
|
||||
* If @reorderable is %TRUE, then the column can be reordered by the end user
|
||||
* dragging the header.
|
||||
*
|
||||
@@ -2562,9 +2565,9 @@ gtk_tree_view_column_set_reorderable (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_reorderable:
|
||||
* @tree_column: A `GtkTreeViewColumn`
|
||||
*
|
||||
*
|
||||
* Returns %TRUE if the @tree_column can be reordered by the user.
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE if the @tree_column can be reordered by the user.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2583,7 +2586,7 @@ gtk_tree_view_column_get_reorderable (GtkTreeViewColumn *tree_column)
|
||||
* @tree_column: a `GtkTreeViewColumn`
|
||||
* @sort_column_id: The @sort_column_id of the model to sort on.
|
||||
*
|
||||
* Sets the logical @sort_column_id that this column sorts on when this column
|
||||
* Sets the logical @sort_column_id that this column sorts on when this column
|
||||
* is selected for sorting. Doing so makes the column header clickable.
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2693,9 +2696,9 @@ gtk_tree_view_column_set_sort_indicator (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_sort_indicator:
|
||||
* @tree_column: a `GtkTreeViewColumn`
|
||||
*
|
||||
*
|
||||
* Gets the value set by gtk_tree_view_column_set_sort_indicator().
|
||||
*
|
||||
*
|
||||
* Returns: whether the sort indicator arrow is displayed
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2713,16 +2716,16 @@ gtk_tree_view_column_get_sort_indicator (GtkTreeViewColumn *tree_column)
|
||||
* @tree_column: a `GtkTreeViewColumn`
|
||||
* @order: sort order that the sort indicator should indicate
|
||||
*
|
||||
* Changes the appearance of the sort indicator.
|
||||
*
|
||||
* Changes the appearance of the sort indicator.
|
||||
*
|
||||
* This does not actually sort the model. Use
|
||||
* gtk_tree_view_column_set_sort_column_id() if you want automatic sorting
|
||||
* support. This function is primarily for custom sorting behavior, and should
|
||||
* be used in conjunction with gtk_tree_sortable_set_sort_column_id() to do
|
||||
* that. For custom models, the mechanism will vary.
|
||||
*
|
||||
* that. For custom models, the mechanism will vary.
|
||||
*
|
||||
* The sort indicator changes direction to indicate normal sort or reverse sort.
|
||||
* Note that you must have the sort indicator enabled to see anything when
|
||||
* Note that you must have the sort indicator enabled to see anything when
|
||||
* calling this function; see gtk_tree_view_column_set_sort_indicator().
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2744,9 +2747,9 @@ gtk_tree_view_column_set_sort_order (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_get_sort_order:
|
||||
* @tree_column: a `GtkTreeViewColumn`
|
||||
*
|
||||
*
|
||||
* Gets the value set by gtk_tree_view_column_set_sort_order().
|
||||
*
|
||||
*
|
||||
* Returns: the sort order the sort indicator is indicating
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2766,7 +2769,7 @@ gtk_tree_view_column_get_sort_order (GtkTreeViewColumn *tree_column)
|
||||
* @iter: The `GtkTreeIter` to get the cell renderer’s attributes from.
|
||||
* @is_expander: %TRUE, if the row has children
|
||||
* @is_expanded: %TRUE, if the row has visible children
|
||||
*
|
||||
*
|
||||
* Sets the cell renderer based on the @tree_model and @iter. That is, for
|
||||
* every attribute mapping in @tree_column, it will get a value from the set
|
||||
* column on the @iter, and use that value to set the attribute on the cell
|
||||
@@ -2797,7 +2800,7 @@ gtk_tree_view_column_cell_set_cell_data (GtkTreeViewColumn *tree_column,
|
||||
* @y_offset: (out) (optional): location to return y offset of a cell relative to @cell_area
|
||||
* @width: (out) (optional): location to return width needed to render a cell
|
||||
* @height: (out) (optional): location to return height needed to render a cell
|
||||
*
|
||||
*
|
||||
* Obtains the width and height needed to render the column. This is used
|
||||
* primarily by the `GtkTreeView`.
|
||||
*
|
||||
@@ -2817,7 +2820,7 @@ gtk_tree_view_column_cell_get_size (GtkTreeViewColumn *tree_column,
|
||||
|
||||
priv = tree_column->priv;
|
||||
|
||||
g_signal_handler_block (priv->cell_area_context,
|
||||
g_signal_handler_block (priv->cell_area_context,
|
||||
priv->context_changed_signal);
|
||||
|
||||
gtk_cell_area_get_preferred_width (priv->cell_area,
|
||||
@@ -2834,7 +2837,7 @@ gtk_tree_view_column_cell_get_size (GtkTreeViewColumn *tree_column,
|
||||
&min_height,
|
||||
NULL);
|
||||
|
||||
g_signal_handler_unblock (priv->cell_area_context,
|
||||
g_signal_handler_unblock (priv->cell_area_context,
|
||||
priv->context_changed_signal);
|
||||
|
||||
|
||||
@@ -2852,7 +2855,7 @@ gtk_tree_view_column_cell_get_size (GtkTreeViewColumn *tree_column,
|
||||
* @background_area: entire cell area (including tree expanders and maybe padding on the sides)
|
||||
* @cell_area: area normally rendered by a cell renderer
|
||||
* @flags: flags that affect rendering
|
||||
*
|
||||
*
|
||||
* Renders the cell contained by #tree_column. This is used primarily by the
|
||||
* `GtkTreeView`.
|
||||
*
|
||||
@@ -2904,11 +2907,11 @@ _gtk_tree_view_column_cell_event (GtkTreeViewColumn *tree_column,
|
||||
/**
|
||||
* gtk_tree_view_column_cell_is_visible:
|
||||
* @tree_column: A `GtkTreeViewColumn`
|
||||
*
|
||||
*
|
||||
* Returns %TRUE if any of the cells packed into the @tree_column are visible.
|
||||
* For this to be meaningful, you must first initialize the cells with
|
||||
* gtk_tree_view_column_cell_set_cell_data()
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE, if any of the cells packed into the @tree_column are currently visible
|
||||
*
|
||||
* Deprecated: 4.10: Use GtkColumnView instead
|
||||
@@ -2972,10 +2975,10 @@ _gtk_tree_view_column_cell_set_dirty (GtkTreeViewColumn *tree_column,
|
||||
/* Issue a manual reset on the context to have all
|
||||
* sizes re-requested for the context.
|
||||
*/
|
||||
g_signal_handler_block (priv->cell_area_context,
|
||||
g_signal_handler_block (priv->cell_area_context,
|
||||
priv->context_changed_signal);
|
||||
gtk_cell_area_context_reset (priv->cell_area_context);
|
||||
g_signal_handler_unblock (priv->cell_area_context,
|
||||
g_signal_handler_unblock (priv->cell_area_context,
|
||||
priv->context_changed_signal);
|
||||
|
||||
if (priv->tree_view &&
|
||||
|
||||
@@ -80,117 +80,117 @@ typedef void (* GtkTreeCellDataFunc) (GtkTreeViewColumn *tree_column,
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_tree_view_column_get_type (void) G_GNUC_CONST;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
GtkTreeViewColumn *gtk_tree_view_column_new (void);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
GtkTreeViewColumn *gtk_tree_view_column_new_with_area (GtkCellArea *area);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
GtkTreeViewColumn *gtk_tree_view_column_new_with_attributes (const char *title,
|
||||
GtkCellRenderer *cell,
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_pack_start (GtkTreeViewColumn *tree_column,
|
||||
GtkCellRenderer *cell,
|
||||
gboolean expand);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_pack_end (GtkTreeViewColumn *tree_column,
|
||||
GtkCellRenderer *cell,
|
||||
gboolean expand);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_clear (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_add_attribute (GtkTreeViewColumn *tree_column,
|
||||
GtkCellRenderer *cell_renderer,
|
||||
const char *attribute,
|
||||
int column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_attributes (GtkTreeViewColumn *tree_column,
|
||||
GtkCellRenderer *cell_renderer,
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_cell_data_func (GtkTreeViewColumn *tree_column,
|
||||
GtkCellRenderer *cell_renderer,
|
||||
GtkTreeCellDataFunc func,
|
||||
gpointer func_data,
|
||||
GDestroyNotify destroy);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_clear_attributes (GtkTreeViewColumn *tree_column,
|
||||
GtkCellRenderer *cell_renderer);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_spacing (GtkTreeViewColumn *tree_column,
|
||||
int spacing);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
int gtk_tree_view_column_get_spacing (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_visible (GtkTreeViewColumn *tree_column,
|
||||
gboolean visible);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
gboolean gtk_tree_view_column_get_visible (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_resizable (GtkTreeViewColumn *tree_column,
|
||||
gboolean resizable);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
gboolean gtk_tree_view_column_get_resizable (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_sizing (GtkTreeViewColumn *tree_column,
|
||||
GtkTreeViewColumnSizing type);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
GtkTreeViewColumnSizing gtk_tree_view_column_get_sizing (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
int gtk_tree_view_column_get_x_offset (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
int gtk_tree_view_column_get_width (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
int gtk_tree_view_column_get_fixed_width (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_fixed_width (GtkTreeViewColumn *tree_column,
|
||||
int fixed_width);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_min_width (GtkTreeViewColumn *tree_column,
|
||||
int min_width);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
int gtk_tree_view_column_get_min_width (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_max_width (GtkTreeViewColumn *tree_column,
|
||||
int max_width);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
int gtk_tree_view_column_get_max_width (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_clicked (GtkTreeViewColumn *tree_column);
|
||||
|
||||
|
||||
|
||||
/* Options for manipulating the column headers
|
||||
*/
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_title (GtkTreeViewColumn *tree_column,
|
||||
const char *title);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
const char * gtk_tree_view_column_get_title (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_expand (GtkTreeViewColumn *tree_column,
|
||||
gboolean expand);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
gboolean gtk_tree_view_column_get_expand (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_clickable (GtkTreeViewColumn *tree_column,
|
||||
gboolean clickable);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
gboolean gtk_tree_view_column_get_clickable (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_widget (GtkTreeViewColumn *tree_column,
|
||||
GtkWidget *widget);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
GtkWidget *gtk_tree_view_column_get_widget (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_alignment (GtkTreeViewColumn *tree_column,
|
||||
float xalign);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
float gtk_tree_view_column_get_alignment (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_reorderable (GtkTreeViewColumn *tree_column,
|
||||
gboolean reorderable);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
gboolean gtk_tree_view_column_get_reorderable (GtkTreeViewColumn *tree_column);
|
||||
|
||||
|
||||
@@ -198,52 +198,52 @@ gboolean gtk_tree_view_column_get_reorderable (GtkTreeViewCol
|
||||
/* You probably only want to use gtk_tree_view_column_set_sort_column_id. The
|
||||
* other sorting functions exist primarily to let others do their own custom sorting.
|
||||
*/
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_sort_column_id (GtkTreeViewColumn *tree_column,
|
||||
int sort_column_id);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
int gtk_tree_view_column_get_sort_column_id (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_sort_indicator (GtkTreeViewColumn *tree_column,
|
||||
gboolean setting);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
gboolean gtk_tree_view_column_get_sort_indicator (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_set_sort_order (GtkTreeViewColumn *tree_column,
|
||||
GtkSortType order);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
GtkSortType gtk_tree_view_column_get_sort_order (GtkTreeViewColumn *tree_column);
|
||||
|
||||
|
||||
/* These functions are meant primarily for interaction between the GtkTreeView and the column.
|
||||
*/
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_cell_set_cell_data (GtkTreeViewColumn *tree_column,
|
||||
GtkTreeModel *tree_model,
|
||||
GtkTreeIter *iter,
|
||||
gboolean is_expander,
|
||||
gboolean is_expanded);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_cell_get_size (GtkTreeViewColumn *tree_column,
|
||||
int *x_offset,
|
||||
int *y_offset,
|
||||
int *width,
|
||||
int *height);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
gboolean gtk_tree_view_column_cell_is_visible (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_focus_cell (GtkTreeViewColumn *tree_column,
|
||||
GtkCellRenderer *cell);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
gboolean gtk_tree_view_column_cell_get_position (GtkTreeViewColumn *tree_column,
|
||||
GtkCellRenderer *cell_renderer,
|
||||
int *x_offset,
|
||||
int *width);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
void gtk_tree_view_column_queue_resize (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
GtkWidget *gtk_tree_view_column_get_tree_view (GtkTreeViewColumn *tree_column);
|
||||
GDK_DEPRECATED_IN_4_10
|
||||
GDK_DEPRECATED_IN_4_10_FOR(GtkColumnView and GtkColumnViewColumn)
|
||||
GtkWidget *gtk_tree_view_column_get_button (GtkTreeViewColumn *tree_column);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkTreeViewColumn, g_object_unref)
|
||||
|
||||
@@ -85,6 +85,7 @@
|
||||
#include <gtk/gtkcolorutils.h>
|
||||
#include <gtk/gtkcolumnview.h>
|
||||
#include <gtk/gtkcolumnviewcolumn.h>
|
||||
#include <gtk/gtkcolumnviewsorter.h>
|
||||
#include <gtk/deprecated/gtkcombobox.h>
|
||||
#include <gtk/deprecated/gtkcomboboxtext.h>
|
||||
#include <gtk/gtkconstraintlayout.h>
|
||||
@@ -157,7 +158,6 @@
|
||||
#include <gtk/gtkimmulticontext.h>
|
||||
#include <gtk/gtkinfobar.h>
|
||||
#include <gtk/gtkinscription.h>
|
||||
#include <gtk/gtkinvertiblesorter.h>
|
||||
#include <gtk/gtklabel.h>
|
||||
#include <gtk/gtklayoutmanager.h>
|
||||
#include <gtk/gtklayoutchild.h>
|
||||
|
||||
+10
-2
@@ -27,6 +27,8 @@
|
||||
#include "gtkmarshalers.h"
|
||||
#include "gtkwidgetprivate.h"
|
||||
#include "gsettings-mapping.h"
|
||||
#include "gtkdebug.h"
|
||||
#include "gtkprivate.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
@@ -846,9 +848,15 @@ gtk_action_muxer_activate_action (GtkActionMuxer *muxer,
|
||||
if (!_gtk_bitmask_get (muxer->widget_actions_disabled, position))
|
||||
{
|
||||
if (action->activate)
|
||||
action->activate (muxer->widget, action->name, parameter);
|
||||
{
|
||||
GTK_DEBUG (ACTIONS, "%s: activate action", action->name);
|
||||
action->activate (muxer->widget, action->name, parameter);
|
||||
}
|
||||
else if (action->pspec)
|
||||
prop_action_activate (muxer->widget, action, parameter);
|
||||
{
|
||||
GTK_DEBUG (ACTIONS, "%s: activate prop action", action->pspec->name);
|
||||
prop_action_activate (muxer->widget, action, parameter);
|
||||
}
|
||||
}
|
||||
|
||||
return;
|
||||
|
||||
@@ -83,6 +83,32 @@ void gtk_color_chooser_add_palette (GtkColorChooser *chooser,
|
||||
int n_colors,
|
||||
GdkRGBA *colors);
|
||||
|
||||
|
||||
typedef void (*GtkColorChooserPrepareCallback) (GtkColorChooser *chooser,
|
||||
gpointer user_data);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
void gtk_choose_color (GtkWindow *parent,
|
||||
const char *title,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
void gtk_choose_color_full (GtkWindow *parent,
|
||||
const char *title,
|
||||
GtkColorChooserPrepareCallback prepare,
|
||||
gpointer prepare_data,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
gboolean gtk_choose_color_finish (GtkColorChooser *chooser,
|
||||
GAsyncResult *result,
|
||||
GdkRGBA *color,
|
||||
GError **error);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkColorChooser, g_object_unref)
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
@@ -0,0 +1,439 @@
|
||||
/* GTK - The GIMP Toolkit
|
||||
* Copyright (C) 2012 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "gtkwindow.h"
|
||||
#include "gtkwindowprivate.h"
|
||||
#include "gtkbutton.h"
|
||||
#include "gtkbox.h"
|
||||
#include "gtkprivate.h"
|
||||
#include "gtksettings.h"
|
||||
|
||||
#include "gtkcolorchooserprivate.h"
|
||||
#include "gtkcolorchooserwindowprivate.h"
|
||||
#include "gtkcolorchooserwidget.h"
|
||||
|
||||
/*
|
||||
* GtkColorChooserWindow:
|
||||
*
|
||||
* A window for choosing a color.
|
||||
*
|
||||
* 
|
||||
*
|
||||
* `GtkColorChooserWindow` implements the [iface@Gtk.ColorChooser] interface
|
||||
* and does not provide much API of its own.
|
||||
*
|
||||
* To create a `GtkColorChooserWindow`, use [ctor@Gtk.ColorChooserWindow.new].
|
||||
*
|
||||
* To change the initially selected color, use
|
||||
* [method@Gtk.ColorChooser.set_rgba]. To get the selected color use
|
||||
* [method@Gtk.ColorChooser.get_rgba].
|
||||
*/
|
||||
|
||||
typedef struct _GtkColorChooserWindowClass GtkColorChooserWindowClass;
|
||||
|
||||
struct _GtkColorChooserWindow
|
||||
{
|
||||
GtkWindow parent_instance;
|
||||
|
||||
GtkWidget *chooser;
|
||||
};
|
||||
|
||||
struct _GtkColorChooserWindowClass
|
||||
{
|
||||
GtkWindowClass parent_class;
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
PROP_ZERO,
|
||||
PROP_RGBA,
|
||||
PROP_USE_ALPHA,
|
||||
PROP_SHOW_EDITOR
|
||||
};
|
||||
|
||||
static void gtk_color_chooser_window_iface_init (GtkColorChooserInterface *iface);
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (GtkColorChooserWindow, gtk_color_chooser_window, GTK_TYPE_WINDOW,
|
||||
G_IMPLEMENT_INTERFACE (GTK_TYPE_COLOR_CHOOSER,
|
||||
gtk_color_chooser_window_iface_init))
|
||||
|
||||
static void
|
||||
propagate_notify (GObject *o,
|
||||
GParamSpec *pspec,
|
||||
GtkColorChooserWindow *cc)
|
||||
{
|
||||
g_object_notify (G_OBJECT (cc), pspec->name);
|
||||
}
|
||||
|
||||
static void
|
||||
save_color (GtkColorChooserWindow *window)
|
||||
{
|
||||
GdkRGBA color;
|
||||
|
||||
/* This causes the color chooser widget to save the
|
||||
* selected and custom colors to GSettings.
|
||||
*/
|
||||
gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (window), &color);
|
||||
gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (window), &color);
|
||||
}
|
||||
|
||||
enum
|
||||
{
|
||||
RESPONSE_OK,
|
||||
RESPONSE_CANCEL
|
||||
};
|
||||
|
||||
static void
|
||||
response_cb (GtkWindow *window,
|
||||
int response);
|
||||
|
||||
static void
|
||||
color_activated_cb (GtkColorChooser *chooser,
|
||||
GdkRGBA *color,
|
||||
GtkWindow *window)
|
||||
{
|
||||
save_color (GTK_COLOR_CHOOSER_WINDOW (window));
|
||||
response_cb (GTK_WINDOW (window), RESPONSE_OK);
|
||||
}
|
||||
|
||||
static void
|
||||
ok_button_cb (GtkButton *button,
|
||||
GtkWindow *window)
|
||||
{
|
||||
response_cb (window, RESPONSE_OK);
|
||||
}
|
||||
|
||||
static void
|
||||
cancel_button_cb (GtkButton *button,
|
||||
GtkWindow *window)
|
||||
{
|
||||
response_cb (window, RESPONSE_CANCEL);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_color_chooser_window_init (GtkColorChooserWindow *cc)
|
||||
{
|
||||
gtk_widget_init_template (GTK_WIDGET (cc));
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_color_chooser_window_unmap (GtkWidget *widget)
|
||||
{
|
||||
GTK_WIDGET_CLASS (gtk_color_chooser_window_parent_class)->unmap (widget);
|
||||
|
||||
/* We never want the window to come up with the editor,
|
||||
* even if it was showing the editor the last time it was used.
|
||||
*/
|
||||
g_object_set (widget, "show-editor", FALSE, NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_color_chooser_window_get_property (GObject *object,
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkColorChooserWindow *cc = GTK_COLOR_CHOOSER_WINDOW (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_RGBA:
|
||||
{
|
||||
GdkRGBA color;
|
||||
|
||||
gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (cc), &color);
|
||||
g_value_set_boxed (value, &color);
|
||||
}
|
||||
break;
|
||||
case PROP_USE_ALPHA:
|
||||
g_value_set_boolean (value, gtk_color_chooser_get_use_alpha (GTK_COLOR_CHOOSER (cc->chooser)));
|
||||
break;
|
||||
case PROP_SHOW_EDITOR:
|
||||
{
|
||||
gboolean show_editor;
|
||||
g_object_get (cc->chooser, "show-editor", &show_editor, NULL);
|
||||
g_value_set_boolean (value, show_editor);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_color_chooser_window_set_property (GObject *object,
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkColorChooserWindow *cc = GTK_COLOR_CHOOSER_WINDOW (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_RGBA:
|
||||
gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (cc), g_value_get_boxed (value));
|
||||
break;
|
||||
case PROP_USE_ALPHA:
|
||||
if (gtk_color_chooser_get_use_alpha (GTK_COLOR_CHOOSER (cc->chooser)) != g_value_get_boolean (value))
|
||||
{
|
||||
gtk_color_chooser_set_use_alpha (GTK_COLOR_CHOOSER (cc->chooser), g_value_get_boolean (value));
|
||||
g_object_notify_by_pspec (object, pspec);
|
||||
}
|
||||
break;
|
||||
case PROP_SHOW_EDITOR:
|
||||
g_object_set (cc->chooser,
|
||||
"show-editor", g_value_get_boolean (value),
|
||||
NULL);
|
||||
break;
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_color_chooser_window_dispose (GObject *object)
|
||||
{
|
||||
GtkColorChooserWindow *cc = GTK_COLOR_CHOOSER_WINDOW (object);
|
||||
|
||||
g_clear_pointer (&cc->chooser, gtk_widget_unparent);
|
||||
|
||||
G_OBJECT_CLASS (gtk_color_chooser_window_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_color_chooser_window_class_init (GtkColorChooserWindowClass *class)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
||||
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
|
||||
|
||||
object_class->dispose = gtk_color_chooser_window_dispose;
|
||||
object_class->get_property = gtk_color_chooser_window_get_property;
|
||||
object_class->set_property = gtk_color_chooser_window_set_property;
|
||||
|
||||
widget_class->unmap = gtk_color_chooser_window_unmap;
|
||||
|
||||
g_object_class_override_property (object_class, PROP_RGBA, "rgba");
|
||||
g_object_class_override_property (object_class, PROP_USE_ALPHA, "use-alpha");
|
||||
g_object_class_install_property (object_class, PROP_SHOW_EDITOR,
|
||||
g_param_spec_boolean ("show-editor", NULL, NULL,
|
||||
FALSE, GTK_PARAM_READWRITE));
|
||||
|
||||
/* Bind class to template
|
||||
*/
|
||||
gtk_widget_class_set_template_from_resource (widget_class,
|
||||
"/org/gtk/libgtk/ui/gtkcolorchooserwindow.ui");
|
||||
gtk_widget_class_bind_template_child (widget_class, GtkColorChooserWindow, chooser);
|
||||
gtk_widget_class_bind_template_callback (widget_class, propagate_notify);
|
||||
gtk_widget_class_bind_template_callback (widget_class, color_activated_cb);
|
||||
gtk_widget_class_bind_template_callback (widget_class, ok_button_cb);
|
||||
gtk_widget_class_bind_template_callback (widget_class, cancel_button_cb);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_color_chooser_window_get_rgba (GtkColorChooser *chooser,
|
||||
GdkRGBA *color)
|
||||
{
|
||||
GtkColorChooserWindow *cc = GTK_COLOR_CHOOSER_WINDOW (chooser);
|
||||
|
||||
gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (cc->chooser), color);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_color_chooser_window_set_rgba (GtkColorChooser *chooser,
|
||||
const GdkRGBA *color)
|
||||
{
|
||||
GtkColorChooserWindow *cc = GTK_COLOR_CHOOSER_WINDOW (chooser);
|
||||
|
||||
gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (cc->chooser), color);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_color_chooser_window_add_palette (GtkColorChooser *chooser,
|
||||
GtkOrientation orientation,
|
||||
int colors_per_line,
|
||||
int n_colors,
|
||||
GdkRGBA *colors)
|
||||
{
|
||||
GtkColorChooserWindow *cc = GTK_COLOR_CHOOSER_WINDOW (chooser);
|
||||
|
||||
gtk_color_chooser_add_palette (GTK_COLOR_CHOOSER (cc->chooser),
|
||||
orientation, colors_per_line, n_colors, colors);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_color_chooser_window_iface_init (GtkColorChooserInterface *iface)
|
||||
{
|
||||
iface->get_rgba = gtk_color_chooser_window_get_rgba;
|
||||
iface->set_rgba = gtk_color_chooser_window_set_rgba;
|
||||
iface->add_palette = gtk_color_chooser_window_add_palette;
|
||||
}
|
||||
|
||||
/*
|
||||
* gtk_color_chooser_window_new:
|
||||
* @title: (nullable): Title of the window
|
||||
* @parent: (nullable): Transient parent of the window
|
||||
*
|
||||
* Creates a new `GtkColorChooserWindow`.
|
||||
*
|
||||
* Returns: a new `GtkColorChooserWindow`
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_color_chooser_window_new (const char *title,
|
||||
GtkWindow *parent)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_COLOR_CHOOSER_WINDOW,
|
||||
"title", title,
|
||||
"transient-for", parent,
|
||||
NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
cancelled_cb (GCancellable *cancellable,
|
||||
GtkWindow *window)
|
||||
{
|
||||
response_cb (window, RESPONSE_CANCEL);
|
||||
}
|
||||
|
||||
static void
|
||||
response_cb (GtkWindow *window,
|
||||
int response)
|
||||
{
|
||||
GTask *task = G_TASK (g_object_get_data (G_OBJECT (window), "task"));
|
||||
GCancellable *cancellable = g_task_get_cancellable (task);
|
||||
|
||||
if (cancellable)
|
||||
g_signal_handlers_disconnect_by_func (cancellable, cancelled_cb, window);
|
||||
|
||||
if (response == RESPONSE_OK)
|
||||
{
|
||||
save_color (GTK_COLOR_CHOOSER_WINDOW (window));
|
||||
g_task_return_boolean (task, TRUE);
|
||||
}
|
||||
else
|
||||
g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_CANCELLED, "Cancelled");
|
||||
|
||||
g_object_unref (task);
|
||||
gtk_window_destroy (GTK_WINDOW (window));
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_choose_color:
|
||||
* @parent: (nullable): parent window
|
||||
* @title: title for the color chooser
|
||||
* @cancellable: (nullable): a `GCancellable` to cancel the operation
|
||||
* @callback: (scope async): callback to call when the action is complete
|
||||
* @user_data: (closure callback): data to pass to @callback
|
||||
*
|
||||
* This function presents a color chooser to let the user
|
||||
* pick a color.
|
||||
*
|
||||
* The @callback will be called when the window is closed.
|
||||
* It should call [function@Gtk.choose_color_finish] to
|
||||
* find out whether the operation was completed successfully,
|
||||
* and to obtain the resulting color.
|
||||
*/
|
||||
void
|
||||
gtk_choose_color (GtkWindow *parent,
|
||||
const char *title,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data)
|
||||
{
|
||||
gtk_choose_color_full (parent, title, NULL, NULL, cancellable, callback, user_data);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_choose_color_full:
|
||||
* @parent: (nullable): parent window
|
||||
* @title: title for the color chooser
|
||||
* @prepare: (nullable) (scope call): callback to set up the color chooser
|
||||
* @prepare_data: (closure prepare): data to pass to @prepare
|
||||
* @cancellable: (nullable): a `GCancellable` to cancel the operation
|
||||
* @callback: (scope async): callback to call when the action is complete
|
||||
* @user_data: (closure callback): data to pass to @callback
|
||||
*
|
||||
* This function presents a color chooser to let the user
|
||||
* pick a color.
|
||||
*
|
||||
* In addition to [function@Gtk.choose_color], this function takes
|
||||
* a @prepare callback that lets you set up the color chooser according
|
||||
* to your needs.
|
||||
*
|
||||
* The @callback will be called when the window is closed.
|
||||
* It should call [function@Gtk.choose_color_finish] to
|
||||
* find out whether the operation was completed successfully,
|
||||
* and to obtain the resulting color.
|
||||
*/
|
||||
void
|
||||
gtk_choose_color_full (GtkWindow *parent,
|
||||
const char *title,
|
||||
GtkColorChooserPrepareCallback prepare,
|
||||
gpointer prepare_data,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data)
|
||||
{
|
||||
GtkWidget *window;
|
||||
GTask *task;
|
||||
|
||||
window = gtk_color_chooser_window_new (title, parent);
|
||||
if (prepare)
|
||||
prepare (GTK_COLOR_CHOOSER (window), prepare);
|
||||
|
||||
if (cancellable)
|
||||
g_signal_connect (cancellable, "cancelled", G_CALLBACK (cancelled_cb), window);
|
||||
|
||||
task = g_task_new (window, cancellable, callback, user_data);
|
||||
g_task_set_source_tag (task, gtk_choose_color_full);
|
||||
|
||||
g_object_set_data (G_OBJECT (window), "task", task);
|
||||
|
||||
gtk_window_present (GTK_WINDOW (window));
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_choose_color_finish:
|
||||
* @chooser: the `GtkColorChooser`
|
||||
* @result: `GAsyncResult` that was passed to @callback
|
||||
* @color: return location for the color
|
||||
* @error: return location for an error
|
||||
*
|
||||
* Finishes a gtk_choose_color() or gtk_choose_color_full() call
|
||||
* and returns the results.
|
||||
*
|
||||
* If this function returns `TRUE`, @color contains
|
||||
* the color that was chosen.
|
||||
*
|
||||
* Returns: `TRUE` if the operation was successful
|
||||
*/
|
||||
gboolean
|
||||
gtk_choose_color_finish (GtkColorChooser *chooser,
|
||||
GAsyncResult *result,
|
||||
GdkRGBA *color,
|
||||
GError **error)
|
||||
{
|
||||
if (!g_task_propagate_boolean (G_TASK (result), error))
|
||||
return FALSE;
|
||||
|
||||
gtk_color_chooser_get_rgba (chooser, color);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
/* GTK - The GIMP Toolkit
|
||||
* Copyright (C) 2012 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __GTK_COLOR_CHOOSER_WINDOW_PRIVATE_H___
|
||||
#define __GTK_COLOR_CHOOSER_WINDOW_PRIVATE_H__
|
||||
|
||||
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
||||
#error "Only <gtk/gtk.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#include <gtk/gtkwindow.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GTK_TYPE_COLOR_CHOOSER_WINDOW (gtk_color_chooser_window_get_type ())
|
||||
#define GTK_COLOR_CHOOSER_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_COLOR_CHOOSER_WINDOW, GtkColorChooserWindow))
|
||||
#define GTK_IS_COLOR_CHOOSER_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_COLOR_CHOOSER_WINDOW))
|
||||
|
||||
typedef struct _GtkColorChooserWindow GtkColorChooserWindow;
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GType gtk_color_chooser_window_get_type (void) G_GNUC_CONST;
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GtkWidget * gtk_color_chooser_window_new (const char *title,
|
||||
GtkWindow *parent);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkColorChooserWindow, g_object_unref)
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_COLOR_CHOOSER_WINDOW_PRIVATE_H__ */
|
||||
+6
-12
@@ -27,7 +27,6 @@
|
||||
#include "gtkcolumnviewcolumnprivate.h"
|
||||
#include "gtkcolumnviewlayoutprivate.h"
|
||||
#include "gtkcolumnviewsorterprivate.h"
|
||||
#include "gtkmultisorter.h"
|
||||
#include "gtkcssnodeprivate.h"
|
||||
#include "gtkdropcontrollermotion.h"
|
||||
#include "gtklistviewprivate.h"
|
||||
@@ -1304,7 +1303,7 @@ gtk_column_view_init (GtkColumnView *self)
|
||||
g_signal_connect (controller, "leave", G_CALLBACK (gtk_column_view_drag_leave), NULL);
|
||||
gtk_widget_add_controller (GTK_WIDGET (self), controller);
|
||||
|
||||
self->sorter = GTK_SORTER (gtk_multi_sorter_new ());
|
||||
self->sorter = GTK_SORTER (gtk_column_view_sorter_new ());
|
||||
self->factory = gtk_column_list_item_factory_new (self);
|
||||
self->listview = GTK_LIST_VIEW (g_object_new (GTK_TYPE_COLUMN_LIST_VIEW, NULL));
|
||||
gtk_list_view_set_factory (self->listview, GTK_LIST_ITEM_FACTORY (self->factory));
|
||||
@@ -1538,7 +1537,7 @@ gtk_column_view_remove_column (GtkColumnView *self,
|
||||
break;
|
||||
}
|
||||
|
||||
gtk_column_view_sorter_remove_column (self->sorter, column);
|
||||
gtk_column_view_sorter_remove_column (GTK_COLUMN_VIEW_SORTER (self->sorter), column);
|
||||
gtk_column_view_column_set_column_view (column, NULL);
|
||||
g_list_store_remove (self->columns, i);
|
||||
}
|
||||
@@ -1689,13 +1688,6 @@ gtk_column_view_get_sorter (GtkColumnView *self)
|
||||
* on @column to associate a sorter with the column.
|
||||
*
|
||||
* If @column is %NULL, the view will be unsorted.
|
||||
*
|
||||
* This function can be called multiple times to set up
|
||||
* sorting with multiple columns:
|
||||
*
|
||||
* gtk_column_view_sort_by_column (view, NULL, 0);
|
||||
* gtk_column_view_sort_by_column (view, col1, GTK_SORT_DESCENDING);
|
||||
* gtk_column_view_sort_by_column (view, col0, GTK_SORT_ASCENDING);
|
||||
*/
|
||||
void
|
||||
gtk_column_view_sort_by_column (GtkColumnView *self,
|
||||
@@ -1707,9 +1699,11 @@ gtk_column_view_sort_by_column (GtkColumnView *self,
|
||||
g_return_if_fail (column == NULL || gtk_column_view_column_get_column_view (column) == self);
|
||||
|
||||
if (column == NULL)
|
||||
gtk_column_view_sorter_clear (self->sorter);
|
||||
gtk_column_view_sorter_clear (GTK_COLUMN_VIEW_SORTER (self->sorter));
|
||||
else
|
||||
gtk_column_view_sorter_set_column (self->sorter, column, direction);
|
||||
gtk_column_view_sorter_set_column (GTK_COLUMN_VIEW_SORTER (self->sorter),
|
||||
column,
|
||||
direction == GTK_SORT_DESCENDING);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
+83
-34
@@ -31,7 +31,7 @@
|
||||
#include "gtkrbtreeprivate.h"
|
||||
#include "gtksizegroup.h"
|
||||
#include "gtkwidgetprivate.h"
|
||||
#include "gtkinvertiblesorter.h"
|
||||
#include "gtksorter.h"
|
||||
|
||||
/**
|
||||
* GtkColumnViewColumn:
|
||||
@@ -56,7 +56,8 @@ struct _GtkColumnViewColumn
|
||||
|
||||
GtkListItemFactory *factory;
|
||||
char *title;
|
||||
GtkInvertibleSorter *invertible_sorter;
|
||||
char *id;
|
||||
GtkSorter *sorter;
|
||||
|
||||
/* data for the view */
|
||||
GtkColumnView *view;
|
||||
@@ -97,6 +98,7 @@ enum
|
||||
PROP_RESIZABLE,
|
||||
PROP_EXPAND,
|
||||
PROP_FIXED_WIDTH,
|
||||
PROP_ID,
|
||||
|
||||
N_PROPS
|
||||
};
|
||||
@@ -114,7 +116,7 @@ gtk_column_view_column_dispose (GObject *object)
|
||||
g_assert (self->first_cell == NULL); /* no view = no children */
|
||||
|
||||
g_clear_object (&self->factory);
|
||||
g_clear_object (&self->invertible_sorter);
|
||||
g_clear_object (&self->sorter);
|
||||
g_clear_pointer (&self->title, g_free);
|
||||
g_clear_object (&self->menu);
|
||||
|
||||
@@ -144,7 +146,7 @@ gtk_column_view_column_get_property (GObject *object,
|
||||
break;
|
||||
|
||||
case PROP_SORTER:
|
||||
g_value_set_object (value, gtk_column_view_column_get_sorter (self));
|
||||
g_value_set_object (value, self->sorter);
|
||||
break;
|
||||
|
||||
case PROP_VISIBLE:
|
||||
@@ -167,6 +169,10 @@ gtk_column_view_column_get_property (GObject *object,
|
||||
g_value_set_int (value, self->fixed_width);
|
||||
break;
|
||||
|
||||
case PROP_ID:
|
||||
g_value_set_string (value, self->id);
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
||||
break;
|
||||
@@ -215,6 +221,10 @@ gtk_column_view_column_set_property (GObject *object,
|
||||
gtk_column_view_column_set_fixed_width (self, g_value_get_int (value));
|
||||
break;
|
||||
|
||||
case PROP_ID:
|
||||
gtk_column_view_column_set_id (self, g_value_get_string (value));
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
||||
break;
|
||||
@@ -321,6 +331,24 @@ gtk_column_view_column_class_init (GtkColumnViewColumnClass *klass)
|
||||
-1, G_MAXINT, -1,
|
||||
G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY | G_PARAM_STATIC_STRINGS);
|
||||
|
||||
/**
|
||||
* GtkColumnViewColumn:id: (attributes org.gtk.Property.get=gtk_column_view_column_get_id org.gtk.Property.set=gtk_column_view_column_set_id)
|
||||
*
|
||||
* An ID for the column.
|
||||
*
|
||||
* GTK is not currently using the ID for anything, but
|
||||
* it can be used by applications when saving column view
|
||||
* configurations.
|
||||
*
|
||||
* It is up to applications to ensure uniqueness of IDs.
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
properties[PROP_ID] =
|
||||
g_param_spec_string ("id", NULL, NULL,
|
||||
NULL,
|
||||
G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
|
||||
|
||||
g_object_class_install_properties (gobject_class, N_PROPS, properties);
|
||||
}
|
||||
|
||||
@@ -678,7 +706,7 @@ gtk_column_view_column_set_title (GtkColumnViewColumn *self,
|
||||
self->title = g_strdup (title);
|
||||
|
||||
if (self->header)
|
||||
gtk_column_view_title_update (GTK_COLUMN_VIEW_TITLE (self->header));
|
||||
gtk_column_view_title_set_title (GTK_COLUMN_VIEW_TITLE (self->header), title);
|
||||
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_TITLE]);
|
||||
}
|
||||
@@ -705,7 +733,7 @@ gtk_column_view_column_remove_from_sorter (GtkColumnViewColumn *self)
|
||||
if (self->view == NULL)
|
||||
return;
|
||||
|
||||
gtk_column_view_sorter_remove_column (gtk_column_view_get_sorter (self->view), self);
|
||||
gtk_column_view_sorter_remove_column (GTK_COLUMN_VIEW_SORTER (gtk_column_view_get_sorter (self->view)), self);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -731,29 +759,13 @@ gtk_column_view_column_set_sorter (GtkColumnViewColumn *self,
|
||||
g_return_if_fail (GTK_IS_COLUMN_VIEW_COLUMN (self));
|
||||
g_return_if_fail (sorter == NULL || GTK_IS_SORTER (sorter));
|
||||
|
||||
if (self->invertible_sorter == NULL && sorter == NULL)
|
||||
if (!g_set_object (&self->sorter, sorter))
|
||||
return;
|
||||
|
||||
if (self->invertible_sorter != NULL &&
|
||||
sorter == gtk_invertible_sorter_get_sorter (self->invertible_sorter))
|
||||
return;
|
||||
|
||||
if (sorter)
|
||||
{
|
||||
if (!self->invertible_sorter)
|
||||
{
|
||||
self->invertible_sorter = gtk_invertible_sorter_new (NULL);
|
||||
g_object_set_data (G_OBJECT (self->invertible_sorter), "column", self);
|
||||
}
|
||||
gtk_invertible_sorter_set_sorter (self->invertible_sorter, sorter);
|
||||
}
|
||||
else
|
||||
g_clear_object (&self->invertible_sorter);
|
||||
|
||||
gtk_column_view_column_remove_from_sorter (self);
|
||||
|
||||
if (self->header)
|
||||
gtk_column_view_title_update (GTK_COLUMN_VIEW_TITLE (self->header));
|
||||
gtk_column_view_title_update_sort (GTK_COLUMN_VIEW_TITLE (self->header));
|
||||
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_SORTER]);
|
||||
}
|
||||
@@ -771,17 +783,14 @@ gtk_column_view_column_get_sorter (GtkColumnViewColumn *self)
|
||||
{
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_COLUMN (self), NULL);
|
||||
|
||||
if (self->invertible_sorter)
|
||||
return gtk_invertible_sorter_get_sorter (self->invertible_sorter);
|
||||
|
||||
return NULL;
|
||||
return self->sorter;
|
||||
}
|
||||
|
||||
void
|
||||
gtk_column_view_column_notify_sort (GtkColumnViewColumn *self)
|
||||
{
|
||||
if (self->header)
|
||||
gtk_column_view_title_update (GTK_COLUMN_VIEW_TITLE (self->header));
|
||||
gtk_column_view_title_update_sort (GTK_COLUMN_VIEW_TITLE (self->header));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -853,7 +862,7 @@ gtk_column_view_column_set_header_menu (GtkColumnViewColumn *self,
|
||||
return;
|
||||
|
||||
if (self->header)
|
||||
gtk_column_view_title_update (GTK_COLUMN_VIEW_TITLE (self->header));
|
||||
gtk_column_view_title_set_menu (GTK_COLUMN_VIEW_TITLE (self->header), menu);
|
||||
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_HEADER_MENU]);
|
||||
}
|
||||
@@ -1024,10 +1033,50 @@ gtk_column_view_column_get_header_allocation (GtkColumnViewColumn *self,
|
||||
*size = self->allocation_size;
|
||||
}
|
||||
|
||||
|
||||
GtkInvertibleSorter *
|
||||
gtk_column_view_column_get_invertible_sorter (GtkColumnViewColumn *self)
|
||||
/**
|
||||
* gtk_column_view_column_set_id: (attributes org.gtk.Method.set_property=id)
|
||||
* @self: a `GtkColumnViewColumn`
|
||||
* @id: (nullable): ID to use for this column
|
||||
*
|
||||
* Sets the id of this column.
|
||||
*
|
||||
* GTK makes no use of this, but applications can use it when
|
||||
* storing column view configuration.
|
||||
*
|
||||
* It is up to callers to ensure uniqueness of IDs.
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
void
|
||||
gtk_column_view_column_set_id (GtkColumnViewColumn *self,
|
||||
const char *id)
|
||||
{
|
||||
return self->invertible_sorter;
|
||||
g_return_if_fail (GTK_IS_COLUMN_VIEW_COLUMN (self));
|
||||
|
||||
if (g_strcmp0 (self->id, id) == 0)
|
||||
return;
|
||||
|
||||
g_free (self->id);
|
||||
self->id = g_strdup (id);
|
||||
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_ID]);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_column_view_column_get_id: (attributes org.gtk.Method.get_property=id)
|
||||
* @self: a `GtkColumnViewColumn`
|
||||
*
|
||||
* Returns the ID set with gtk_column_view_column_set_id().
|
||||
*
|
||||
* Returns: (nullable): The column's ID
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
const char *
|
||||
gtk_column_view_column_get_id (GtkColumnViewColumn *self)
|
||||
{
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_COLUMN (self), NULL);
|
||||
|
||||
return self->id;
|
||||
}
|
||||
|
||||
|
||||
@@ -95,7 +95,13 @@ GDK_AVAILABLE_IN_ALL
|
||||
void gtk_column_view_column_set_expand (GtkColumnViewColumn *self,
|
||||
gboolean expand);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
gboolean gtk_column_view_column_get_expand (GtkColumnViewColumn *self);
|
||||
gboolean gtk_column_view_column_get_expand (GtkColumnViewColumn *self);
|
||||
|
||||
GDK_AVAILABLE_IN_4_10
|
||||
void gtk_column_view_column_set_id (GtkColumnViewColumn *self,
|
||||
const char *id);
|
||||
GDK_AVAILABLE_IN_4_10
|
||||
const char * gtk_column_view_column_get_id (GtkColumnViewColumn *self);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
#include "gtk/gtkcolumnviewcolumn.h"
|
||||
|
||||
#include "gtk/gtkcolumnviewcellprivate.h"
|
||||
#include "gtk/gtkinvertiblesorter.h"
|
||||
|
||||
|
||||
void gtk_column_view_column_set_column_view (GtkColumnViewColumn *self,
|
||||
@@ -58,6 +57,4 @@ void gtk_column_view_column_get_header_allocation (GtkColu
|
||||
int *offset,
|
||||
int *size);
|
||||
|
||||
GtkInvertibleSorter * gtk_column_view_column_get_invertible_sorter (GtkColumnViewColumn *self);
|
||||
|
||||
#endif /* __GTK_COLUMN_VIEW_COLUMN_PRIVATE_H__ */
|
||||
|
||||
+528
-102
@@ -20,146 +20,572 @@
|
||||
#include "config.h"
|
||||
|
||||
#include "gtkcolumnviewsorterprivate.h"
|
||||
|
||||
#include "gtkcolumnviewcolumnprivate.h"
|
||||
#include "gtktypebuiltins.h"
|
||||
#include "gtkmultisorter.h"
|
||||
|
||||
static GtkColumnViewColumn *
|
||||
get_column (GtkInvertibleSorter *sorter)
|
||||
/* {{{ GObject implementation */
|
||||
|
||||
typedef struct
|
||||
{
|
||||
return GTK_COLUMN_VIEW_COLUMN (g_object_get_data (G_OBJECT (sorter), "column"));
|
||||
GtkColumnViewColumn *column;
|
||||
GtkSorter *sorter;
|
||||
gboolean inverted;
|
||||
gulong changed_id;
|
||||
} Sorter;
|
||||
|
||||
static void
|
||||
free_sorter (gpointer data)
|
||||
{
|
||||
Sorter *s = data;
|
||||
|
||||
g_signal_handler_disconnect (s->sorter, s->changed_id);
|
||||
g_object_unref (s->sorter);
|
||||
g_object_unref (s->column);
|
||||
g_free (s);
|
||||
}
|
||||
|
||||
/**
|
||||
* GtkColumnViewSorter:
|
||||
*
|
||||
* `GtkColumnViewSorter` is a sorter implementation that
|
||||
* is geared towards the needs of `GtkColumnView`.
|
||||
*
|
||||
* The sorter returned by [method@Gtk.ColumnView.get_sorter] is
|
||||
* a `GtkColumnViewSorter`.
|
||||
*
|
||||
* In column views, sorting can be configured by associating
|
||||
* sorters with columns, and users can invert sort order by clicking
|
||||
* on column headers. The API of `GtkColumnViewSorter` is designed
|
||||
* to allow saving and restoring this configuration.
|
||||
*
|
||||
* If you are only interested in the primary sort column (i.e. the
|
||||
* column where a sort indicator is shown in the header), then
|
||||
* you can just look at [property@Gtk.ColumnViewSorter:primary-sort-column]
|
||||
* and [property@Gtk.ColumnViewSorter:primary-sort-order].
|
||||
*
|
||||
* If you want to store the full sort configuration, including
|
||||
* secondary sort columns that are used for tie breaking, then
|
||||
* you can use [method@Gtk.ColumnViewSorter.get_nth_sort_column].
|
||||
* To get notified about changes, use [signal@Gtk.Sorter::changed].
|
||||
*
|
||||
* To restore a saved sort configuration on a `GtkColumnView`,
|
||||
* use code like:
|
||||
*
|
||||
* ```
|
||||
* sorter = gtk_column_view_get_sorter (view);
|
||||
* for (i = gtk_column_view_sorter_get_n_sort_columns (sorter) - 1; i >= 0; i--)
|
||||
* {
|
||||
* column = gtk_column_view_sorter_get_nth_sort_column (sorter, i, &order);
|
||||
* gtk_column_view_sort_by_column (view, column, order);
|
||||
* }
|
||||
* ```
|
||||
*
|
||||
* `GtkColumnViewSorter` was added in GTK 4.10
|
||||
*/
|
||||
struct _GtkColumnViewSorter
|
||||
{
|
||||
GtkSorter parent_instance;
|
||||
|
||||
GSequence *sorters;
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
PROP_PRIMARY_SORT_COLUMN = 1,
|
||||
PROP_PRIMARY_SORT_ORDER,
|
||||
|
||||
NUM_PROPERTIES
|
||||
};
|
||||
|
||||
static GParamSpec *properties[NUM_PROPERTIES];
|
||||
|
||||
G_DEFINE_TYPE (GtkColumnViewSorter, gtk_column_view_sorter, GTK_TYPE_SORTER)
|
||||
|
||||
static GtkOrdering
|
||||
gtk_column_view_sorter_compare (GtkSorter *sorter,
|
||||
gpointer item1,
|
||||
gpointer item2)
|
||||
{
|
||||
GtkColumnViewSorter *self = GTK_COLUMN_VIEW_SORTER (sorter);
|
||||
GtkOrdering result = GTK_ORDERING_EQUAL;
|
||||
GSequenceIter *iter;
|
||||
|
||||
for (iter = g_sequence_get_begin_iter (self->sorters);
|
||||
!g_sequence_iter_is_end (iter);
|
||||
iter = g_sequence_iter_next (iter))
|
||||
{
|
||||
Sorter *s = g_sequence_get (iter);
|
||||
|
||||
result = gtk_sorter_compare (s->sorter, item1, item2);
|
||||
if (s->inverted)
|
||||
result = - result;
|
||||
|
||||
if (result != GTK_ORDERING_EQUAL)
|
||||
break;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
static GtkSorterOrder
|
||||
gtk_column_view_sorter_get_order (GtkSorter *sorter)
|
||||
{
|
||||
GtkColumnViewSorter *self = GTK_COLUMN_VIEW_SORTER (sorter);
|
||||
GtkSorterOrder result = GTK_SORTER_ORDER_NONE;
|
||||
GSequenceIter *iter;
|
||||
|
||||
for (iter = g_sequence_get_begin_iter (self->sorters);
|
||||
!g_sequence_iter_is_end (iter);
|
||||
iter = g_sequence_iter_next (iter))
|
||||
{
|
||||
Sorter *s = g_sequence_get (iter);
|
||||
|
||||
switch (gtk_sorter_get_order (s->sorter))
|
||||
{
|
||||
case GTK_SORTER_ORDER_PARTIAL:
|
||||
result = GTK_SORTER_ORDER_PARTIAL;
|
||||
break;
|
||||
case GTK_SORTER_ORDER_NONE:
|
||||
break;
|
||||
case GTK_SORTER_ORDER_TOTAL:
|
||||
return GTK_SORTER_ORDER_TOTAL;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
static void
|
||||
remove_column (GtkSorter *self,
|
||||
gtk_column_view_sorter_dispose (GObject *object)
|
||||
{
|
||||
GtkColumnViewSorter *self = GTK_COLUMN_VIEW_SORTER (object);
|
||||
|
||||
/* The sorter is owned by the columview and is unreffed
|
||||
* after the columns, so the sequence must be empty at
|
||||
* this point.
|
||||
* The sorter can outlive the columview it comes from
|
||||
* (the model might still have a ref), but that does
|
||||
* not change the fact that all columns will be gone.
|
||||
*/
|
||||
g_assert (g_sequence_is_empty (self->sorters));
|
||||
g_clear_pointer (&self->sorters, g_sequence_free);
|
||||
|
||||
G_OBJECT_CLASS (gtk_column_view_sorter_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_column_view_sorter_get_property (GObject *object,
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkColumnViewSorter *self = GTK_COLUMN_VIEW_SORTER (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_PRIMARY_SORT_COLUMN:
|
||||
g_value_set_object (value, gtk_column_view_sorter_get_primary_sort_column (self));
|
||||
break;
|
||||
|
||||
case PROP_PRIMARY_SORT_ORDER:
|
||||
g_value_set_enum (value, gtk_column_view_sorter_get_primary_sort_order (self));
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_column_view_sorter_class_init (GtkColumnViewSorterClass *class)
|
||||
{
|
||||
GtkSorterClass *sorter_class = GTK_SORTER_CLASS (class);
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
||||
|
||||
sorter_class->compare = gtk_column_view_sorter_compare;
|
||||
sorter_class->get_order = gtk_column_view_sorter_get_order;
|
||||
|
||||
object_class->dispose = gtk_column_view_sorter_dispose;
|
||||
object_class->get_property = gtk_column_view_sorter_get_property;
|
||||
|
||||
/**
|
||||
* GtkColumnViewSorter:primary-sort-column: (attributes org.gtk.Property.get=gtk_column_view_sorter_get_primary_sort_column)
|
||||
*
|
||||
* The primary sort column.
|
||||
*
|
||||
* The primary sort column is the one that displays the triangle
|
||||
* in a column view header.
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
properties[PROP_PRIMARY_SORT_COLUMN] =
|
||||
g_param_spec_object ("primary-sort-column", NULL, NULL,
|
||||
GTK_TYPE_COLUMN_VIEW_COLUMN,
|
||||
G_PARAM_READABLE|G_PARAM_STATIC_STRINGS);
|
||||
|
||||
/**
|
||||
* GtkColumnViewSorter:primary-sort-order: (attributes org.gtk.Property.get=gtk_column_view_sorter_get_primary_sort_order)
|
||||
*
|
||||
* The primary sort order.
|
||||
*
|
||||
* The primary sort order determines whether the triangle displayed
|
||||
* in the column view header of the primary sort column points upwards
|
||||
* or downwards.
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
properties[PROP_PRIMARY_SORT_ORDER] =
|
||||
g_param_spec_enum ("primary-sort-order", NULL, NULL,
|
||||
GTK_TYPE_SORT_TYPE,
|
||||
GTK_SORT_ASCENDING,
|
||||
G_PARAM_READABLE|G_PARAM_STATIC_STRINGS);
|
||||
|
||||
g_object_class_install_properties (object_class, NUM_PROPERTIES, properties);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_column_view_sorter_init (GtkColumnViewSorter *self)
|
||||
{
|
||||
self->sorters = g_sequence_new (free_sorter);
|
||||
}
|
||||
|
||||
/* }}} */
|
||||
/* {{{ Private API */
|
||||
|
||||
GtkColumnViewSorter *
|
||||
gtk_column_view_sorter_new (void)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_COLUMN_VIEW_SORTER, NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_column_view_sorter_changed_cb (GtkSorter *sorter, int change, gpointer data)
|
||||
{
|
||||
gtk_sorter_changed (GTK_SORTER (data), GTK_SORTER_CHANGE_DIFFERENT);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
remove_column (GtkColumnViewSorter *self,
|
||||
GtkColumnViewColumn *column)
|
||||
{
|
||||
GtkInvertibleSorter *sorter = gtk_column_view_column_get_invertible_sorter (column);
|
||||
GSequenceIter *iter;
|
||||
|
||||
if (sorter == NULL)
|
||||
return;
|
||||
|
||||
for (guint i = 0; i < g_list_model_get_n_items (G_LIST_MODEL (self)); i++)
|
||||
for (iter = g_sequence_get_begin_iter (self->sorters);
|
||||
!g_sequence_iter_is_end (iter);
|
||||
iter = g_sequence_iter_next (iter))
|
||||
{
|
||||
GtkInvertibleSorter *s;
|
||||
Sorter *s = g_sequence_get (iter);
|
||||
|
||||
s = g_list_model_get_item (G_LIST_MODEL (self), i);
|
||||
g_object_unref (s);
|
||||
|
||||
if (s == sorter)
|
||||
if (s->column == column)
|
||||
{
|
||||
gtk_multi_sorter_remove (GTK_MULTI_SORTER (self), i);
|
||||
break;
|
||||
g_sequence_remove (iter);
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
void
|
||||
gtk_column_view_sorter_activate_column (GtkSorter *self,
|
||||
GtkColumnViewColumn *column)
|
||||
gboolean
|
||||
gtk_column_view_sorter_add_column (GtkColumnViewSorter *self,
|
||||
GtkColumnViewColumn *column)
|
||||
{
|
||||
GtkMultiSorter *multi = GTK_MULTI_SORTER (self);
|
||||
GtkInvertibleSorter *sorter, *s;
|
||||
|
||||
g_return_if_fail (GTK_IS_MULTI_SORTER (self));
|
||||
g_return_if_fail (GTK_IS_COLUMN_VIEW_COLUMN (column));
|
||||
|
||||
sorter = gtk_column_view_column_get_invertible_sorter (column);
|
||||
if (sorter == NULL)
|
||||
return;
|
||||
|
||||
if (g_list_model_get_n_items (G_LIST_MODEL (self)) > 0)
|
||||
{
|
||||
s = g_list_model_get_item (G_LIST_MODEL (self), 0);
|
||||
}
|
||||
else
|
||||
s = NULL;
|
||||
|
||||
if (s == sorter)
|
||||
{
|
||||
/* column is already first, toggle sort order */
|
||||
gtk_invertible_sorter_set_sort_order (s, 1 - gtk_invertible_sorter_get_sort_order (s));
|
||||
|
||||
gtk_column_view_column_notify_sort (column);
|
||||
}
|
||||
else
|
||||
{
|
||||
/* move column to the first position */
|
||||
remove_column (self, column);
|
||||
gtk_invertible_sorter_set_sort_order (GTK_INVERTIBLE_SORTER (sorter), GTK_SORT_ASCENDING);
|
||||
g_object_ref (sorter);
|
||||
gtk_multi_sorter_splice (multi, 0, 0, (GtkSorter **)&sorter, 1);
|
||||
|
||||
if (s)
|
||||
{
|
||||
gtk_column_view_column_notify_sort (get_column (s));
|
||||
g_object_unref (s);
|
||||
}
|
||||
gtk_column_view_column_notify_sort (column);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
gtk_column_view_sorter_remove_column (GtkSorter *self,
|
||||
GtkColumnViewColumn *column)
|
||||
{
|
||||
g_return_if_fail (GTK_IS_MULTI_SORTER (self));
|
||||
g_return_if_fail (GTK_IS_COLUMN_VIEW_COLUMN (column));
|
||||
|
||||
remove_column (self, column);
|
||||
}
|
||||
|
||||
void
|
||||
gtk_column_view_sorter_set_column (GtkSorter *self,
|
||||
GtkColumnViewColumn *column,
|
||||
GtkSortType direction)
|
||||
{
|
||||
GtkMultiSorter *multi = GTK_MULTI_SORTER (self);
|
||||
GSequenceIter *iter;
|
||||
GtkSorter *sorter;
|
||||
GtkInvertibleSorter *s;
|
||||
Sorter *s, *first;
|
||||
|
||||
g_return_if_fail (GTK_IS_MULTI_SORTER (self));
|
||||
g_return_if_fail (GTK_IS_COLUMN_VIEW_COLUMN (column));
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_SORTER (self), FALSE);
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_COLUMN (column), FALSE);
|
||||
|
||||
sorter = GTK_SORTER (gtk_column_view_column_get_invertible_sorter (column));
|
||||
sorter = gtk_column_view_column_get_sorter (column);
|
||||
if (sorter == NULL)
|
||||
return;
|
||||
return FALSE;
|
||||
|
||||
if (g_list_model_get_n_items (G_LIST_MODEL (self)) > 0)
|
||||
s = g_list_model_get_item (G_LIST_MODEL (self), 0);
|
||||
iter = g_sequence_get_begin_iter (self->sorters);
|
||||
if (!g_sequence_iter_is_end (iter))
|
||||
{
|
||||
first = g_sequence_get (iter);
|
||||
if (first->column == column)
|
||||
{
|
||||
first->inverted = !first->inverted;
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
else
|
||||
s = NULL;
|
||||
first = NULL;
|
||||
|
||||
remove_column (self, column);
|
||||
|
||||
gtk_invertible_sorter_set_sort_order (GTK_INVERTIBLE_SORTER (sorter), direction);
|
||||
g_object_ref (sorter);
|
||||
gtk_multi_sorter_splice (multi, 0, 0, &sorter, 1);
|
||||
s = g_new (Sorter, 1);
|
||||
s->column = g_object_ref (column);
|
||||
s->sorter = g_object_ref (sorter);
|
||||
s->changed_id = g_signal_connect (sorter, "changed", G_CALLBACK (gtk_column_view_sorter_changed_cb), self);
|
||||
s->inverted = FALSE;
|
||||
|
||||
if (s)
|
||||
{
|
||||
gtk_column_view_column_notify_sort (get_column (s));
|
||||
g_object_unref (s);
|
||||
}
|
||||
g_sequence_insert_before (iter, s);
|
||||
|
||||
/* notify the previous first column to stop drawing an arrow */
|
||||
if (first)
|
||||
gtk_column_view_column_notify_sort (first->column);
|
||||
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_PRIMARY_SORT_COLUMN]);
|
||||
out:
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_PRIMARY_SORT_ORDER]);
|
||||
|
||||
gtk_sorter_changed (GTK_SORTER (self), GTK_SORTER_CHANGE_DIFFERENT);
|
||||
|
||||
gtk_column_view_column_notify_sort (column);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
gboolean
|
||||
gtk_column_view_sorter_remove_column (GtkColumnViewSorter *self,
|
||||
GtkColumnViewColumn *column)
|
||||
{
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_SORTER (self), FALSE);
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_COLUMN (column), FALSE);
|
||||
|
||||
if (remove_column (self, column))
|
||||
{
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_PRIMARY_SORT_COLUMN]);
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_PRIMARY_SORT_ORDER]);
|
||||
|
||||
gtk_sorter_changed (GTK_SORTER (self), GTK_SORTER_CHANGE_DIFFERENT);
|
||||
gtk_column_view_column_notify_sort (column);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
gboolean
|
||||
gtk_column_view_sorter_set_column (GtkColumnViewSorter *self,
|
||||
GtkColumnViewColumn *column,
|
||||
gboolean inverted)
|
||||
{
|
||||
GtkSorter *sorter;
|
||||
Sorter *s;
|
||||
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_SORTER (self), FALSE);
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_COLUMN (column), FALSE);
|
||||
|
||||
sorter = gtk_column_view_column_get_sorter (column);
|
||||
if (sorter == NULL)
|
||||
return FALSE;
|
||||
|
||||
g_object_ref (column);
|
||||
|
||||
g_sequence_remove_range (g_sequence_get_begin_iter (self->sorters),
|
||||
g_sequence_get_end_iter (self->sorters));
|
||||
|
||||
s = g_new (Sorter, 1);
|
||||
s->column = g_object_ref (column);
|
||||
s->sorter = g_object_ref (sorter);
|
||||
s->changed_id = g_signal_connect (sorter, "changed", G_CALLBACK (gtk_column_view_sorter_changed_cb), self);
|
||||
s->inverted = inverted;
|
||||
|
||||
g_sequence_prepend (self->sorters, s);
|
||||
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_PRIMARY_SORT_COLUMN]);
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_PRIMARY_SORT_ORDER]);
|
||||
|
||||
gtk_sorter_changed (GTK_SORTER (self), GTK_SORTER_CHANGE_DIFFERENT);
|
||||
|
||||
gtk_column_view_column_notify_sort (column);
|
||||
|
||||
g_object_unref (column);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void
|
||||
gtk_column_view_sorter_clear (GtkSorter *self)
|
||||
gtk_column_view_sorter_clear (GtkColumnViewSorter *self)
|
||||
{
|
||||
GtkMultiSorter *multi = GTK_MULTI_SORTER (self);
|
||||
GtkInvertibleSorter *s;
|
||||
GSequenceIter *iter;
|
||||
Sorter *s;
|
||||
GtkColumnViewColumn *column;
|
||||
|
||||
g_return_if_fail (GTK_IS_MULTI_SORTER (self));
|
||||
g_return_if_fail (GTK_IS_COLUMN_VIEW_SORTER (self));
|
||||
|
||||
if (g_list_model_get_n_items (G_LIST_MODEL (self)) == 0)
|
||||
if (g_sequence_is_empty (self->sorters))
|
||||
return;
|
||||
|
||||
s = g_list_model_get_item (G_LIST_MODEL (self), 0);
|
||||
iter = g_sequence_get_begin_iter (self->sorters);
|
||||
s = g_sequence_get (iter);
|
||||
|
||||
gtk_multi_sorter_splice (multi, 0, g_list_model_get_n_items (G_LIST_MODEL (self)), NULL, 0);
|
||||
column = g_object_ref (s->column);
|
||||
|
||||
gtk_column_view_column_notify_sort (get_column (s));
|
||||
g_object_unref (s);
|
||||
g_sequence_remove_range (iter, g_sequence_get_end_iter (self->sorters));
|
||||
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_PRIMARY_SORT_COLUMN]);
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_PRIMARY_SORT_ORDER]);
|
||||
|
||||
gtk_sorter_changed (GTK_SORTER (self), GTK_SORTER_CHANGE_DIFFERENT);
|
||||
|
||||
gtk_column_view_column_notify_sort (column);
|
||||
|
||||
g_object_unref (column);
|
||||
}
|
||||
|
||||
GtkColumnViewColumn *
|
||||
gtk_column_view_sorter_get_sort_column (GtkColumnViewSorter *self,
|
||||
gboolean *inverted)
|
||||
{
|
||||
GSequenceIter *iter;
|
||||
Sorter *s;
|
||||
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_SORTER (self), NULL);
|
||||
|
||||
if (g_sequence_is_empty (self->sorters))
|
||||
return NULL;
|
||||
|
||||
iter = g_sequence_get_begin_iter (self->sorters);
|
||||
s = g_sequence_get (iter);
|
||||
|
||||
*inverted = s->inverted;
|
||||
|
||||
return s->column;
|
||||
}
|
||||
|
||||
/* }}} */
|
||||
/* {{{ Public API */
|
||||
|
||||
/**
|
||||
* gtk_column_view_sorter_get_primary_sort_column:
|
||||
* @self: a `GtkColumnViewSorter`
|
||||
*
|
||||
* Returns the primary sort column.
|
||||
*
|
||||
* The primary sort column is the one that displays the triangle
|
||||
* in a column view header.
|
||||
*
|
||||
* Returns: (nullable) (transfer none): the primary sort column
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
GtkColumnViewColumn *
|
||||
gtk_column_view_sorter_get_primary_sort_column (GtkColumnViewSorter *self)
|
||||
{
|
||||
GSequenceIter *iter;
|
||||
Sorter *s;
|
||||
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_SORTER (self), NULL);
|
||||
|
||||
iter = g_sequence_get_begin_iter (self->sorters);
|
||||
if (g_sequence_iter_is_end (iter))
|
||||
return NULL;
|
||||
|
||||
s = g_sequence_get (iter);
|
||||
|
||||
return s->column;
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_column_view_sorter_get_primary_sort_order:
|
||||
* @self: a `GtkColumnViewSorter`
|
||||
*
|
||||
* Returns the primary sort order.
|
||||
*
|
||||
* The primary sort order determines whether the triangle displayed
|
||||
* in the column view header of the primary sort column points upwards
|
||||
* or downwards.
|
||||
*
|
||||
* If there is no primary sort column, then this function returns
|
||||
* `GTK_SORT_ASCENDING`.
|
||||
*
|
||||
* Returns: the primary sort order
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
GtkSortType
|
||||
gtk_column_view_sorter_get_primary_sort_order (GtkColumnViewSorter *self)
|
||||
{
|
||||
GSequenceIter *iter;
|
||||
Sorter *s;
|
||||
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_SORTER (self), GTK_SORT_ASCENDING);
|
||||
|
||||
iter = g_sequence_get_begin_iter (self->sorters);
|
||||
if (g_sequence_iter_is_end (iter))
|
||||
return GTK_SORT_ASCENDING;
|
||||
|
||||
s = g_sequence_get (iter);
|
||||
|
||||
return s->inverted ? GTK_SORT_DESCENDING : GTK_SORT_ASCENDING;
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_column_view_sorter_get_n_sort_columns:
|
||||
* @self: a `GtkColumnViewSorter`
|
||||
*
|
||||
* Returns the number of columns by which the sorter sorts.
|
||||
*
|
||||
* If the sorter of the primary sort column does not determine
|
||||
* a total order, then the secondary sorters are consulted to
|
||||
* break the ties.
|
||||
*
|
||||
* Use the [signal@Gtk.Sorter::changed] signal to get notified
|
||||
* when the number of sort columns changes.
|
||||
*
|
||||
* Returns: the number of sort columns
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
guint
|
||||
gtk_column_view_sorter_get_n_sort_columns (GtkColumnViewSorter *self)
|
||||
{
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_SORTER (self), 0);
|
||||
|
||||
return (guint) g_sequence_get_length (self->sorters);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_column_view_sorter_get_nth_sort_column:
|
||||
* @self: a `GtkColumnViewSorter`
|
||||
* @position: the position of the sort column to retrieve (0 for the
|
||||
* primary sort column)
|
||||
* @sort_order: (out): return location for the sort order
|
||||
*
|
||||
* Gets the @position'th sort column and its associated sort order.
|
||||
*
|
||||
* Use the [signal@Gtk.Sorter::changed] signal to get notified
|
||||
* when sort columns change.
|
||||
*
|
||||
* Returns: (nullable) (transfer none): the @positions sort column
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
GtkColumnViewColumn *
|
||||
gtk_column_view_sorter_get_nth_sort_column (GtkColumnViewSorter *self,
|
||||
guint position,
|
||||
GtkSortType *sort_order)
|
||||
{
|
||||
GSequenceIter *iter;
|
||||
Sorter *s;
|
||||
|
||||
g_return_val_if_fail (GTK_IS_COLUMN_VIEW_SORTER (self), NULL);
|
||||
|
||||
iter = g_sequence_get_iter_at_pos (self->sorters, (int) position);
|
||||
|
||||
if (g_sequence_iter_is_end (iter))
|
||||
{
|
||||
*sort_order = GTK_SORT_ASCENDING;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
s = g_sequence_get (iter);
|
||||
|
||||
*sort_order = s->inverted ? GTK_SORT_DESCENDING : GTK_SORT_ASCENDING;
|
||||
|
||||
return s->column;
|
||||
}
|
||||
|
||||
/* }}} */
|
||||
|
||||
/* vim:set foldmethod=marker expandtab: */
|
||||
|
||||
@@ -17,39 +17,39 @@
|
||||
* Authors: Matthias Clasen <mclasen@redhat.com>
|
||||
*/
|
||||
|
||||
#ifndef __GTK_INVERTIBLE_SORTER_H__
|
||||
#define __GTK_INVERTIBLE_SORTER_H__
|
||||
#ifndef __GTK_COLUMN_VIEW_SORTER_H__
|
||||
#define __GTK_COLUMN_VIEW_SORTER_H__
|
||||
|
||||
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
||||
#error "Only <gtk/gtk.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#include <gtk/gtkexpression.h>
|
||||
#include <gdk/gdk.h>
|
||||
#include <gtk/gtksorter.h>
|
||||
#include <gtk/gtkcolumnviewcolumn.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GTK_TYPE_INVERTIBLE_SORTER (gtk_invertible_sorter_get_type ())
|
||||
GDK_AVAILABLE_IN_4_10
|
||||
G_DECLARE_FINAL_TYPE (GtkInvertibleSorter, gtk_invertible_sorter, GTK, INVERTIBLE_SORTER, GtkSorter)
|
||||
#define GTK_TYPE_COLUMN_VIEW_SORTER (gtk_column_view_sorter_get_type ())
|
||||
|
||||
GDK_AVAILABLE_IN_4_10
|
||||
GtkInvertibleSorter * gtk_invertible_sorter_new (GtkSorter *sorter);
|
||||
G_DECLARE_FINAL_TYPE (GtkColumnViewSorter, gtk_column_view_sorter, GTK, COLUMN_VIEW_SORTER, GtkSorter)
|
||||
|
||||
GDK_AVAILABLE_IN_4_10
|
||||
void gtk_invertible_sorter_set_sorter (GtkInvertibleSorter *self,
|
||||
GtkSorter *sorter);
|
||||
GtkColumnViewColumn * gtk_column_view_sorter_get_primary_sort_column (GtkColumnViewSorter *self);
|
||||
|
||||
GDK_AVAILABLE_IN_4_10
|
||||
GtkSorter * gtk_invertible_sorter_get_sorter (GtkInvertibleSorter *self);
|
||||
GtkSortType gtk_column_view_sorter_get_primary_sort_order (GtkColumnViewSorter *self);
|
||||
|
||||
GDK_AVAILABLE_IN_4_10
|
||||
void gtk_invertible_sorter_set_sort_order (GtkInvertibleSorter *self,
|
||||
GtkSortType sort_order);
|
||||
guint gtk_column_view_sorter_get_n_sort_columns (GtkColumnViewSorter *self);
|
||||
|
||||
GDK_AVAILABLE_IN_4_10
|
||||
GtkSortType gtk_invertible_sorter_get_sort_order (GtkInvertibleSorter *self);
|
||||
GtkColumnViewColumn * gtk_column_view_sorter_get_nth_sort_column (GtkColumnViewSorter *self,
|
||||
guint position,
|
||||
GtkSortType *sort_order);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_INVERTIBLE_SORTER_H__ */
|
||||
#endif /* __GTK_SORTER_H__ */
|
||||
|
||||
@@ -17,32 +17,35 @@
|
||||
* Authors: Matthias Clasen <mclasen@redhat.com>
|
||||
*/
|
||||
|
||||
#ifndef __GTK_COLUMN_VIEW_SORTER_H__
|
||||
#define __GTK_COLUMN_VIEW_SORTER_H__
|
||||
#ifndef __GTK_COLUMN_VIEW_SORTER_PRIVATE_H__
|
||||
#define __GTK_COLUMN_VIEW_SORTER_PRIVATE_H__
|
||||
|
||||
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
||||
#error "Only <gtk/gtk.h> can be included directly."
|
||||
#endif
|
||||
|
||||
#include <gdk/gdk.h>
|
||||
#include <gtk/gtksorter.h>
|
||||
#include <gtk/gtkcolumnviewcolumn.h>
|
||||
#include <gtk/gtkcolumnviewsorter.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
void gtk_column_view_sorter_activate_column (GtkSorter *self,
|
||||
GtkColumnViewColumn *column);
|
||||
void gtk_column_view_sorter_remove_column (GtkSorter *self,
|
||||
GtkColumnViewColumn *column);
|
||||
GtkColumnViewSorter * gtk_column_view_sorter_new (void);
|
||||
|
||||
void gtk_column_view_sorter_clear (GtkSorter *self);
|
||||
gboolean gtk_column_view_sorter_add_column (GtkColumnViewSorter *self,
|
||||
GtkColumnViewColumn *column);
|
||||
gboolean gtk_column_view_sorter_remove_column (GtkColumnViewSorter *self,
|
||||
GtkColumnViewColumn *column);
|
||||
|
||||
void gtk_column_view_sorter_set_column (GtkSorter *self,
|
||||
GtkColumnViewColumn *column,
|
||||
GtkSortType direction);
|
||||
void gtk_column_view_sorter_clear (GtkColumnViewSorter *self);
|
||||
|
||||
GtkColumnViewColumn * gtk_column_view_sorter_get_sort_column (GtkColumnViewSorter *self,
|
||||
gboolean *inverted);
|
||||
|
||||
gboolean gtk_column_view_sorter_set_column (GtkColumnViewSorter *self,
|
||||
GtkColumnViewColumn *column,
|
||||
gboolean inverted);
|
||||
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_COLUMN_VIEW_SORTER_H__ */
|
||||
#endif /* __GTK_COLUMN_VIEW_SORTER_PRIVATE_H__ */
|
||||
|
||||
|
||||
+29
-24
@@ -189,15 +189,15 @@ activate_sort (GtkColumnViewTitle *self)
|
||||
{
|
||||
GtkSorter *sorter;
|
||||
GtkColumnView *view;
|
||||
GtkSorter *view_sorter;
|
||||
GtkColumnViewSorter *view_sorter;
|
||||
|
||||
sorter = gtk_column_view_column_get_sorter (self->column);
|
||||
if (sorter == NULL)
|
||||
return;
|
||||
|
||||
view = gtk_column_view_column_get_column_view (self->column);
|
||||
view_sorter = gtk_column_view_get_sorter (view);
|
||||
gtk_column_view_sorter_activate_column (view_sorter, self->column);
|
||||
view_sorter = GTK_COLUMN_VIEW_SORTER (gtk_column_view_get_sorter (view));
|
||||
gtk_column_view_sorter_add_column (view_sorter, self->column);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -283,51 +283,56 @@ gtk_column_view_title_new (GtkColumnViewColumn *column)
|
||||
title = g_object_new (GTK_TYPE_COLUMN_VIEW_TITLE, NULL);
|
||||
|
||||
title->column = g_object_ref (column);
|
||||
gtk_column_view_title_update (title);
|
||||
gtk_column_view_title_update_sort (title);
|
||||
gtk_column_view_title_set_title (title, gtk_column_view_column_get_title (column));
|
||||
gtk_column_view_title_set_menu (title, gtk_column_view_column_get_header_menu (column));
|
||||
|
||||
return GTK_WIDGET (title);
|
||||
}
|
||||
|
||||
void
|
||||
gtk_column_view_title_update (GtkColumnViewTitle *self)
|
||||
gtk_column_view_title_set_title (GtkColumnViewTitle *self,
|
||||
const char *title)
|
||||
{
|
||||
GtkInvertibleSorter *sorter;
|
||||
gtk_label_set_label (GTK_LABEL (self->title), title);
|
||||
}
|
||||
|
||||
gtk_label_set_label (GTK_LABEL (self->title), gtk_column_view_column_get_title (self->column));
|
||||
void
|
||||
gtk_column_view_title_set_menu (GtkColumnViewTitle *self,
|
||||
GMenuModel *model)
|
||||
{
|
||||
g_clear_pointer (&self->popup_menu, gtk_widget_unparent);
|
||||
}
|
||||
|
||||
sorter = gtk_column_view_column_get_invertible_sorter (self->column);
|
||||
|
||||
if (sorter)
|
||||
void
|
||||
gtk_column_view_title_update_sort (GtkColumnViewTitle *self)
|
||||
{
|
||||
if (gtk_column_view_column_get_sorter (self->column))
|
||||
{
|
||||
GtkColumnView *view;
|
||||
GtkSorter *view_sorter;
|
||||
GtkInvertibleSorter *active = NULL;
|
||||
GtkSortType direction = GTK_SORT_ASCENDING;
|
||||
GtkColumnViewSorter *view_sorter;
|
||||
GtkColumnViewColumn *primary;
|
||||
GtkSortType sort_order;
|
||||
|
||||
view = gtk_column_view_column_get_column_view (self->column);
|
||||
view_sorter = gtk_column_view_get_sorter (view);
|
||||
if (g_list_model_get_n_items (G_LIST_MODEL (view_sorter)) > 0)
|
||||
{
|
||||
active = g_list_model_get_item (G_LIST_MODEL (view_sorter), 0);
|
||||
g_object_unref (active);
|
||||
direction = gtk_invertible_sorter_get_sort_order (active);
|
||||
}
|
||||
view_sorter = GTK_COLUMN_VIEW_SORTER (gtk_column_view_get_sorter (view));
|
||||
primary = gtk_column_view_sorter_get_primary_sort_column (view_sorter);
|
||||
sort_order = gtk_column_view_sorter_get_primary_sort_order (view_sorter);
|
||||
|
||||
gtk_widget_show (self->sort);
|
||||
gtk_widget_remove_css_class (self->sort, "ascending");
|
||||
gtk_widget_remove_css_class (self->sort, "descending");
|
||||
gtk_widget_remove_css_class (self->sort, "unsorted");
|
||||
if (sorter != active)
|
||||
|
||||
if (self->column != primary)
|
||||
gtk_widget_add_css_class (self->sort, "unsorted");
|
||||
else if (direction == GTK_SORT_DESCENDING)
|
||||
else if (sort_order == GTK_SORT_DESCENDING)
|
||||
gtk_widget_add_css_class (self->sort, "descending");
|
||||
else
|
||||
gtk_widget_add_css_class (self->sort, "ascending");
|
||||
}
|
||||
else
|
||||
gtk_widget_hide (self->sort);
|
||||
|
||||
g_clear_pointer (&self->popup_menu, gtk_widget_unparent);
|
||||
}
|
||||
|
||||
GtkColumnViewColumn *
|
||||
|
||||
@@ -38,7 +38,12 @@ GType gtk_column_view_title_get_type (void) G_GNUC_CO
|
||||
|
||||
GtkWidget * gtk_column_view_title_new (GtkColumnViewColumn *column);
|
||||
|
||||
void gtk_column_view_title_update (GtkColumnViewTitle *self);
|
||||
void gtk_column_view_title_set_title (GtkColumnViewTitle *self,
|
||||
const char *title);
|
||||
void gtk_column_view_title_set_menu (GtkColumnViewTitle *self,
|
||||
GMenuModel *model);
|
||||
|
||||
void gtk_column_view_title_update_sort (GtkColumnViewTitle *self);
|
||||
|
||||
GtkColumnViewColumn * gtk_column_view_title_get_column (GtkColumnViewTitle *self);
|
||||
|
||||
|
||||
+26
-2
@@ -25,6 +25,7 @@
|
||||
|
||||
#include "gtkcomposetable.h"
|
||||
#include "gtkimcontextsimple.h"
|
||||
#include "gtkprivate.h"
|
||||
|
||||
|
||||
#define GTK_COMPOSE_TABLE_MAGIC "GtkComposeTable"
|
||||
@@ -284,6 +285,20 @@ fail:
|
||||
static void parser_parse_file (GtkComposeParser *parser,
|
||||
const char *path);
|
||||
|
||||
char *
|
||||
gtk_compose_table_get_x11_compose_file_dir (void)
|
||||
{
|
||||
char * compose_file_dir;
|
||||
|
||||
#if defined (X11_DATA_PREFIX)
|
||||
compose_file_dir = g_strdup (X11_DATA_PREFIX "/share/X11/locale");
|
||||
#else
|
||||
compose_file_dir = g_build_filename (_gtk_get_datadir (), "X11", "locale", NULL);
|
||||
#endif
|
||||
|
||||
return compose_file_dir;
|
||||
}
|
||||
|
||||
/* Substitute %H, %L and %S */
|
||||
static char *
|
||||
handle_substitutions (const char *start,
|
||||
@@ -305,6 +320,9 @@ handle_substitutions (const char *start,
|
||||
}
|
||||
else
|
||||
{
|
||||
char *x11_compose_file_dir;
|
||||
char *path;
|
||||
|
||||
switch (p[1])
|
||||
{
|
||||
case 'H':
|
||||
@@ -313,11 +331,17 @@ handle_substitutions (const char *start,
|
||||
break;
|
||||
case 'L':
|
||||
p++;
|
||||
g_string_append_printf (s, "/usr/share/X11/locale/%s/Compose", locale_name);
|
||||
x11_compose_file_dir = gtk_compose_table_get_x11_compose_file_dir ();
|
||||
path = g_build_filename (x11_compose_file_dir, locale_name, "Compose", NULL);
|
||||
g_string_append (s, path);
|
||||
g_free (path);
|
||||
g_free (x11_compose_file_dir);
|
||||
break;
|
||||
case 'S':
|
||||
p++;
|
||||
g_string_append (s, "/usr/share/X11/locale");
|
||||
x11_compose_file_dir = gtk_compose_table_get_x11_compose_file_dir ();
|
||||
g_string_append (s, x11_compose_file_dir);
|
||||
g_free (x11_compose_file_dir);
|
||||
break;
|
||||
default: ;
|
||||
/* do nothing, next iteration handles p[1] */
|
||||
|
||||
@@ -93,6 +93,8 @@ guint32 gtk_compose_table_data_hash (const guint16 *data,
|
||||
int max_seq_len,
|
||||
int n_seqs);
|
||||
|
||||
char * gtk_compose_table_get_x11_compose_file_dir (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_COMPOSETABLE_H__ */
|
||||
|
||||
@@ -61,7 +61,8 @@ struct _GtkEntryCompletion
|
||||
|
||||
gulong completion_timeout;
|
||||
gulong changed_id;
|
||||
gulong insert_text_id;
|
||||
|
||||
GSignalGroup *insert_text_signal_group;
|
||||
|
||||
int current_selected;
|
||||
|
||||
|
||||
@@ -183,6 +183,34 @@ GDK_AVAILABLE_IN_ALL
|
||||
const char * gtk_file_chooser_get_choice (GtkFileChooser *chooser,
|
||||
const char *id);
|
||||
|
||||
|
||||
typedef void (*GtkFileChooserPrepareCallback) (GtkFileChooser *chooser,
|
||||
gpointer user_data);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
void gtk_choose_file (GtkWindow *parent,
|
||||
const char *title,
|
||||
GtkFileChooserAction action,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
void gtk_choose_file_full (GtkWindow *parent,
|
||||
const char *title,
|
||||
GtkFileChooserAction action,
|
||||
GtkFileChooserPrepareCallback prepare,
|
||||
gpointer prepare_data,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
gboolean gtk_choose_file_finish (GtkFileChooser *chooser,
|
||||
GAsyncResult *result,
|
||||
GError **error);
|
||||
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_FILE_CHOOSER_H__ */
|
||||
|
||||
@@ -0,0 +1,304 @@
|
||||
/*
|
||||
* Copyright © 2022 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Authors: Matthias Clasen <mclasen@redhat.com>
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "gtkfilechoosercellprivate.h"
|
||||
|
||||
#include "gtkprivate.h"
|
||||
#include "gtkbinlayout.h"
|
||||
#include "gtkdragsource.h"
|
||||
#include "gtkgestureclick.h"
|
||||
#include "gtkgesturelongpress.h"
|
||||
#include "gtkicontheme.h"
|
||||
#include "gtklistitem.h"
|
||||
#include "gtkselectionmodel.h"
|
||||
#include "gtkfilechooserutils.h"
|
||||
#include "gtkfilechooserwidget.h"
|
||||
#include "gtkfilechooserwidgetprivate.h"
|
||||
|
||||
struct _GtkFileChooserCell
|
||||
{
|
||||
GtkWidget parent_instance;
|
||||
|
||||
GFileInfo *item;
|
||||
gboolean selected;
|
||||
guint position;
|
||||
|
||||
gboolean show_time;
|
||||
};
|
||||
|
||||
struct _GtkFileChooserCellClass
|
||||
{
|
||||
GtkWidgetClass parent_class;
|
||||
};
|
||||
|
||||
G_DEFINE_TYPE (GtkFileChooserCell, gtk_file_chooser_cell, GTK_TYPE_WIDGET)
|
||||
|
||||
enum
|
||||
{
|
||||
PROP_POSITION = 1,
|
||||
PROP_SELECTED,
|
||||
PROP_ITEM,
|
||||
PROP_SHOW_TIME,
|
||||
};
|
||||
|
||||
#define ICON_SIZE 16
|
||||
|
||||
static void
|
||||
popup_menu (GtkFileChooserCell *self,
|
||||
double x,
|
||||
double y)
|
||||
{
|
||||
GtkWidget *widget = GTK_WIDGET (self);
|
||||
GtkSelectionModel *model;
|
||||
GtkWidget *impl;
|
||||
double xx, yy;
|
||||
|
||||
impl = gtk_widget_get_ancestor (widget, GTK_TYPE_FILE_CHOOSER_WIDGET);
|
||||
|
||||
model = gtk_file_chooser_widget_get_selection_model (GTK_FILE_CHOOSER_WIDGET (impl));
|
||||
gtk_selection_model_select_item (model, self->position, TRUE);
|
||||
|
||||
gtk_widget_translate_coordinates (widget, GTK_WIDGET (impl),
|
||||
x, y, &xx, &yy);
|
||||
|
||||
gtk_widget_activate_action (widget, "item.popup-file-list-menu",
|
||||
"(udd)", self->position, xx, yy);
|
||||
}
|
||||
|
||||
static void
|
||||
file_chooser_cell_clicked (GtkEventController *controller,
|
||||
int n_press,
|
||||
double x,
|
||||
double y)
|
||||
{
|
||||
GtkWidget *widget = gtk_event_controller_get_widget (controller);
|
||||
GtkFileChooserCell *self = GTK_FILE_CHOOSER_CELL (widget);
|
||||
|
||||
gtk_gesture_set_state (GTK_GESTURE (controller), GTK_EVENT_SEQUENCE_CLAIMED);
|
||||
popup_menu (self, x, y);
|
||||
}
|
||||
|
||||
static void
|
||||
file_chooser_cell_long_pressed (GtkEventController *controller,
|
||||
double x,
|
||||
double y)
|
||||
{
|
||||
GtkWidget *widget = gtk_event_controller_get_widget (controller);
|
||||
GtkFileChooserCell *self = GTK_FILE_CHOOSER_CELL (widget);
|
||||
|
||||
gtk_gesture_set_state (GTK_GESTURE (controller), GTK_EVENT_SEQUENCE_CLAIMED);
|
||||
popup_menu (self, x, y);
|
||||
}
|
||||
|
||||
static GdkContentProvider *
|
||||
drag_prepare_cb (GtkDragSource *source,
|
||||
double x,
|
||||
double y,
|
||||
gpointer user_data)
|
||||
{
|
||||
GdkContentProvider *provider;
|
||||
GSList *selection;
|
||||
GtkFileChooserWidget *impl;
|
||||
GtkIconTheme *icon_theme;
|
||||
GIcon *icon;
|
||||
int scale;
|
||||
GtkIconPaintable *paintable;
|
||||
GtkFileChooserCell *self = user_data;
|
||||
|
||||
impl = GTK_FILE_CHOOSER_WIDGET (gtk_widget_get_ancestor (GTK_WIDGET (self),
|
||||
GTK_TYPE_FILE_CHOOSER_WIDGET));
|
||||
|
||||
if (!self->selected)
|
||||
{
|
||||
gtk_selection_model_select_item (gtk_file_chooser_widget_get_selection_model (impl),
|
||||
self->position, TRUE);
|
||||
}
|
||||
|
||||
selection = gtk_file_chooser_widget_get_selected_files (impl);
|
||||
if (!selection)
|
||||
return NULL;
|
||||
|
||||
scale = gtk_widget_get_scale_factor (GTK_WIDGET (self));
|
||||
icon_theme = gtk_icon_theme_get_for_display (gtk_widget_get_display (GTK_WIDGET (self)));
|
||||
|
||||
icon = _gtk_file_info_get_icon (self->item, ICON_SIZE, scale, icon_theme);
|
||||
|
||||
paintable = gtk_icon_theme_lookup_by_gicon (icon_theme,icon, ICON_SIZE, scale, GTK_TEXT_DIR_NONE, 0);
|
||||
|
||||
gtk_drag_source_set_icon (source, GDK_PAINTABLE (paintable), x, y);
|
||||
|
||||
provider = gdk_content_provider_new_typed (GDK_TYPE_FILE_LIST, selection);
|
||||
g_slist_free_full (selection, g_object_unref);
|
||||
g_object_unref (paintable);
|
||||
g_object_unref (icon);
|
||||
|
||||
return provider;
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_file_chooser_cell_realize (GtkWidget *widget)
|
||||
{
|
||||
GtkFileChooserCell *self = GTK_FILE_CHOOSER_CELL (widget);
|
||||
GtkFileChooserWidget *impl;
|
||||
|
||||
impl = GTK_FILE_CHOOSER_WIDGET (gtk_widget_get_ancestor (GTK_WIDGET (self),
|
||||
GTK_TYPE_FILE_CHOOSER_WIDGET));
|
||||
|
||||
g_object_bind_property (impl, "show-time", self, "show-time", G_BINDING_SYNC_CREATE);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_file_chooser_cell_init (GtkFileChooserCell *self)
|
||||
{
|
||||
GtkGesture *gesture;
|
||||
GtkDragSource *drag_source;
|
||||
|
||||
gesture = gtk_gesture_click_new ();
|
||||
gtk_gesture_single_set_button (GTK_GESTURE_SINGLE (gesture), GDK_BUTTON_SECONDARY);
|
||||
g_signal_connect (gesture, "pressed", G_CALLBACK (file_chooser_cell_clicked), NULL);
|
||||
gtk_widget_add_controller (GTK_WIDGET (self), GTK_EVENT_CONTROLLER (gesture));
|
||||
|
||||
gesture = gtk_gesture_long_press_new ();
|
||||
gtk_gesture_single_set_touch_only (GTK_GESTURE_SINGLE (gesture), TRUE);
|
||||
g_signal_connect (gesture, "pressed", G_CALLBACK (file_chooser_cell_long_pressed), NULL);
|
||||
|
||||
drag_source = gtk_drag_source_new ();
|
||||
gtk_widget_add_controller (GTK_WIDGET (self), GTK_EVENT_CONTROLLER (drag_source));
|
||||
g_signal_connect (drag_source, "prepare", G_CALLBACK (drag_prepare_cb), self);
|
||||
|
||||
g_signal_connect (self, "realize", G_CALLBACK (gtk_file_chooser_cell_realize), NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_file_chooser_cell_dispose (GObject *object)
|
||||
{
|
||||
GtkWidget *child;
|
||||
|
||||
while ((child = gtk_widget_get_first_child (GTK_WIDGET (object))))
|
||||
gtk_widget_unparent (child);
|
||||
|
||||
G_OBJECT_CLASS (gtk_file_chooser_cell_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_file_chooser_cell_set_property (GObject *object,
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkFileChooserCell *self = GTK_FILE_CHOOSER_CELL (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_POSITION:
|
||||
self->position = g_value_get_uint (value);
|
||||
break;
|
||||
|
||||
case PROP_SELECTED:
|
||||
self->selected = g_value_get_boolean (value);
|
||||
break;
|
||||
|
||||
case PROP_ITEM:
|
||||
self->item = g_value_get_object (value);
|
||||
break;
|
||||
|
||||
case PROP_SHOW_TIME:
|
||||
self->show_time = g_value_get_boolean (value);
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_file_chooser_cell_get_property (GObject *object,
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkFileChooserCell *self = GTK_FILE_CHOOSER_CELL (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_POSITION:
|
||||
g_value_set_uint (value, self->position);
|
||||
break;
|
||||
|
||||
case PROP_SELECTED:
|
||||
g_value_set_boolean (value, self->selected);
|
||||
break;
|
||||
|
||||
case PROP_ITEM:
|
||||
g_value_set_object (value, self->item);
|
||||
break;
|
||||
|
||||
case PROP_SHOW_TIME:
|
||||
g_value_set_boolean (value, self->show_time);
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
gtk_file_chooser_cell_class_init (GtkFileChooserCellClass *klass)
|
||||
{
|
||||
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
object_class->dispose = gtk_file_chooser_cell_dispose;
|
||||
object_class->set_property = gtk_file_chooser_cell_set_property;
|
||||
object_class->get_property = gtk_file_chooser_cell_get_property;
|
||||
|
||||
g_object_class_install_property (object_class, PROP_POSITION,
|
||||
g_param_spec_uint ("position", NULL, NULL,
|
||||
0, G_MAXUINT, 0,
|
||||
GTK_PARAM_READWRITE));
|
||||
|
||||
g_object_class_install_property (object_class, PROP_SELECTED,
|
||||
g_param_spec_boolean ("selected", NULL, NULL,
|
||||
FALSE,
|
||||
GTK_PARAM_READWRITE));
|
||||
|
||||
g_object_class_install_property (object_class, PROP_ITEM,
|
||||
g_param_spec_object ("item", NULL, NULL,
|
||||
G_TYPE_FILE_INFO,
|
||||
GTK_PARAM_READWRITE));
|
||||
|
||||
g_object_class_install_property (object_class, PROP_SHOW_TIME,
|
||||
g_param_spec_boolean ("show-time", NULL, NULL,
|
||||
FALSE,
|
||||
GTK_PARAM_READWRITE));
|
||||
|
||||
gtk_widget_class_set_css_name (widget_class, I_("filelistcell"));
|
||||
gtk_widget_class_set_layout_manager_type (widget_class, GTK_TYPE_BIN_LAYOUT);
|
||||
}
|
||||
|
||||
GtkFileChooserCell *
|
||||
gtk_file_chooser_cell_new (void)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_FILE_CHOOSER_CELL, NULL);
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* Copyright © 2022 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Authors: Matthias Clasen
|
||||
*/
|
||||
|
||||
#ifndef __GTK_FILE_CHOOSER_CELL_PRIVATE_H__
|
||||
#define __GTK_FILE_CHOOSER_CELL_PRIVATE_H__
|
||||
|
||||
#include <gtk/gtkwidget.h>
|
||||
#include <gtk/gtkexpression.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GTK_TYPE_FILE_CHOOSER_CELL (gtk_file_chooser_cell_get_type ())
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
G_DECLARE_FINAL_TYPE (GtkFileChooserCell, gtk_file_chooser_cell, GTK, FILE_CHOOSER_CELL, GtkWidget)
|
||||
|
||||
GtkFileChooserCell * gtk_file_chooser_cell_new (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_FILE_CHOOSER_CELL_PRIVATE_H__ */
|
||||
@@ -735,3 +735,140 @@ gtk_file_chooser_dialog_new (const char *title,
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
cancelled_cb (GCancellable *cancellable,
|
||||
GtkDialog *dialog)
|
||||
{
|
||||
gtk_dialog_response (dialog, GTK_RESPONSE_CANCEL);
|
||||
}
|
||||
|
||||
static void
|
||||
choose_response_cb (GtkDialog *dialog,
|
||||
int response,
|
||||
GTask *task)
|
||||
{
|
||||
GCancellable *cancellable = g_task_get_cancellable (task);
|
||||
|
||||
if (cancellable)
|
||||
g_signal_handlers_disconnect_by_func (cancellable, cancelled_cb, dialog);
|
||||
|
||||
if (response == GTK_RESPONSE_OK)
|
||||
g_task_return_boolean (task, TRUE);
|
||||
else
|
||||
g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_CANCELLED, "Cancelled");
|
||||
|
||||
g_object_unref (task);
|
||||
gtk_window_destroy (GTK_WINDOW (dialog));
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_choose_file:
|
||||
* @parent: (nullable): parent window
|
||||
* @title: title for the font chooser
|
||||
* @action: the action for the file chooser
|
||||
* @cancellable: (nullable): a `GCancellable` to cancel the operation
|
||||
* @callback: (scope async): callback to call when the action is complete
|
||||
* @user_data: (closure callback): data to pass to @callback
|
||||
*
|
||||
* This function presents a file chooser to let the user
|
||||
* pick a file.
|
||||
*
|
||||
* The @callback will be called when the dialog is closed.
|
||||
* It should call [function@Gtk.choose_file_finish] to
|
||||
* find out whether the operation was completed successfully,
|
||||
* and use [class@Gtk.FileChooser] API to obtain the results.
|
||||
*/
|
||||
void
|
||||
gtk_choose_file (GtkWindow *parent,
|
||||
const char *title,
|
||||
GtkFileChooserAction action,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data)
|
||||
{
|
||||
gtk_choose_file_full (parent, title, action, NULL, NULL, cancellable, callback, user_data);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_choose_file_full:
|
||||
* @parent: (nullable): parent window
|
||||
* @title: title for the file chooser
|
||||
* @action: the action for the file chooser
|
||||
* @prepare: (nullable) (scope call): callback to set up the file chooser
|
||||
* @prepare_data: (closure prepare): data to pass to @prepare
|
||||
* @cancellable: (nullable): a `GCancellable` to cancel the operation
|
||||
* @callback: (scope async): callback to call when the action is complete
|
||||
* @user_data: (closure callback): data to pass to @callback
|
||||
*
|
||||
* This function presents a file chooser to let the user
|
||||
* choose a file.
|
||||
*
|
||||
* In addition to [function@Gtk.choose_file], this function takes
|
||||
* a @prepare callback that lets you set up the file chooser according
|
||||
* to your needs.
|
||||
*
|
||||
* The @callback will be called when the dialog is closed.
|
||||
* It should use [function@Gtk.choose_file_finish] to find
|
||||
* out whether the operation was completed successfully,
|
||||
* and use [class@Gtk.FileChooser] API to obtain the results.
|
||||
*/
|
||||
void
|
||||
gtk_choose_file_full (GtkWindow *parent,
|
||||
const char *title,
|
||||
GtkFileChooserAction action,
|
||||
GtkFileChooserPrepareCallback prepare,
|
||||
gpointer prepare_data,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data)
|
||||
{
|
||||
GtkWidget *dialog;
|
||||
GTask *task;
|
||||
const char *button[] = {
|
||||
N_("_Open"),
|
||||
N_("_Save"),
|
||||
N_("_Select")
|
||||
};
|
||||
|
||||
dialog = gtk_file_chooser_dialog_new (title, parent, action,
|
||||
_("_Cancel"), GTK_RESPONSE_CANCEL,
|
||||
_(button[action]), GTK_RESPONSE_OK,
|
||||
NULL);
|
||||
|
||||
if (prepare)
|
||||
prepare (GTK_FILE_CHOOSER (dialog), prepare);
|
||||
|
||||
if (cancellable)
|
||||
g_signal_connect (cancellable, "cancelled", G_CALLBACK (cancelled_cb), dialog);
|
||||
|
||||
task = g_task_new (dialog, cancellable, callback, user_data);
|
||||
g_task_set_source_tag (task, gtk_choose_file_full);
|
||||
|
||||
g_signal_connect (dialog, "response", G_CALLBACK (choose_response_cb), task);
|
||||
|
||||
gtk_window_present (GTK_WINDOW (dialog));
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_choose_file_finish:
|
||||
* @chooser: the `GtkFileChooser`
|
||||
* @result: `GAsyncResult` that was passed to @callback
|
||||
* @error: return location for an error
|
||||
*
|
||||
* Finishes a gtk_choose_file() or gtk_choose_file_full() call
|
||||
* and returns whether the operation was successful.
|
||||
*
|
||||
* If this function returns `TRUE`, you can use
|
||||
* [class@Gtk.FileChooser] API to get the results.
|
||||
*
|
||||
* Returns: `TRUE` if the operation was successful
|
||||
*/
|
||||
gboolean
|
||||
gtk_choose_file_finish (GtkFileChooser *chooser,
|
||||
GAsyncResult *result,
|
||||
GError **error)
|
||||
{
|
||||
return g_task_propagate_boolean (G_TASK (result), error);
|
||||
}
|
||||
|
||||
+83
-72
@@ -60,7 +60,8 @@ struct _GtkFileChooserEntry
|
||||
char *dir_part;
|
||||
char *file_part;
|
||||
|
||||
GtkTreeModel *completion_store;
|
||||
GtkTreeStore *completion_store;
|
||||
GtkFileSystemModel *model;
|
||||
GtkFileFilter *current_filter;
|
||||
|
||||
guint current_folder_loaded : 1;
|
||||
@@ -71,6 +72,7 @@ struct _GtkFileChooserEntry
|
||||
|
||||
enum
|
||||
{
|
||||
FILE_INFO_COLUMN,
|
||||
DISPLAY_NAME_COLUMN,
|
||||
FULL_PATH_COLUMN,
|
||||
N_COLUMNS
|
||||
@@ -197,20 +199,21 @@ match_func (GtkEntryCompletion *compl,
|
||||
* current file filter (e.g. just jpg files) here. */
|
||||
if (chooser_entry->current_filter != NULL)
|
||||
{
|
||||
GFile *file;
|
||||
GFileInfo *info;
|
||||
|
||||
file = _gtk_file_system_model_get_file (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
|
||||
iter);
|
||||
info = _gtk_file_system_model_get_info (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
|
||||
iter);
|
||||
gtk_tree_model_get (GTK_TREE_MODEL (chooser_entry->completion_store),
|
||||
iter,
|
||||
FILE_INFO_COLUMN, &info,
|
||||
-1);
|
||||
|
||||
g_assert (info != NULL);
|
||||
g_object_unref (info);
|
||||
|
||||
/* We always allow navigating into subfolders, so don't ever filter directories */
|
||||
if (g_file_info_get_file_type (info) != G_FILE_TYPE_REGULAR)
|
||||
return TRUE;
|
||||
|
||||
if (!g_file_info_has_attribute (info, "standard::file"))
|
||||
g_file_info_set_attribute_object (info, "standard::file", G_OBJECT (file));
|
||||
g_assert (g_file_info_has_attribute (info, "standard::file"));
|
||||
|
||||
return gtk_filter_match (GTK_FILTER (chooser_entry->current_filter), info);
|
||||
}
|
||||
@@ -428,7 +431,7 @@ explicitly_complete (GtkFileChooserEntry *chooser_entry)
|
||||
{
|
||||
chooser_entry->complete_on_load = FALSE;
|
||||
|
||||
if (chooser_entry->completion_store)
|
||||
if (chooser_entry->model)
|
||||
{
|
||||
char *completion, *text;
|
||||
gsize completion_len, text_len;
|
||||
@@ -539,77 +542,93 @@ update_inline_completion (GtkFileChooserEntry *chooser_entry)
|
||||
static void
|
||||
discard_completion_store (GtkFileChooserEntry *chooser_entry)
|
||||
{
|
||||
if (!chooser_entry->completion_store)
|
||||
if (!chooser_entry->model)
|
||||
return;
|
||||
|
||||
g_assert (chooser_entry->completion_store != NULL);
|
||||
|
||||
gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)), NULL);
|
||||
update_inline_completion (chooser_entry);
|
||||
g_object_unref (chooser_entry->completion_store);
|
||||
chooser_entry->completion_store = NULL;
|
||||
g_clear_object (&chooser_entry->completion_store);
|
||||
g_clear_object (&chooser_entry->model);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
completion_store_set (GtkFileSystemModel *model,
|
||||
GFile *file,
|
||||
GFileInfo *info,
|
||||
int column,
|
||||
GValue *value,
|
||||
gpointer data)
|
||||
static void
|
||||
model_items_changed_cb (GListModel *model,
|
||||
guint position,
|
||||
guint removed,
|
||||
guint added,
|
||||
GtkFileChooserEntry *self)
|
||||
{
|
||||
GtkFileChooserEntry *chooser_entry = data;
|
||||
|
||||
const char *prefix = "";
|
||||
const char *suffix = "";
|
||||
|
||||
switch (column)
|
||||
if (removed > 0)
|
||||
{
|
||||
case FULL_PATH_COLUMN:
|
||||
prefix = chooser_entry->dir_part;
|
||||
G_GNUC_FALLTHROUGH;
|
||||
case DISPLAY_NAME_COLUMN:
|
||||
GtkTreeIter iter;
|
||||
|
||||
if (gtk_tree_model_iter_nth_child (GTK_TREE_MODEL (self->completion_store),
|
||||
&iter,
|
||||
NULL,
|
||||
position))
|
||||
{
|
||||
while (removed--)
|
||||
gtk_tree_store_remove (self->completion_store, &iter);
|
||||
}
|
||||
}
|
||||
|
||||
while (added-- > 0)
|
||||
{
|
||||
GtkTreeIter iter;
|
||||
GFileInfo *info;
|
||||
const char *suffix = NULL;
|
||||
char *full_path;
|
||||
char *display_name;
|
||||
|
||||
info = g_list_model_get_item (model, position);
|
||||
|
||||
if (_gtk_file_info_consider_as_directory (info))
|
||||
suffix = G_DIR_SEPARATOR_S;
|
||||
|
||||
g_value_take_string (value,
|
||||
g_strconcat (prefix,
|
||||
g_file_info_get_display_name (info),
|
||||
suffix,
|
||||
NULL));
|
||||
break;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
break;
|
||||
}
|
||||
display_name = g_strconcat (g_file_info_get_display_name (info), suffix, NULL);
|
||||
full_path = g_strconcat (self->dir_part, display_name, NULL);
|
||||
|
||||
return TRUE;
|
||||
gtk_tree_store_insert_with_values (self->completion_store,
|
||||
&iter, NULL,
|
||||
position,
|
||||
FILE_INFO_COLUMN, info,
|
||||
FULL_PATH_COLUMN, full_path,
|
||||
DISPLAY_NAME_COLUMN, display_name,
|
||||
-1);
|
||||
|
||||
g_clear_object (&info);
|
||||
|
||||
position++;
|
||||
}
|
||||
}
|
||||
|
||||
/* Fills the completion store from the contents of the current folder */
|
||||
static void
|
||||
populate_completion_store (GtkFileChooserEntry *chooser_entry)
|
||||
{
|
||||
chooser_entry->completion_store = GTK_TREE_MODEL (
|
||||
chooser_entry->completion_store = gtk_tree_store_new (N_COLUMNS,
|
||||
G_TYPE_FILE_INFO,
|
||||
G_TYPE_STRING,
|
||||
G_TYPE_STRING);
|
||||
|
||||
chooser_entry->model =
|
||||
_gtk_file_system_model_new_for_directory (chooser_entry->current_folder_file,
|
||||
"standard::name,standard::display-name,standard::type,"
|
||||
"standard::content-type",
|
||||
completion_store_set,
|
||||
chooser_entry,
|
||||
N_COLUMNS,
|
||||
G_TYPE_STRING,
|
||||
G_TYPE_STRING));
|
||||
g_signal_connect (chooser_entry->completion_store, "finished-loading",
|
||||
"standard::content-type");
|
||||
g_signal_connect (chooser_entry->model, "items-changed",
|
||||
G_CALLBACK (model_items_changed_cb), chooser_entry);
|
||||
g_signal_connect (chooser_entry->model, "finished-loading",
|
||||
G_CALLBACK (finished_loading_cb), chooser_entry);
|
||||
|
||||
_gtk_file_system_model_set_filter_folders (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
|
||||
TRUE);
|
||||
_gtk_file_system_model_set_show_files (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
|
||||
_gtk_file_system_model_set_filter_folders (chooser_entry->model, TRUE);
|
||||
_gtk_file_system_model_set_show_files (chooser_entry->model,
|
||||
chooser_entry->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
|
||||
chooser_entry->action == GTK_FILE_CHOOSER_ACTION_SAVE);
|
||||
gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (chooser_entry->completion_store),
|
||||
DISPLAY_NAME_COLUMN, GTK_SORT_ASCENDING);
|
||||
|
||||
gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)),
|
||||
chooser_entry->completion_store);
|
||||
GTK_TREE_MODEL (chooser_entry->completion_store));
|
||||
}
|
||||
|
||||
/* Callback when the current folder finishes loading */
|
||||
@@ -637,7 +656,7 @@ finished_loading_cb (GtkFileSystemModel *model,
|
||||
completion = gtk_entry_get_completion (GTK_ENTRY (chooser_entry));
|
||||
update_inline_completion (chooser_entry);
|
||||
|
||||
if (gtk_widget_has_focus (GTK_WIDGET (chooser_entry)))
|
||||
if (gtk_widget_has_focus (GTK_WIDGET (gtk_entry_get_text_widget (GTK_ENTRY (chooser_entry)))))
|
||||
{
|
||||
gtk_entry_completion_complete (completion);
|
||||
gtk_entry_completion_insert_prefix (completion);
|
||||
@@ -658,11 +677,7 @@ set_completion_folder (GtkFileChooserEntry *chooser_entry,
|
||||
return;
|
||||
}
|
||||
|
||||
if (chooser_entry->current_folder_file)
|
||||
{
|
||||
g_object_unref (chooser_entry->current_folder_file);
|
||||
chooser_entry->current_folder_file = NULL;
|
||||
}
|
||||
g_clear_object (&chooser_entry->current_folder_file);
|
||||
|
||||
g_free (chooser_entry->dir_part);
|
||||
chooser_entry->dir_part = g_strdup (dir_part);
|
||||
@@ -710,7 +725,7 @@ refresh_current_folder_and_file_part (GtkFileChooserEntry *chooser_entry)
|
||||
|
||||
g_free (dir_part);
|
||||
|
||||
if (chooser_entry->completion_store &&
|
||||
if (chooser_entry->model &&
|
||||
(g_strcmp0 (old_file_part, chooser_entry->file_part) != 0))
|
||||
{
|
||||
GtkFileFilter *filter;
|
||||
@@ -720,8 +735,7 @@ refresh_current_folder_and_file_part (GtkFileChooserEntry *chooser_entry)
|
||||
pattern = g_strconcat (chooser_entry->file_part, "*", NULL);
|
||||
gtk_file_filter_add_pattern (filter, pattern);
|
||||
|
||||
_gtk_file_system_model_set_filter (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
|
||||
filter);
|
||||
_gtk_file_system_model_set_filter (chooser_entry->model, filter);
|
||||
|
||||
g_free (pattern);
|
||||
g_object_unref (filter);
|
||||
@@ -940,8 +954,8 @@ _gtk_file_chooser_entry_set_action (GtkFileChooserEntry *chooser_entry,
|
||||
break;
|
||||
}
|
||||
|
||||
if (chooser_entry->completion_store)
|
||||
_gtk_file_system_model_set_show_files (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
|
||||
if (chooser_entry->model)
|
||||
_gtk_file_system_model_set_show_files (chooser_entry->model,
|
||||
action == GTK_FILE_CHOOSER_ACTION_OPEN ||
|
||||
action == GTK_FILE_CHOOSER_ACTION_SAVE);
|
||||
|
||||
@@ -971,17 +985,14 @@ gboolean
|
||||
_gtk_file_chooser_entry_get_is_folder (GtkFileChooserEntry *chooser_entry,
|
||||
GFile *file)
|
||||
{
|
||||
GtkTreeIter iter;
|
||||
GFileInfo *info;
|
||||
|
||||
if (chooser_entry->completion_store == NULL ||
|
||||
!_gtk_file_system_model_get_iter_for_file (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
|
||||
&iter,
|
||||
file))
|
||||
if (chooser_entry->model == NULL)
|
||||
return FALSE;
|
||||
|
||||
info = _gtk_file_system_model_get_info (GTK_FILE_SYSTEM_MODEL (chooser_entry->completion_store),
|
||||
&iter);
|
||||
info = _gtk_file_system_model_get_info_for_file (chooser_entry->model, file);
|
||||
if (!info)
|
||||
return FALSE;
|
||||
|
||||
return _gtk_file_info_consider_as_directory (info);
|
||||
}
|
||||
|
||||
@@ -479,3 +479,12 @@ _gtk_file_info_get_icon (GFileInfo *info,
|
||||
icon = g_themed_icon_new ("text-x-generic");
|
||||
return icon;
|
||||
}
|
||||
|
||||
GFile *
|
||||
_gtk_file_info_get_file (GFileInfo *info)
|
||||
{
|
||||
g_assert (G_IS_FILE_INFO (info));
|
||||
g_assert (g_file_info_has_attribute (info, "standard::file"));
|
||||
|
||||
return G_FILE (g_file_info_get_attribute_object (info, "standard::file"));
|
||||
}
|
||||
|
||||
@@ -58,6 +58,8 @@ GIcon * _gtk_file_info_get_icon (GFileInfo *info,
|
||||
int scale,
|
||||
GtkIconTheme *icon_theme);
|
||||
|
||||
GFile * _gtk_file_info_get_file (GFileInfo *info);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_FILE_CHOOSER_UTILS_H__ */
|
||||
|
||||
+1120
-1839
File diff suppressed because it is too large
Load Diff
@@ -23,6 +23,7 @@
|
||||
|
||||
#include <glib.h>
|
||||
#include "gtkfilechooserwidget.h"
|
||||
#include "gtkselectionmodel.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
@@ -36,6 +37,12 @@ gtk_file_chooser_widget_should_respond (GtkFileChooserWidget *chooser);
|
||||
void
|
||||
gtk_file_chooser_widget_initial_focus (GtkFileChooserWidget *chooser);
|
||||
|
||||
GSList *
|
||||
gtk_file_chooser_widget_get_selected_files (GtkFileChooserWidget *impl);
|
||||
|
||||
GtkSelectionModel *
|
||||
gtk_file_chooser_widget_get_selection_model (GtkFileChooserWidget *chooser);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_FILE_CHOOSER_WIDGET_PRIVATE_H__ */
|
||||
|
||||
+80
-1047
File diff suppressed because it is too large
Load Diff
@@ -21,7 +21,6 @@
|
||||
|
||||
#include <gio/gio.h>
|
||||
#include <gtk/gtkfilefilter.h>
|
||||
#include <gtk/deprecated/gtktreemodel.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
@@ -33,39 +32,13 @@ typedef struct _GtkFileSystemModel GtkFileSystemModel;
|
||||
|
||||
GType _gtk_file_system_model_get_type (void) G_GNUC_CONST;
|
||||
|
||||
typedef gboolean (*GtkFileSystemModelGetValue) (GtkFileSystemModel *model,
|
||||
GFile *file,
|
||||
GFileInfo *info,
|
||||
int column,
|
||||
GValue *value,
|
||||
gpointer user_data);
|
||||
|
||||
GtkFileSystemModel *_gtk_file_system_model_new (GtkFileSystemModelGetValue get_func,
|
||||
gpointer get_data,
|
||||
guint n_columns,
|
||||
...);
|
||||
GtkFileSystemModel *_gtk_file_system_model_new_for_directory(GFile * dir,
|
||||
const char * attributes,
|
||||
GtkFileSystemModelGetValue get_func,
|
||||
gpointer get_data,
|
||||
guint n_columns,
|
||||
...);
|
||||
GtkFileSystemModel *_gtk_file_system_model_new (void);
|
||||
GtkFileSystemModel *_gtk_file_system_model_new_for_directory(GFile *dir,
|
||||
const char *attributes);
|
||||
GFile * _gtk_file_system_model_get_directory (GtkFileSystemModel *model);
|
||||
GCancellable * _gtk_file_system_model_get_cancellable (GtkFileSystemModel *model);
|
||||
gboolean _gtk_file_system_model_iter_is_visible (GtkFileSystemModel *model,
|
||||
GtkTreeIter *iter);
|
||||
gboolean _gtk_file_system_model_iter_is_filtered_out (GtkFileSystemModel *model,
|
||||
GtkTreeIter *iter);
|
||||
GFileInfo * _gtk_file_system_model_get_info (GtkFileSystemModel *model,
|
||||
GtkTreeIter *iter);
|
||||
gboolean _gtk_file_system_model_get_iter_for_file(GtkFileSystemModel *model,
|
||||
GtkTreeIter *iter,
|
||||
GFileInfo * _gtk_file_system_model_get_info_for_file(GtkFileSystemModel *model,
|
||||
GFile *file);
|
||||
GFile * _gtk_file_system_model_get_file (GtkFileSystemModel *model,
|
||||
GtkTreeIter *iter);
|
||||
const GValue * _gtk_file_system_model_get_value (GtkFileSystemModel *model,
|
||||
GtkTreeIter * iter,
|
||||
int column);
|
||||
|
||||
void _gtk_file_system_model_add_and_query_file (GtkFileSystemModel *model,
|
||||
GFile *file,
|
||||
@@ -88,8 +61,6 @@ void _gtk_file_system_model_set_show_files (GtkFileSystemModel
|
||||
gboolean show_files);
|
||||
void _gtk_file_system_model_set_filter_folders (GtkFileSystemModel *model,
|
||||
gboolean show_folders);
|
||||
void _gtk_file_system_model_clear_cache (GtkFileSystemModel *model,
|
||||
int column);
|
||||
|
||||
void _gtk_file_system_model_set_filter (GtkFileSystemModel *model,
|
||||
GtkFileFilter *filter);
|
||||
|
||||
@@ -0,0 +1,255 @@
|
||||
/* gtkfilethumbnail.c
|
||||
*
|
||||
* Copyright 2022 Georges Basile Stavracas Neto <georges.stavracas@gmail.com>
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU Lesser General Public License as
|
||||
* published by the Free Software Foundation; either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This file is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* SPDX-License-Identifier: LGPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "gtkfilethumbnail.h"
|
||||
|
||||
#include "gtkbinlayout.h"
|
||||
#include "gtkfilechooserutils.h"
|
||||
#include "gtkimage.h"
|
||||
#include "gtkprivate.h"
|
||||
#include "gtkwidget.h"
|
||||
|
||||
#define ICON_SIZE 16
|
||||
|
||||
struct _GtkFileThumbnail
|
||||
{
|
||||
GtkWidget parent;
|
||||
|
||||
GtkWidget *image;
|
||||
|
||||
GCancellable *cancellable;
|
||||
GFileInfo *info;
|
||||
};
|
||||
|
||||
typedef struct
|
||||
{
|
||||
GtkWidgetClass parent;
|
||||
} GtkFileThumbnailClass;
|
||||
|
||||
G_DEFINE_FINAL_TYPE (GtkFileThumbnail, _gtk_file_thumbnail, GTK_TYPE_WIDGET)
|
||||
|
||||
enum {
|
||||
PROP_0,
|
||||
PROP_INFO,
|
||||
N_PROPS,
|
||||
};
|
||||
|
||||
static GParamSpec *properties [N_PROPS];
|
||||
|
||||
static void
|
||||
copy_attribute (GFileInfo *to,
|
||||
GFileInfo *from,
|
||||
const char *attribute)
|
||||
{
|
||||
GFileAttributeType type;
|
||||
gpointer value;
|
||||
|
||||
if (g_file_info_get_attribute_data (from, attribute, &type, &value, NULL))
|
||||
g_file_info_set_attribute (to, attribute, type, value);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
update_image (GtkFileThumbnail *self)
|
||||
{
|
||||
GtkIconTheme *icon_theme;
|
||||
GIcon *icon;
|
||||
int scale;
|
||||
|
||||
if (!g_file_info_has_attribute (self->info, G_FILE_ATTRIBUTE_STANDARD_ICON))
|
||||
return FALSE;
|
||||
|
||||
scale = gtk_widget_get_scale_factor (GTK_WIDGET (self));
|
||||
icon_theme = gtk_icon_theme_get_for_display (gtk_widget_get_display (GTK_WIDGET (self)));
|
||||
|
||||
icon = _gtk_file_info_get_icon (self->info, ICON_SIZE, scale, icon_theme);
|
||||
|
||||
gtk_image_set_from_gicon (GTK_IMAGE (self->image), icon);
|
||||
|
||||
g_object_unref (icon);
|
||||
|
||||
return TRUE;
|
||||
|
||||
}
|
||||
|
||||
static void
|
||||
thumbnail_queried_cb (GObject *object,
|
||||
GAsyncResult *result,
|
||||
gpointer user_data)
|
||||
{
|
||||
GtkFileThumbnail *self = user_data; /* might be unreffed if operation was cancelled */
|
||||
GFile *file = G_FILE (object);
|
||||
GFileInfo *queried;
|
||||
|
||||
queried = g_file_query_info_finish (file, result, NULL);
|
||||
if (queried == NULL)
|
||||
return;
|
||||
|
||||
copy_attribute (self->info, queried, G_FILE_ATTRIBUTE_THUMBNAIL_PATH);
|
||||
copy_attribute (self->info, queried, G_FILE_ATTRIBUTE_THUMBNAILING_FAILED);
|
||||
copy_attribute (self->info, queried, G_FILE_ATTRIBUTE_STANDARD_ICON);
|
||||
|
||||
update_image (self);
|
||||
|
||||
g_clear_object (&queried);
|
||||
|
||||
g_clear_object (&self->cancellable);
|
||||
}
|
||||
|
||||
static void
|
||||
cancel_thumbnail (GtkFileThumbnail *self)
|
||||
{
|
||||
g_cancellable_cancel (self->cancellable);
|
||||
g_clear_object (&self->cancellable);
|
||||
}
|
||||
|
||||
static void
|
||||
get_thumbnail (GtkFileThumbnail *self)
|
||||
{
|
||||
if (!self->info)
|
||||
return;
|
||||
|
||||
if (!update_image (self))
|
||||
{
|
||||
GFile *file;
|
||||
|
||||
if (g_file_info_has_attribute (self->info, "filechooser::queried"))
|
||||
return;
|
||||
|
||||
g_assert (self->cancellable == NULL);
|
||||
self->cancellable = g_cancellable_new ();
|
||||
|
||||
file = _gtk_file_info_get_file (self->info);
|
||||
g_file_info_set_attribute_boolean (self->info, "filechooser::queried", TRUE);
|
||||
g_file_query_info_async (file,
|
||||
G_FILE_ATTRIBUTE_THUMBNAIL_PATH ","
|
||||
G_FILE_ATTRIBUTE_THUMBNAILING_FAILED ","
|
||||
G_FILE_ATTRIBUTE_STANDARD_ICON,
|
||||
G_FILE_QUERY_INFO_NONE,
|
||||
G_PRIORITY_DEFAULT,
|
||||
self->cancellable,
|
||||
thumbnail_queried_cb,
|
||||
self);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
_gtk_file_thumbnail_dispose (GObject *object)
|
||||
{
|
||||
GtkFileThumbnail *self = (GtkFileThumbnail *)object;
|
||||
|
||||
_gtk_file_thumbnail_set_info (self, NULL);
|
||||
|
||||
g_clear_pointer (&self->image, gtk_widget_unparent);
|
||||
|
||||
G_OBJECT_CLASS (_gtk_file_thumbnail_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
_gtk_file_thumbnail_get_property (GObject *object,
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkFileThumbnail *self = GTK_FILE_THUMBNAIL (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_INFO:
|
||||
g_value_set_object (value, self->info);
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
_gtk_file_thumbnail_set_property (GObject *object,
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkFileThumbnail *self = GTK_FILE_THUMBNAIL (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_INFO:
|
||||
_gtk_file_thumbnail_set_info (self, g_value_get_object (value));
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
_gtk_file_thumbnail_class_init (GtkFileThumbnailClass *klass)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
||||
|
||||
object_class->dispose = _gtk_file_thumbnail_dispose;
|
||||
object_class->get_property = _gtk_file_thumbnail_get_property;
|
||||
object_class->set_property = _gtk_file_thumbnail_set_property;
|
||||
|
||||
properties[PROP_INFO] =
|
||||
g_param_spec_object ("file-info", NULL, NULL,
|
||||
G_TYPE_FILE_INFO,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
||||
|
||||
g_object_class_install_properties (object_class, N_PROPS, properties);
|
||||
|
||||
gtk_widget_class_set_css_name (widget_class, I_("filethumbnail"));
|
||||
|
||||
gtk_widget_class_set_layout_manager_type (widget_class, GTK_TYPE_BIN_LAYOUT);
|
||||
}
|
||||
|
||||
static void
|
||||
_gtk_file_thumbnail_init (GtkFileThumbnail *self)
|
||||
{
|
||||
self->image = gtk_image_new ();
|
||||
gtk_widget_set_parent (self->image, GTK_WIDGET (self));
|
||||
}
|
||||
|
||||
GFileInfo *
|
||||
_gtk_file_thumbnail_get_info (GtkFileThumbnail *self)
|
||||
{
|
||||
g_assert (GTK_IS_FILE_THUMBNAIL (self));
|
||||
|
||||
return self->info;
|
||||
}
|
||||
|
||||
void
|
||||
_gtk_file_thumbnail_set_info (GtkFileThumbnail *self,
|
||||
GFileInfo *info)
|
||||
{
|
||||
g_assert (GTK_IS_FILE_THUMBNAIL (self));
|
||||
g_assert (info == NULL || G_IS_FILE_INFO (info));
|
||||
|
||||
if (g_set_object (&self->info, info))
|
||||
{
|
||||
cancel_thumbnail (self);
|
||||
get_thumbnail (self);
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_INFO]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
/* gtkfilethumbnail.h
|
||||
*
|
||||
* Copyright 2022 Georges Basile Stavracas Neto <georges.stavracas@gmail.com>
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU Lesser General Public License as
|
||||
* published by the Free Software Foundation; either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This file is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* SPDX-License-Identifier: LGPL-2.0-or-later
|
||||
*/
|
||||
|
||||
|
||||
#ifndef __GTK_FILE_THUMBNAIL_H__
|
||||
#define __GTK_FILE_THUMBNAIL_H__
|
||||
|
||||
#include <gio/gio.h>
|
||||
|
||||
#include "gtkfilesystemmodel.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GTK_TYPE_FILE_THUMBNAIL (_gtk_file_thumbnail_get_type ())
|
||||
#define GTK_FILE_THUMBNAIL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FILE_THUMBNAIL, GtkFileThumbnail))
|
||||
#define GTK_IS_FILE_THUMBNAIL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FILE_THUMBNAIL))
|
||||
|
||||
typedef struct _GtkFileThumbnail GtkFileThumbnail;
|
||||
|
||||
GType _gtk_file_thumbnail_get_type (void) G_GNUC_CONST;
|
||||
|
||||
GFileInfo *_gtk_file_thumbnail_get_info (GtkFileThumbnail *self);
|
||||
void _gtk_file_thumbnail_set_info (GtkFileThumbnail *self,
|
||||
GFileInfo *info);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_FILE_THUMBNAIL_H__ */
|
||||
|
||||
@@ -161,6 +161,31 @@ GDK_AVAILABLE_IN_ALL
|
||||
void gtk_font_chooser_set_language (GtkFontChooser *fontchooser,
|
||||
const char *language);
|
||||
|
||||
typedef void (*GtkFontChooserPrepareCallback) (GtkFontChooser *chooser,
|
||||
gpointer user_data);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
void gtk_choose_font (GtkWindow *parent,
|
||||
const char *title,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
void gtk_choose_font_full (GtkWindow *parent,
|
||||
const char *title,
|
||||
GtkFontChooserPrepareCallback prepare,
|
||||
gpointer prepare_data,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
gboolean gtk_choose_font_finish (GtkFontChooser *chooser,
|
||||
GAsyncResult *result,
|
||||
GError **error);
|
||||
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkFontChooser, g_object_unref)
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
@@ -324,3 +324,127 @@ gtk_font_chooser_dialog_buildable_get_internal_child (GtkBuildable *buildable,
|
||||
|
||||
return parent_buildable_iface->get_internal_child (buildable, builder, childname);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
cancelled_cb (GCancellable *cancellable,
|
||||
GtkDialog *dialog)
|
||||
{
|
||||
gtk_dialog_response (dialog, GTK_RESPONSE_CANCEL);
|
||||
}
|
||||
|
||||
static void
|
||||
response_cb (GtkDialog *dialog,
|
||||
int response,
|
||||
GTask *task)
|
||||
{
|
||||
GCancellable *cancellable = g_task_get_cancellable (task);
|
||||
|
||||
if (cancellable)
|
||||
g_signal_handlers_disconnect_by_func (cancellable, cancelled_cb, dialog);
|
||||
|
||||
if (response == GTK_RESPONSE_OK)
|
||||
g_task_return_boolean (task, TRUE);
|
||||
else
|
||||
g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_CANCELLED, "Cancelled");
|
||||
|
||||
g_object_unref (task);
|
||||
gtk_window_destroy (GTK_WINDOW (dialog));
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_choose_font:
|
||||
* @parent: (nullable): parent window
|
||||
* @title: title for the font chooser
|
||||
* @cancellable: (nullable): a `GCancellable` to cancel the operation
|
||||
* @callback: (scope async): callback to call when the action is complete
|
||||
* @user_data: (closure callback): data to pass to @callback
|
||||
*
|
||||
* This function presents a font chooser to let the user
|
||||
* pick a font.
|
||||
*
|
||||
* The @callback will be called when the dialog is closed.
|
||||
* It should call [function@Gtk.choose_font_finish] to
|
||||
* find out whether the operation was completed successfully,
|
||||
* and use [class@Gtk.FontChooser] API to obtain the results.
|
||||
*/
|
||||
void
|
||||
gtk_choose_font (GtkWindow *parent,
|
||||
const char *title,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data)
|
||||
{
|
||||
gtk_choose_font_full (parent, title, NULL, NULL, cancellable, callback, user_data);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_choose_font_full:
|
||||
* @parent: (nullable): parent window
|
||||
* @title: title for the font chooser
|
||||
* @prepare: (nullable) (scope call): callback to set up the font chooser
|
||||
* @prepare_data: (closure prepare): data to pass to @prepare
|
||||
* @cancellable: (nullable): a `GCancellable` to cancel the operation
|
||||
* @callback: (scope async): callback to call when the action is complete
|
||||
* @user_data: (closure callback): data to pass to @callback
|
||||
*
|
||||
* This function presents a font chooser to let the user
|
||||
* choose a font.
|
||||
*
|
||||
* In addition to [function@Gtk.choose_font], this function takes
|
||||
* a @prepare callback that lets you set up the font chooser according
|
||||
* to your needs.
|
||||
*
|
||||
* The @callback will be called when the dialog is closed.
|
||||
* It should use [function@Gtk.choose_font_finish] to find
|
||||
* out whether the operation was completed successfully,
|
||||
* and use [class@Gtk.FontChooser] API to obtain the results.
|
||||
*/
|
||||
void
|
||||
gtk_choose_font_full (GtkWindow *parent,
|
||||
const char *title,
|
||||
GtkFontChooserPrepareCallback prepare,
|
||||
gpointer prepare_data,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data)
|
||||
{
|
||||
GtkWidget *dialog;
|
||||
GTask *task;
|
||||
|
||||
dialog = gtk_font_chooser_dialog_new (title, parent);
|
||||
if (prepare)
|
||||
prepare (GTK_FONT_CHOOSER (dialog), prepare);
|
||||
|
||||
if (cancellable)
|
||||
g_signal_connect (cancellable, "cancelled", G_CALLBACK (cancelled_cb), dialog);
|
||||
|
||||
task = g_task_new (dialog, cancellable, callback, user_data);
|
||||
g_task_set_source_tag (task, gtk_choose_font_full);
|
||||
|
||||
g_signal_connect (dialog, "response", G_CALLBACK (response_cb), task);
|
||||
|
||||
gtk_window_present (GTK_WINDOW (dialog));
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_choose_font_finish:
|
||||
* @chooser: the `GtkFontChooser`
|
||||
* @result: `GAsyncResult` that was passed to @callback
|
||||
* @error: return location for an error
|
||||
*
|
||||
* Finishes a gtk_choose_font() or gtk_choose_font_full() call
|
||||
* and returns whether the operation was successful.
|
||||
*
|
||||
* If this function returns `TRUE`, you can use
|
||||
* [class@Gtk.FontChooser] API to get the results.
|
||||
*
|
||||
* Returns: `TRUE` if the operation was successful
|
||||
*/
|
||||
gboolean
|
||||
gtk_choose_font_finish (GtkFontChooser *chooser,
|
||||
GAsyncResult *result,
|
||||
GError **error)
|
||||
{
|
||||
return g_task_propagate_boolean (G_TASK (result), error);
|
||||
}
|
||||
|
||||
@@ -1870,9 +1870,7 @@ find_affected_text (GtkFontChooserWidget *fontchooser,
|
||||
|
||||
hb_ot_layout_table_find_script (hb_face, HB_OT_TAG_GSUB, script_tag, &script_index);
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
hb_ot_layout_script_find_language (hb_face, HB_OT_TAG_GSUB, script_index, lang_tag, &lang_index);
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
hb_ot_layout_script_select_language (hb_face, HB_OT_TAG_GSUB, script_index, 1, &lang_tag, &lang_index);
|
||||
|
||||
if (hb_ot_layout_language_find_feature (hb_face,
|
||||
HB_OT_TAG_GSUB,
|
||||
@@ -2013,9 +2011,7 @@ update_feature_label (GtkFontChooserWidget *fontchooser,
|
||||
|
||||
hb_ot_layout_table_find_script (hb_face, HB_OT_TAG_GSUB, script_tag, &script_index);
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
hb_ot_layout_script_find_language (hb_face, HB_OT_TAG_GSUB, script_index, lang_tag, &lang_index);
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
hb_ot_layout_script_select_language (hb_face, HB_OT_TAG_GSUB, script_index, 1, &lang_tag, &lang_index);
|
||||
|
||||
if (hb_ot_layout_language_find_feature (hb_face, HB_OT_TAG_GSUB, script_index, lang_index, item->tag, &feature_index))
|
||||
{
|
||||
@@ -2565,9 +2561,7 @@ gtk_font_chooser_widget_update_font_features (GtkFontChooserWidget *fontchooser)
|
||||
{
|
||||
hb_ot_layout_table_find_script (hb_face, table[i], script_tag, &script_index);
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
hb_ot_layout_script_find_language (hb_face, table[i], script_index, lang_tag, &lang_index);
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
hb_ot_layout_script_select_language (hb_face, table[i], script_index, 1, &lang_tag, &lang_index);
|
||||
|
||||
feat = features + n_features;
|
||||
count = G_N_ELEMENTS (features) - n_features;
|
||||
|
||||
@@ -46,8 +46,9 @@
|
||||
* `GtkIMContextSimple` reads compose sequences from the first of the
|
||||
* following files that is found: ~/.config/gtk-4.0/Compose, ~/.XCompose,
|
||||
* /usr/share/X11/locale/$locale/Compose (for locales that have a nontrivial
|
||||
* Compose file). The syntax of these files is described in the Compose(5)
|
||||
* manual page.
|
||||
* Compose file). A subset of the file syntax described in the Compose(5)
|
||||
* manual page is supported. Additionally, `include "%L"` loads GTK’s built-in
|
||||
* table of compose sequences rather than the locale-specific one from X11.
|
||||
*
|
||||
* If none of these files is found, `GtkIMContextSimple` uses a built-in table
|
||||
* of compose sequences that is derived from the X11 Compose files.
|
||||
@@ -180,20 +181,6 @@ gtk_im_context_simple_class_init (GtkIMContextSimpleClass *class)
|
||||
init_compose_table_async (NULL, NULL, NULL);
|
||||
}
|
||||
|
||||
static char *
|
||||
get_x11_compose_file_dir (void)
|
||||
{
|
||||
char * compose_file_dir;
|
||||
|
||||
#if defined (X11_DATA_PREFIX)
|
||||
compose_file_dir = g_strdup (X11_DATA_PREFIX "/share/X11/locale");
|
||||
#else
|
||||
compose_file_dir = g_build_filename (_gtk_get_datadir (), "X11", "locale", NULL);
|
||||
#endif
|
||||
|
||||
return compose_file_dir;
|
||||
}
|
||||
|
||||
static int
|
||||
gtk_compose_table_find (gconstpointer data1,
|
||||
gconstpointer data2)
|
||||
@@ -321,7 +308,7 @@ gtk_im_context_simple_init_compose_table (void)
|
||||
{
|
||||
if (g_ascii_strncasecmp (*lang, *sys_lang, strlen (*sys_lang)) == 0)
|
||||
{
|
||||
char *x11_compose_file_dir = get_x11_compose_file_dir ();
|
||||
char *x11_compose_file_dir = gtk_compose_table_get_x11_compose_file_dir ();
|
||||
path = g_build_filename (x11_compose_file_dir, *lang, "Compose", NULL);
|
||||
g_free (x11_compose_file_dir);
|
||||
break;
|
||||
|
||||
@@ -1,317 +0,0 @@
|
||||
/*
|
||||
* Copyright © 2022 Matthias Clasen
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Authors: Matthias Clasen <mclasen@redhat.com>
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "gtkinvertiblesorter.h"
|
||||
|
||||
#include "gtksorterprivate.h"
|
||||
#include "gtktypebuiltins.h"
|
||||
|
||||
/**
|
||||
* GtkInvertibleSorter:
|
||||
*
|
||||
* `GtkInvertibleSorter` wraps another sorter and
|
||||
* makes it possible to invert its order.
|
||||
*/
|
||||
struct _GtkInvertibleSorter
|
||||
{
|
||||
GtkSorter parent_instance;
|
||||
|
||||
GtkSorter *sorter;
|
||||
GtkSortType sort_order;
|
||||
};
|
||||
|
||||
enum {
|
||||
PROP_0,
|
||||
PROP_SORTER,
|
||||
PROP_SORT_ORDER,
|
||||
|
||||
N_PROPS
|
||||
};
|
||||
|
||||
static GParamSpec *properties[N_PROPS] = { NULL, };
|
||||
|
||||
|
||||
G_DEFINE_TYPE (GtkInvertibleSorter, gtk_invertible_sorter, GTK_TYPE_SORTER)
|
||||
|
||||
static GtkOrdering
|
||||
gtk_invertible_sorter_compare (GtkSorter *sorter,
|
||||
gpointer item1,
|
||||
gpointer item2)
|
||||
{
|
||||
GtkInvertibleSorter *self = GTK_INVERTIBLE_SORTER (sorter);
|
||||
GtkOrdering result = GTK_ORDERING_EQUAL;
|
||||
|
||||
if (self->sorter)
|
||||
result = gtk_sorter_compare (self->sorter, item1, item2);
|
||||
|
||||
if (self->sort_order == GTK_SORT_DESCENDING)
|
||||
result = -result;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
static GtkSorterOrder
|
||||
gtk_invertible_sorter_get_order (GtkSorter *sorter)
|
||||
{
|
||||
GtkInvertibleSorter *self = GTK_INVERTIBLE_SORTER (sorter);
|
||||
|
||||
if (self->sorter)
|
||||
return gtk_sorter_get_order (self->sorter);
|
||||
|
||||
return GTK_SORTER_ORDER_NONE;
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_invertible_sorter_changed_cb (GtkSorter *sorter,
|
||||
GtkSorterChange change,
|
||||
GtkInvertibleSorter *self)
|
||||
{
|
||||
gtk_sorter_changed (GTK_SORTER (self), change);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_invertible_sorter_get_property (GObject *object,
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkInvertibleSorter *self = GTK_INVERTIBLE_SORTER (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_SORTER:
|
||||
g_value_set_object (value, self->sorter);
|
||||
break;
|
||||
|
||||
case PROP_SORT_ORDER:
|
||||
g_value_set_enum (value, self->sort_order);
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_invertible_sorter_set_property (GObject *object,
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkInvertibleSorter *self = GTK_INVERTIBLE_SORTER (object);
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_SORTER:
|
||||
gtk_invertible_sorter_set_sorter (self, g_value_get_object (value));
|
||||
break;
|
||||
|
||||
case PROP_SORT_ORDER:
|
||||
gtk_invertible_sorter_set_sort_order (self, g_value_get_enum (value));
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_invertible_sorter_dispose (GObject *object)
|
||||
{
|
||||
GtkInvertibleSorter *self = GTK_INVERTIBLE_SORTER (object);
|
||||
|
||||
if (self->sorter)
|
||||
g_signal_handlers_disconnect_by_func (self->sorter, G_CALLBACK (gtk_invertible_sorter_changed_cb), self);
|
||||
g_clear_object (&self->sorter);
|
||||
|
||||
G_OBJECT_CLASS (gtk_invertible_sorter_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_invertible_sorter_class_init (GtkInvertibleSorterClass *class)
|
||||
{
|
||||
GtkSorterClass *sorter_class = GTK_SORTER_CLASS (class);
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
||||
|
||||
sorter_class->compare = gtk_invertible_sorter_compare;
|
||||
sorter_class->get_order = gtk_invertible_sorter_get_order;
|
||||
|
||||
object_class->get_property = gtk_invertible_sorter_get_property;
|
||||
object_class->set_property = gtk_invertible_sorter_set_property;
|
||||
object_class->dispose = gtk_invertible_sorter_dispose;
|
||||
|
||||
/**
|
||||
* GtkInvertibleSorter:sorter: (attributes org.gtk.Property.get=gtk_invertible_sorter_get_sorter org.gtk.Property.set=gtk_invertible_sorter_set_sorter)
|
||||
*
|
||||
* The sorter.
|
||||
*
|
||||
* Since: 4.10
|
||||
**/
|
||||
properties[PROP_SORTER] =
|
||||
g_param_spec_object ("sorter", NULL, NULL,
|
||||
GTK_TYPE_SORTER,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
||||
|
||||
/**
|
||||
* GtkInvertibleSorter:sort-order: (attributes org.gtk.Property.get=gtk_invertible_sorter_get_sort_order org.gtk.Property.set=gtk_invertible_sorter_set_sort_order)
|
||||
*
|
||||
* Whether the order of the underlying sorter is inverted.
|
||||
*
|
||||
* The order of the underlying sorter is considered ascending.
|
||||
*
|
||||
* To make the invertible sorter invert the order,
|
||||
* set this property to `GTK_SORT_DESCENDING`.
|
||||
*
|
||||
* Since: 4.10
|
||||
**/
|
||||
properties[PROP_SORT_ORDER] =
|
||||
g_param_spec_enum ("sort-order", NULL, NULL,
|
||||
GTK_TYPE_SORT_TYPE,
|
||||
GTK_SORT_ASCENDING,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
||||
|
||||
g_object_class_install_properties (object_class, N_PROPS, properties);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_invertible_sorter_init (GtkInvertibleSorter *self)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_invertible_sorter_new:
|
||||
* @sorter: (nullable) (transfer full): the sorter
|
||||
*
|
||||
* Creates a new invertible sorter.
|
||||
*
|
||||
* This sorter compares items like @sorter, optionally
|
||||
* inverting the order.
|
||||
*
|
||||
* Returns: a new `GtkInvertibleSorter`
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
GtkInvertibleSorter *
|
||||
gtk_invertible_sorter_new (GtkSorter *sorter)
|
||||
{
|
||||
GtkInvertibleSorter *self;
|
||||
|
||||
self = g_object_new (GTK_TYPE_INVERTIBLE_SORTER,
|
||||
"sorter", sorter,
|
||||
NULL);
|
||||
g_clear_object (&sorter);
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_invertible_sorter_set_sorter:
|
||||
* @self: a `GtkInvertibleSorter`
|
||||
* @sorter: (nullable): a sorter
|
||||
*
|
||||
* Sets the sorter.
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
void
|
||||
gtk_invertible_sorter_set_sorter (GtkInvertibleSorter *self,
|
||||
GtkSorter *sorter)
|
||||
{
|
||||
g_return_if_fail (GTK_IS_INVERTIBLE_SORTER (self));
|
||||
g_return_if_fail (sorter == NULL || GTK_IS_SORTER (sorter));
|
||||
|
||||
if (self->sorter)
|
||||
g_signal_handlers_disconnect_by_func (self->sorter, G_CALLBACK (gtk_invertible_sorter_changed_cb), self);
|
||||
|
||||
if (sorter)
|
||||
g_signal_connect (sorter, "changed", G_CALLBACK (gtk_invertible_sorter_changed_cb), self);
|
||||
|
||||
if (g_set_object (&self->sorter, sorter))
|
||||
{
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_SORTER]);
|
||||
gtk_sorter_changed (GTK_SORTER (self), GTK_SORTER_CHANGE_DIFFERENT);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_invertible_sorter_get_sorter:
|
||||
* @self: a `GtkInvertibleSorter`
|
||||
*
|
||||
* Returns the sorter.
|
||||
*
|
||||
* Returns: (nullable) (transfer none): the sorter
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
GtkSorter *
|
||||
gtk_invertible_sorter_get_sorter (GtkInvertibleSorter *self)
|
||||
{
|
||||
g_return_val_if_fail (GTK_IS_INVERTIBLE_SORTER (self), NULL);
|
||||
|
||||
return self->sorter;
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_invertible_sorter_set_sort_order:
|
||||
* @self: a `GtkInvertibleSorter`
|
||||
* @sort_order: the new sort order
|
||||
*
|
||||
* Sets whether to invert the order of the wrapped sorter.
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
void
|
||||
gtk_invertible_sorter_set_sort_order (GtkInvertibleSorter *self,
|
||||
GtkSortType sort_order)
|
||||
{
|
||||
g_return_if_fail (GTK_IS_INVERTIBLE_SORTER (self));
|
||||
|
||||
if (self->sort_order == sort_order)
|
||||
return;
|
||||
|
||||
self->sort_order = sort_order;
|
||||
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_SORT_ORDER]);
|
||||
gtk_sorter_changed (GTK_SORTER (self), GTK_SORTER_CHANGE_INVERTED);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_invertible_sorter_get_sort_order:
|
||||
* @self: a `GtkInvertibleSorter`
|
||||
*
|
||||
* Returns the sort order of @self.
|
||||
*
|
||||
* If the sort order is `GTK_SORT_DESCENDING`,
|
||||
* then the underlying order is inverted.
|
||||
*
|
||||
* Returns: whether the order is inverted
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
GtkSortType
|
||||
gtk_invertible_sorter_get_sort_order (GtkInvertibleSorter *self)
|
||||
{
|
||||
g_return_val_if_fail (GTK_IS_INVERTIBLE_SORTER (self), GTK_SORT_ASCENDING);
|
||||
|
||||
return self->sort_order;
|
||||
}
|
||||
@@ -503,56 +503,3 @@ gtk_multi_sorter_remove (GtkMultiSorter *self,
|
||||
GTK_SORTER_CHANGE_LESS_STRICT,
|
||||
gtk_multi_sort_keys_new (self));
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_multi_sorter_splice:
|
||||
* @self: a `GtkMultiSorter`
|
||||
* @position: the position at which to make the change
|
||||
* @n_removals: the number of items to remove
|
||||
* @additions: (array length=n_additions) (element-type GtkSorter) (transfer full): the sorters to add
|
||||
* @n_additions: the number of sorters to add
|
||||
*
|
||||
* Changes @self by removing @n_removals items and adding @n_additions
|
||||
* sorters to it.
|
||||
*
|
||||
* This is the equivalent of [method@GLib.ListStore.splice].
|
||||
*
|
||||
* Note that @self takes ownership of the added sorters.
|
||||
*
|
||||
* Since: 4.10
|
||||
*/
|
||||
void
|
||||
gtk_multi_sorter_splice (GtkMultiSorter *self,
|
||||
guint position,
|
||||
guint n_removals,
|
||||
GtkSorter **additions,
|
||||
guint n_additions)
|
||||
{
|
||||
guint n_items;
|
||||
|
||||
g_return_if_fail (GTK_IS_MULTI_SORTER (self));
|
||||
g_return_if_fail (position + n_removals >= position); /* overflow */
|
||||
|
||||
n_items = gtk_sorters_get_size (&self->sorters);
|
||||
g_return_if_fail (position + n_removals <= n_items);
|
||||
|
||||
|
||||
for (guint i = 0; i < n_removals; i++)
|
||||
{
|
||||
GtkSorter *sorter = gtk_sorters_get (&self->sorters, position + i);
|
||||
g_signal_handlers_disconnect_by_func (sorter, gtk_multi_sorter_changed_cb, self);
|
||||
}
|
||||
for (guint i = 0; i < n_additions; i++)
|
||||
{
|
||||
GtkSorter *sorter = additions[i];
|
||||
g_signal_connect (sorter, "changed", G_CALLBACK (gtk_multi_sorter_changed_cb), self);
|
||||
}
|
||||
gtk_sorters_splice (&self->sorters, position, n_removals, FALSE, additions, n_additions);
|
||||
g_list_model_items_changed (G_LIST_MODEL (self), position, n_removals, n_additions);
|
||||
if (n_removals != n_additions)
|
||||
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_N_ITEMS]);
|
||||
|
||||
gtk_sorter_changed_with_keys (GTK_SORTER (self),
|
||||
GTK_SORTER_CHANGE_DIFFERENT,
|
||||
gtk_multi_sort_keys_new (self));
|
||||
}
|
||||
|
||||
@@ -44,13 +44,6 @@ GDK_AVAILABLE_IN_ALL
|
||||
void gtk_multi_sorter_remove (GtkMultiSorter *self,
|
||||
guint position);
|
||||
|
||||
GDK_AVAILABLE_IN_4_10
|
||||
void gtk_multi_sorter_splice (GtkMultiSorter *self,
|
||||
guint position,
|
||||
guint n_removals,
|
||||
GtkSorter **additions,
|
||||
guint n_additions);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_MULTI_SORTER_H__ */
|
||||
|
||||
@@ -520,8 +520,6 @@ on_remove_server_button_clicked (RemoveServerData *data)
|
||||
populate_servers (data->view);
|
||||
}
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
|
||||
static void
|
||||
populate_servers (GtkPlacesView *view)
|
||||
{
|
||||
@@ -617,8 +615,6 @@ populate_servers (GtkPlacesView *view)
|
||||
g_bookmark_file_free (server_list);
|
||||
}
|
||||
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
|
||||
static void
|
||||
update_view_mode (GtkPlacesView *view)
|
||||
{
|
||||
|
||||
+20
-25
@@ -24,12 +24,11 @@
|
||||
#include <gdk/gdk.h>
|
||||
|
||||
#include "gtksearchenginemodelprivate.h"
|
||||
#include "gtkfilechooserutils.h"
|
||||
#include "gtkprivate.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
|
||||
struct _GtkSearchEngineModel
|
||||
{
|
||||
GtkSearchEngine parent;
|
||||
@@ -81,37 +80,33 @@ static gboolean
|
||||
do_search (gpointer data)
|
||||
{
|
||||
GtkSearchEngineModel *model = data;
|
||||
GtkTreeIter iter;
|
||||
GList *hits = NULL;
|
||||
gboolean got_results = FALSE;
|
||||
|
||||
if (gtk_tree_model_get_iter_first (GTK_TREE_MODEL (model->model), &iter))
|
||||
for (guint i = 0; i < g_list_model_get_n_items (G_LIST_MODEL (model->model)); i++)
|
||||
{
|
||||
do
|
||||
GFileInfo *info = g_list_model_get_item (G_LIST_MODEL (model->model), i);
|
||||
|
||||
if (info_matches_query (model->query, info))
|
||||
{
|
||||
GFileInfo *info;
|
||||
GFile *file;
|
||||
GtkSearchHit *hit;
|
||||
|
||||
info = _gtk_file_system_model_get_info (model->model, &iter);
|
||||
if (info_matches_query (model->query, info))
|
||||
{
|
||||
GFile *file;
|
||||
GtkSearchHit *hit;
|
||||
|
||||
file = _gtk_file_system_model_get_file (model->model, &iter);
|
||||
hit = g_new (GtkSearchHit, 1);
|
||||
hit->file = g_object_ref (file);
|
||||
hit->info = g_object_ref (info);
|
||||
hits = g_list_prepend (hits, hit);
|
||||
}
|
||||
file = _gtk_file_info_get_file (info);
|
||||
hit = g_new (GtkSearchHit, 1);
|
||||
hit->file = g_object_ref (file);
|
||||
hit->info = g_object_ref (info);
|
||||
hits = g_list_prepend (hits, hit);
|
||||
}
|
||||
while (gtk_tree_model_iter_next (GTK_TREE_MODEL (model->model), &iter));
|
||||
|
||||
if (hits)
|
||||
{
|
||||
_gtk_search_engine_hits_added (GTK_SEARCH_ENGINE (model), hits);
|
||||
g_list_free_full (hits, (GDestroyNotify)_gtk_search_hit_free);
|
||||
got_results = TRUE;
|
||||
}
|
||||
g_clear_object (&info);
|
||||
}
|
||||
|
||||
if (hits)
|
||||
{
|
||||
_gtk_search_engine_hits_added (GTK_SEARCH_ENGINE (model), hits);
|
||||
g_list_free_full (hits, (GDestroyNotify)_gtk_search_hit_free);
|
||||
got_results = TRUE;
|
||||
}
|
||||
|
||||
model->idle = 0;
|
||||
|
||||
@@ -114,7 +114,8 @@ free_hit (gpointer data)
|
||||
}
|
||||
|
||||
static GFileInfo *
|
||||
create_file_info (TrackerSparqlCursor *cursor)
|
||||
create_file_info (GFile *file,
|
||||
TrackerSparqlCursor *cursor)
|
||||
{
|
||||
GFileInfo *info;
|
||||
const char *str;
|
||||
@@ -140,6 +141,10 @@ create_file_info (TrackerSparqlCursor *cursor)
|
||||
g_date_time_unref (creation);
|
||||
}
|
||||
|
||||
g_file_info_set_attribute_object (info, "standard::file", G_OBJECT (file));
|
||||
g_file_info_set_attribute_boolean (info, "filechooser::filtered-out", FALSE);
|
||||
g_file_info_set_attribute_boolean (info, "filechooser::visible", TRUE);
|
||||
|
||||
return info;
|
||||
}
|
||||
|
||||
@@ -175,7 +180,7 @@ query_callback (TrackerSparqlStatement *statement,
|
||||
url = tracker_sparql_cursor_get_string (cursor, 0, NULL);
|
||||
hit = g_slice_new0 (GtkSearchHit);
|
||||
hit->file = g_file_new_for_uri (url);
|
||||
hit->info = create_file_info (cursor);
|
||||
hit->info = create_file_info (hit->file, cursor);
|
||||
hits = g_list_prepend (hits, hit);
|
||||
}
|
||||
|
||||
|
||||
@@ -1259,13 +1259,13 @@ property_editor (GObject *object,
|
||||
g_strdup_printf ("%s: %s",
|
||||
self->name,
|
||||
gtk_label_get_text (GTK_LABEL (prop_edit))),
|
||||
NULL);
|
||||
-1);
|
||||
}
|
||||
else
|
||||
{
|
||||
gtk_accessible_update_property (GTK_ACCESSIBLE (prop_edit),
|
||||
GTK_ACCESSIBLE_PROPERTY_LABEL, self->name,
|
||||
NULL);
|
||||
-1);
|
||||
}
|
||||
|
||||
return prop_edit;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user