]> git.0d.be Git - empathy.git/blob - src/polari-fixed-size-frame.h
use a single window, with tabs
[empathy.git] / src / polari-fixed-size-frame.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3  * Copyright (C) 2013 Red Hat, Inc.
4  *
5  * This program is free software: you can redistribute it and/or modify it
6  * under the terms of the GNU Lesser General Public License as published
7  * by the Free Software Foundation, either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  * See the GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.";
17  */
18
19 #ifndef __POLARI_FIXED_SIZE_FRAME_H__
20 #define __POLARI_FIXED_SIZE_FRAME_H__
21
22 #include <gtk/gtk.h>
23
24 G_BEGIN_DECLS
25
26 typedef struct _PolariFixedSizeFrame        PolariFixedSizeFrame;
27 typedef struct _PolariFixedSizeFrameClass   PolariFixedSizeFrameClass;
28 typedef struct _PolariFixedSizeFramePrivate PolariFixedSizeFramePrivate;
29
30 #define POLARI_TYPE_FIXED_SIZE_FRAME            (polari_fixed_size_frame_get_type())
31 #define POLARI_FIXED_SIZE_FRAME(o)              (G_TYPE_CHECK_INSTANCE_CAST ((o), POLARI_TYPE_FIXED_SIZE_FRAME, PolariFixedSizeFrame))
32 #define POLARI_IS_FIXED_SIZE_FRAME(o)           (G_TYPE_CHECK_INSTANCE_TYPE ((o), POLARI_TYPE_FIXED_SIZE_FRAME))
33 #define POLARI_FIXED_SIZE_FRAME_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), POLARI_TYPE_FIXED_SIZE_FRAME, PolariFixedSizeFrameClass))
34 #define POLARI_IS_FIXED_SIZE_FRAME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), POLARI_TYPE_FIXED_SIZE_FRAME))
35 #define POLARI_FIXED_SIZE_FRAME_GET_CLASS(o)    (G_TYPE_INSTANCE_GET_CLASS ((o), POLARI_TYPE_FIXED_SIZE_FRAME, PolariFixedSizeFrameClass))
36
37 struct _PolariFixedSizeFrame {
38   GtkFrame parent_instance;
39
40   PolariFixedSizeFramePrivate *priv;
41 };
42
43 struct _PolariFixedSizeFrameClass {
44   GtkFrameClass parent_class;
45 };
46
47 GType polari_fixed_size_frame_get_type (void) G_GNUC_CONST;
48
49 G_END_DECLS
50
51 #endif