/* GTK - The GIMP Toolkit * Copyright (C) 2019 Red Hat, Inc. * * Authors: * - 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 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 . */ #pragma once #include G_BEGIN_DECLS #define DEMO_TYPE_TAGGED_ENTRY (demo_tagged_entry_get_type ()) G_DECLARE_FINAL_TYPE (DemoTaggedEntry, demo_tagged_entry, DEMO, TAGGED_ENTRY, GtkWidget) #define DEMO_TYPE_TAGGED_ENTRY_TAG (demo_tagged_entry_tag_get_type ()) G_DECLARE_FINAL_TYPE (DemoTaggedEntryTag, demo_tagged_entry_tag, DEMO, TAGGED_ENTRY_TAG, GtkWidget) GtkWidget * demo_tagged_entry_new (void); void demo_tagged_entry_add_tag (DemoTaggedEntry *entry, GtkWidget *tag); void demo_tagged_entry_insert_tag_after (DemoTaggedEntry *entry, GtkWidget *tag, GtkWidget *sibling); void demo_tagged_entry_remove_tag (DemoTaggedEntry *entry, GtkWidget *tag); DemoTaggedEntryTag * demo_tagged_entry_tag_new (const char *label); const char * demo_tagged_entry_tag_get_label (DemoTaggedEntryTag *tag); void demo_tagged_entry_tag_set_label (DemoTaggedEntryTag *tag, const char *label); gboolean demo_tagged_entry_tag_get_has_close_button (DemoTaggedEntryTag *tag); void demo_tagged_entry_tag_set_has_close_button (DemoTaggedEntryTag *tag, gboolean has_close_button); G_END_DECLS