Ardour  8.7-14-g57a6773833
gtkexpander.h
Go to the documentation of this file.
1 /* GTK - The GIMP Toolkit
2  *
3  * Copyright (C) 2003 Sun Microsystems, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Authors:
21  * Mark McLoughlin <mark@skynet.ie>
22  */
23 
24 #ifndef __GTK_EXPANDER_H__
25 #define __GTK_EXPANDER_H__
26 
27 #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
28 #error "Only <gtk/gtk.h> can be included directly."
29 #endif
30 
31 #include <gtk/gtkbin.h>
32 
33 G_BEGIN_DECLS
34 
35 #define GTK_TYPE_EXPANDER (gtk_expander_get_type ())
36 #define GTK_EXPANDER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_EXPANDER, GtkExpander))
37 #define GTK_EXPANDER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_EXPANDER, GtkExpanderClass))
38 #define GTK_IS_EXPANDER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_EXPANDER))
39 #define GTK_IS_EXPANDER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_EXPANDER))
40 #define GTK_EXPANDER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_EXPANDER, GtkExpanderClass))
41 
42 typedef struct _GtkExpander GtkExpander;
43 typedef struct _GtkExpanderClass GtkExpanderClass;
44 typedef struct _GtkExpanderPrivate GtkExpanderPrivate;
45 
47 {
49 
51 };
52 
54 {
56 
57  /* Key binding signal; to get notification on the expansion
58  * state connect to notify:expanded.
59  */
60  void (* activate) (GtkExpander *expander);
61 };
62 
63 GType gtk_expander_get_type (void) G_GNUC_CONST;
64 
65 GtkWidget *gtk_expander_new (const gchar *label);
67 
69  gboolean expanded);
71 
72 /* Spacing between the expander/label and the child */
74  gint spacing);
76 
78  const gchar *label);
79 const gchar * gtk_expander_get_label (GtkExpander *expander);
80 
82  gboolean use_underline);
84 
86  gboolean use_markup);
88 
90  GtkWidget *label_widget);
93  gboolean label_fill);
95 
96 G_END_DECLS
97 
98 #endif /* __GTK_EXPANDER_H__ */
gboolean gtk_expander_get_use_markup(GtkExpander *expander)
GType gtk_expander_get_type(void) G_GNUC_CONST
const gchar * gtk_expander_get_label(GtkExpander *expander)
GtkWidget * gtk_expander_get_label_widget(GtkExpander *expander)
void gtk_expander_set_label_widget(GtkExpander *expander, GtkWidget *label_widget)
gboolean gtk_expander_get_expanded(GtkExpander *expander)
void gtk_expander_set_expanded(GtkExpander *expander, gboolean expanded)
void gtk_expander_set_use_markup(GtkExpander *expander, gboolean use_markup)
GtkWidget * gtk_expander_new_with_mnemonic(const gchar *label)
void gtk_expander_set_label(GtkExpander *expander, const gchar *label)
GtkWidget * gtk_expander_new(const gchar *label)
gint gtk_expander_get_spacing(GtkExpander *expander)
gboolean gtk_expander_get_use_underline(GtkExpander *expander)
void gtk_expander_set_use_underline(GtkExpander *expander, gboolean use_underline)
gboolean gtk_expander_get_label_fill(GtkExpander *expander)
void gtk_expander_set_spacing(GtkExpander *expander, gint spacing)
void gtk_expander_set_label_fill(GtkExpander *expander, gboolean label_fill)
struct _GtkExpanderPrivate GtkExpanderPrivate
Definition: gtkexpander.h:44
Definition: gtkbin.h:52
GtkBinClass parent_class
Definition: gtkexpander.h:55
void(* activate)(GtkExpander *expander)
Definition: gtkexpander.h:60
GtkBin bin
Definition: gtkexpander.h:48
GtkExpanderPrivate * GSEAL(priv)