~ubuntu-branches/ubuntu/jaunty/ekiga/jaunty

« back to all changes in this revision

Viewing changes to lib/gui/gmcellrendererexpander.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2008-12-07 10:30:45 UTC
  • mfrom: (1.2.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20081207103045-iaurrjo4p7d1nngo
Tags: 3.0.1-1ubuntu1
* Merge to Debian experimental, to get Ekiga 3. (LP: #274085) Remaining
  Ubuntu changes:
  - Launchpad Integration: (Ubuntu specific)
    + debian/control.in: Add liblaunchpad-integration-dev build dependency.
    + Add ubuntu_lpi.patch: Call launchpad_integration_add_items() in main() and
      check for the launchpad-integration pkg-config module.
    + Add autoconf.patch: autoconf changes from above patch.
  - Add ubuntu_desktop-file-onlyshowin.patch: Show ekiga in Mobile, too.
    (Ubuntu specific).
  - debian/control.in: Add missing fdupes build dependency for identical
    GNOME help file symlinking. (Debian #505536)
* Drop 42_change_pixmaps.dpatch: Many of the old icons do not exist any
  more, some have been replaced, and keeping the remaining three would make
  them look very inconsistent.
* Convert our dpatches to quilt patches and rewrite them for new upstream
  version.
* Add migrate_2.0_settings.patch: Properly migrate settings from
  2.0. Taken from upstream SVN, thanks to Damien Sandras!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2006-2007 Imendio AB
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License as
 
6
 * published by the Free Software Foundation; either version 2 of the
 
7
 * License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public
 
15
 * License along with this program; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 * 
 
19
 * Authors: Kristian Rietveld <kris@imendio.com>
 
20
 */
 
21
 
 
22
#ifndef __GM_CELL_RENDERER_EXPANDER_H__
 
23
#define __GM_CELL_RENDERER_EXPANDER_H__
 
24
 
 
25
#include <gtk/gtkcellrenderer.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define GM_TYPE_CELL_RENDERER_EXPANDER          (gm_cell_renderer_expander_get_type ())
 
30
#define GM_CELL_RENDERER_EXPANDER(obj)          (G_TYPE_CHECK_INSTANCE_CAST ((obj), GM_TYPE_CELL_RENDERER_EXPANDER, GmCellRendererExpander))
 
31
#define GM_CELL_RENDERER_EXPANDER_CLASS(klass)  (G_TYPE_CHECK_CLASS_CAST ((klass), GM_TYPE_CELL_RENDERER_EXPANDER, GmCellRendererExpanderClass))
 
32
#define GM_IS_CELL_RENDERER_EXPANDER(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GM_TYPE_CELL_RENDERER_EXPANDER))
 
33
#define GM_IS_CELL_RENDERER_EXPANDER_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GM_TYPE_CELL_RENDERER_EXPANDER))
 
34
#define GM_CELL_RENDERER_EXPANDER_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GM_TYPE_CELL_RENDERER_EXPANDER, GmCellRendererExpanderClass))
 
35
 
 
36
typedef struct _GmCellRendererExpander GmCellRendererExpander;
 
37
typedef struct _GmCellRendererExpanderClass GmCellRendererExpanderClass;
 
38
 
 
39
struct _GmCellRendererExpander {
 
40
  GtkCellRenderer parent;
 
41
};
 
42
 
 
43
struct _GmCellRendererExpanderClass {
 
44
  GtkCellRendererClass parent_class;
 
45
 
 
46
  /* Padding for future expansion */
 
47
  void (*_gtk_reserved1) (void);
 
48
  void (*_gtk_reserved2) (void);
 
49
  void (*_gtk_reserved3) (void);
 
50
  void (*_gtk_reserved4) (void);
 
51
};
 
52
 
 
53
GType            gm_cell_renderer_expander_get_type (void) G_GNUC_CONST;
 
54
GtkCellRenderer *gm_cell_renderer_expander_new      (void);
 
55
 
 
56
G_END_DECLS
 
57
 
 
58
#endif /* __GM_CELL_RENDERER_EXPANDER_H__ */