~cairo-dock-team/ubuntu/precise/cairo-dock/3.0.0.1

« back to all changes in this revision

Viewing changes to src/gldit/eggaccelerators.h

  • Committer: Package Import Robot
  • Author(s): Matthieu Baerts (matttbe)
  • Date: 2012-02-16 01:08:11 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20120216010811-yhscmns26s6ngil8
Tags: 3.0.0.0beta1-0ubuntu1
* New upstream release. (LP: #932041)
* Upstream (short) ChangeLog:
 - The taskbar has been greatly enhanced.
 - The control of the dock from the keyboard is now very powerful:
  - many shortkeys have been added in different applets
  - you can activate a launcher by pressing a shortkey + its number
  - all shortkeys can now be managed in a single place
     in the configuration window.
 - A new Twitter applet lets you tweet in one click.
 - A new applet to inhibit the screensaver in one click.
 - Cairo-Dock now uses GTK3, for a better integration in a Gnome desktop
 - It's possible to donate to support the project!
 - (...)
* debian/patches:
 - Removed all previous patches (now in upstream)
* debian/rules and debian/control:
 - Added multiarch support
* debian/control:
 - libgtk-3-dev is now needed instead of libgtk2.0-dev
 - libgtkglext1-dev is no longer needed
    (replaced by libgl, libglu and libpango)
 - cairo-dock: increase the version of plug-ins packages
    and added: cairo-dock-plug-ins-dbus-interface-python
 - cairo-dock-dev has been replaced by libgldi-dev
    and dependences have been updated
 - Added a new package (libgldi3) in order to support multiarch
    and to fix this lintian error: package-name-doesnt-match-sonames
* debian/cairo-dock-core.install and debian/libgldi3.install:
 - libgldi3 package has been added
 - It contains the library used by cairo-dock
 - MultiArch is supported
* debian/cairo-dock-dev.install and debian/libgldi-dev.install:
 - cairo-dock-dev has been replaced by libgldi-dev
* Updated debian/watch

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef __EGG_ACCELERATORS_H__
22
22
#define __EGG_ACCELERATORS_H__
23
23
 
24
 
#include <gtk/gtkaccelgroup.h>
 
24
#include <gtk/gtk.h>
 
25
#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION > 20)
 
26
#include <gdk/gdkkeysyms-compat.h>
 
27
#endif
25
28
#include <gdk/gdk.h>
26
29
 
27
30
G_BEGIN_DECLS
81
84
gchar* egg_virtual_accelerator_name (guint                  accelerator_key,
82
85
                                     EggVirtualModifierType accelerator_mods);
83
86
 
84
 
int *egg_keystring_to_keysyms (gchar *accelerator, int *iNbKeys);
 
87
int *egg_keystring_to_keysyms (const gchar *accelerator, int *iNbKeys);
85
88
 
86
89
G_END_DECLS
87
90