~ubuntu-branches/ubuntu/trusty/libxfce4ui/trusty

« back to all changes in this revision

Viewing changes to libxfce4ui/xfce-heading.h

  • Committer: Package Import Robot
  • Author(s): Yves-Alexis Perez
  • Date: 2013-05-21 21:32:57 UTC
  • mfrom: (6.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20130521213257-q5nqhxkutb9ze4ld
Tags: 4.10.0-2
* Upload to unstable.
* debian/rules:
  - enable all hardening flags.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id$ */
2
 
/*-
 
1
/*
3
2
 * Copyright (c) 2006 Benedikt Meurer <benny@xfce.org>.
4
3
 *
5
4
 * This library is free software; you can redistribute it and/or
13
12
 * Library General Public License for more details.
14
13
 *
15
14
 * 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.
 
15
 * License along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
17
 * MA 02110-1301 USA
19
18
 */
20
19
 
21
20
#if !defined (LIBXFCE4UI_INSIDE_LIBXFCE4UI_H) && !defined (LIBXFCE4UI_COMPILATION)
29
28
 
30
29
G_BEGIN_DECLS
31
30
 
32
 
typedef struct _XfceHeadingPrivate XfceHeadingPrivate;
33
31
typedef struct _XfceHeadingClass   XfceHeadingClass;
34
32
typedef struct _XfceHeading        XfceHeading;
35
33
 
40
38
#define XFCE_IS_HEADING_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), XFCE_TYPE_HEADING))
41
39
#define XFCE_HEADING_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), XFCE_TYPE_HEADING, XfceHeadingClass))
42
40
 
43
 
struct _XfceHeadingClass
44
 
{
45
 
  /*< private >*/
46
 
  GtkWidgetClass __parent__;
47
 
};
48
 
 
49
 
struct _XfceHeading
50
 
{
51
 
  /*< private >*/
52
 
  GtkWidget           __parent__;
53
 
  XfceHeadingPrivate *priv;
54
 
};
55
 
 
56
41
GType      _xfce_heading_get_type      (void) G_GNUC_CONST;
57
42
 
58
 
GtkWidget *_xfce_heading_new           (void) G_GNUC_MALLOC;
59
 
 
60
43
void       _xfce_heading_set_icon      (XfceHeading *heading,
61
44
                                        GdkPixbuf   *icon);
62
45