1 | /* |
2 | * Copyright (c) 2013 Red Hat, Inc. |
3 | * |
4 | * This program is free software; you can redistribute it and/or modify |
5 | * it under the terms of the GNU Lesser General Public License as published by |
6 | * the Free Software Foundation; either version 2 of the License, or (at your |
7 | * option) any later version. |
8 | * |
9 | * This program is distributed in the hope that it will be useful, but |
10 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
11 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public |
12 | * License for more details. |
13 | * |
14 | * You should have received a copy of the GNU Lesser General Public License |
15 | * along with this program; if not, write to the Free Software Foundation, |
16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
17 | * |
18 | */ |
19 | |
20 | #ifndef __GTK_HEADER_BAR_H__ |
21 | #define |
22 | |
23 | #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) |
24 | #error "Only <gtk/gtk.h> can be included directly." |
25 | #endif |
26 | |
27 | #include <gtk/gtkcontainer.h> |
28 | |
29 | G_BEGIN_DECLS |
30 | |
31 | #define (gtk_header_bar_get_type ()) |
32 | #define (obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_HEADER_BAR, GtkHeaderBar)) |
33 | #define (klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_HEADER_BAR, GtkHeaderBarClass)) |
34 | #define (obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_HEADER_BAR)) |
35 | #define (klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_HEADER_BAR)) |
36 | #define (obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_HEADER_BAR, GtkHeaderBarClass)) |
37 | |
38 | typedef struct _GtkHeaderBar ; |
39 | typedef struct ; |
40 | typedef struct _GtkHeaderBarClass ; |
41 | |
42 | struct |
43 | { |
44 | GtkContainer ; |
45 | }; |
46 | |
47 | struct |
48 | { |
49 | GtkContainerClass ; |
50 | |
51 | /* Padding for future expansion */ |
52 | void (*) (void); |
53 | void (*) (void); |
54 | void (*) (void); |
55 | void (*) (void); |
56 | }; |
57 | |
58 | GDK_AVAILABLE_IN_3_10 |
59 | GType (void) G_GNUC_CONST; |
60 | GDK_AVAILABLE_IN_3_10 |
61 | GtkWidget * (void); |
62 | GDK_AVAILABLE_IN_3_10 |
63 | void (GtkHeaderBar *bar, |
64 | const gchar *title); |
65 | GDK_AVAILABLE_IN_3_10 |
66 | const gchar * (GtkHeaderBar *bar); |
67 | GDK_AVAILABLE_IN_3_10 |
68 | void (GtkHeaderBar *bar, |
69 | const gchar *subtitle); |
70 | GDK_AVAILABLE_IN_3_10 |
71 | const gchar * (GtkHeaderBar *bar); |
72 | |
73 | |
74 | GDK_AVAILABLE_IN_3_10 |
75 | void (GtkHeaderBar *bar, |
76 | GtkWidget *title_widget); |
77 | GDK_AVAILABLE_IN_3_10 |
78 | GtkWidget * (GtkHeaderBar *bar); |
79 | GDK_AVAILABLE_IN_3_10 |
80 | void (GtkHeaderBar *bar, |
81 | GtkWidget *child); |
82 | GDK_AVAILABLE_IN_3_10 |
83 | void (GtkHeaderBar *bar, |
84 | GtkWidget *child); |
85 | |
86 | GDK_AVAILABLE_IN_3_10 |
87 | gboolean (GtkHeaderBar *bar); |
88 | |
89 | GDK_AVAILABLE_IN_3_10 |
90 | void (GtkHeaderBar *bar, |
91 | gboolean setting); |
92 | |
93 | GDK_AVAILABLE_IN_3_12 |
94 | void (GtkHeaderBar *bar, |
95 | gboolean setting); |
96 | GDK_AVAILABLE_IN_3_12 |
97 | gboolean (GtkHeaderBar *bar); |
98 | |
99 | GDK_AVAILABLE_IN_3_12 |
100 | void (GtkHeaderBar *bar, |
101 | const gchar *layout); |
102 | GDK_AVAILABLE_IN_3_12 |
103 | const gchar * (GtkHeaderBar *bar); |
104 | |
105 | G_END_DECLS |
106 | |
107 | #endif /* __GTK_HEADER_BAR_H__ */ |
108 | |