~ubuntu-branches/ubuntu/jaunty/gnome-applets/jaunty

« back to all changes in this revision

Viewing changes to stickynotes/stickynotes_applet.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-06-03 18:13:41 UTC
  • mfrom: (1.1.30 upstream)
  • Revision ID: james.westby@ubuntu.com-20080603181341-j2ldywy9g983scl2
Tags: 2.23.2-0ubuntu1
* New upstream version
* Sync on Debian
* debian/control.in:
  - build using liboobs and not type-handling and libcpufreq-dev
  - Pre-Depends: dpkg (>= 1.10.24)
  - updated maintainer information
* debian/patches/04_applets_categories.patch:
  - set applets categories
* debian/patches/13_battstat_measuring_more_appropriate.patch:
  - workaround acpi bug
* debian/patches/14_battstat_enable_pmi.patch:
  - use the pmi interface to know if suspend is available
* debian/patches/81_mixer_mute_callback.patch:
  - stop the mixer applet from randomly muting when the volume is adjusted.
* debian/patches/98_autoreconf.patch:
  - run autotools update
* debian/rules:
  - DEB_DH_BUILDDEB_ARGS := -- -Zbzip2

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <gdk-pixbuf/gdk-pixbuf.h>
25
25
#include <gtk/gtkadjustment.h>
26
26
#include <gtk/gtkwidget.h>
27
 
#include <glade/glade-xml.h>
 
27
#include <gtk/gtkbuilder.h>
28
28
#include <panel-applet.h>
29
29
#include <gconf/gconf-client.h>
30
 
#include <glade/glade.h>
 
30
 
31
31
 
32
32
#define GCONF_PATH      "/apps/stickynotes_applet"
33
 
#define GLADE_PATH      GNOME_GLADEDIR "/stickynotes.glade"
 
33
#define BUILDER_PATH    GTK_BUILDERDIR "/stickynotes.ui"
34
34
#define XML_PATH        "/.gnome2/stickynotes_applet"
35
35
#define ICON_PATH       STICKYNOTES_ICONDIR
36
36
 
43
43
/* Global Sticky Notes instance */
44
44
typedef struct
45
45
{
46
 
        GladeXML *prefs;                /* Preferences dialog GladeXML */
 
46
        GtkBuilder *builder;            
47
47
 
48
48
        GtkWidget *w_prefs;             /* The prefs dialog */
49
49
        GtkAdjustment *w_prefs_width;