~ubuntu-branches/ubuntu/maverick/ekiga/maverick

« back to all changes in this revision

Viewing changes to lib/gui/gmcellrendererexpander.h

  • Committer: Bazaar Package Importer
  • Author(s): Eugen Dedu, Eugen Dedu, Loic Minier
  • Date: 2008-09-27 10:00:00 UTC
  • mfrom: (1.1.8 upstream)
  • mto: (1.4.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20080927100000-l5k5werb6czr5b3h
Tags: 3.0.1-1
[ Eugen Dedu ]
* New version.  (Closes: #500089).
* Add our own changelog file in /usr/share/doc.
* Remove gnomemeeting transitional package.
* Discover new interfaces.  (Closes: #488199).
* Compile with dbus support.  (Closes: #467212).
* Numeric keypad inserts digits at correct position.  (Closes: #440159).
* Use libnotify upon call.  (Closes: #412604).
* Symlink identical GNOME help files, to reduce size.  (Closes: #505536).
* Explicitely build-depends on a few dev packages, even if they were
  pulled out anyway by the other dependencies.

[ Loic Minier ]
* Use clean:: instead of clean: in rules.
* Don't disable Uploaders: generation for control.in -> control generation
  in rules.
* Fix some tabs which were size 4 anyway.
* Generate a PO template during build by calling intltool-update -p in
  install; thanks Ubuntu and Martin Pitt; closes: #505535.
* Also let the -dbg depend on ${misc:Depends}.
* Cleanup rules; in particular, use dpkg-parsechangelog and honor
  distclean/clean failures, remove old clean rules, commented out stuff,
  gtk-only stuff.
* Pass -s to dh_* in binary-arch.
* Use debian/*.links and debian/*.manpages instead of symlink manually or
  passing files to dh_installman.
* Use ftp.gnome.org in copyright.
* Switch to quilt and fix target deps in the process; build-dep on quilt
  instead of dpatch; rename news.dpatch to 00_news.patch and refresh;
  replace 00list with series.
* Install autotools-dev config.guess and .sub after patching.

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__ */