~ubuntu-branches/ubuntu/trusty/gnome-contacts/trusty

« back to all changes in this revision

Viewing changes to libgd/libgd/gd-header-button.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Jeremy Bicha, Michael Biebl
  • Date: 2013-09-19 18:23:06 UTC
  • mfrom: (1.3.10) (0.3.4 experimental)
  • mto: This revision was merged to the branch mainline in revision 40.
  • Revision ID: package-import@ubuntu.com-20130919182306-rcatwotzg94pr884
Tags: 3.8.3-1
[ Jeremy Bicha ]
* debian/control.in:
  - Drop alternate build-depends on valac-0.18 since it's no longer
    in Debian

[ Michael Biebl ]
* New upstream release.
* Loosen Build-Depends on libgnome-desktop-3-dev, we do not strictly require
  version (>= 3.6.0) which is not yet available in unstable.
* Bump Standards-Version to 3.9.4. No further changes.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 __GD_HEADER_BUTTON_H__
 
21
#define __GD_HEADER_BUTTON_H__
 
22
 
 
23
#include <gtk/gtk.h>
 
24
 
 
25
G_BEGIN_DECLS
 
26
 
 
27
#define GD_TYPE_HEADER_BUTTON    (gd_header_button_get_type ())
 
28
#define GD_HEADER_BUTTON(obj)    (G_TYPE_CHECK_INSTANCE_CAST ((obj), GD_TYPE_HEADER_BUTTON, GdHeaderButton))
 
29
#define GD_IS_HEADER_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GD_TYPE_HEADER_BUTTON))
 
30
 
 
31
typedef struct _GdHeaderButton GdHeaderButton;
 
32
 
 
33
GType   gd_header_button_get_type               (void) G_GNUC_CONST;
 
34
 
 
35
void    gd_header_button_set_label              (GdHeaderButton *self,
 
36
                                                 const gchar    *label);
 
37
void    gd_header_button_set_symbolic_icon_name (GdHeaderButton *self,
 
38
                                                 const gchar    *symbolic_icon_name);
 
39
gchar * gd_header_button_get_label              (GdHeaderButton *self);
 
40
gchar * gd_header_button_get_symbolic_icon_name (GdHeaderButton *self);
 
41
 
 
42
#define GD_TYPE_HEADER_SIMPLE_BUTTON (gd_header_simple_button_get_type ())
 
43
typedef GtkButton GdHeaderSimpleButton;
 
44
GType       gd_header_simple_button_get_type (void) G_GNUC_CONST;
 
45
GtkWidget * gd_header_simple_button_new      (void);
 
46
 
 
47
#define GD_TYPE_HEADER_TOGGLE_BUTTON (gd_header_toggle_button_get_type ())
 
48
typedef GtkToggleButton GdHeaderToggleButton;
 
49
GType       gd_header_toggle_button_get_type (void) G_GNUC_CONST;
 
50
GtkWidget * gd_header_toggle_button_new      (void);
 
51
 
 
52
#define GD_TYPE_HEADER_MENU_BUTTON   (gd_header_menu_button_get_type ())
 
53
typedef GtkMenuButton GdHeaderMenuButton;
 
54
GType       gd_header_menu_button_get_type   (void) G_GNUC_CONST;
 
55
GtkWidget * gd_header_menu_button_new        (void);
 
56
 
 
57
G_END_DECLS
 
58
 
 
59
#endif /* __GD_HEADER_BUTTON_H__ */