~ubuntu-branches/ubuntu/karmic/avant-window-navigator/karmic

« back to all changes in this revision

Viewing changes to libawn/awn-effects.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2009-01-19 19:35:52 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090119193552-6briat37meu8bar8
Tags: 0.3.2-0ubuntu1
* New upstream release (Closes : #514681) (LP: #327443)
 - Add a script to delay the start of awn when using the autostart. 
   (Closes: #493640)
 - Fix awn-manager permission when trying to edit some desktop file 
  (LP: #260987)
 - Update position on screen resolution changes (LP: #276734)
* debian/awn.wrapper
 - A script to update applets path using awn-applets-migration script.
* debian/*.install: 
 - Add the themes directory to avant-window-navigator-data.install.
 - Add awn-autostart to avant-window-navigator.install.
 - Add awn-applets-migration to awn-manager.install.
 - Remove usr/bin/avant-window-navigator, handle by debian/rules.
 - Install python bindings in *-packages instead of site-packages only, 
   needed for the python migration in squeeze (LP: #335785).
* debian/control:
 - Add missing ${misc:Depends}.
 - Bump Build-Depends and Depends for vala to (>= 0.5.4).
 - Set awn-manager as Depends rather than Recommends, needed by the 
   awn-applets-migration script.
 - Remove unnecessary "Section: gnome"
 - Note that the libawn0-dbg contains debuggins symbols.
 - Set Build-Depends on python (>= 2.5) instead of hardcoding the python 
   version.
* debian/awn-autostart.1 & debian/awn-applets-migrations:
 - Add new man pages.
* debian/avant-window-navigator.links
 - Symlink awn.1 with avant-window-navigator.1
* debian/rules:
 - Move avant-window-navigator to awn, and copy awn.wrapper to 
   avant-window-navigator
 - Add new man pages.
* debian/patches/
 - 00-wm-behavior.patch : Don't bring the windows to the current workspace 
   when the icon of the bar is clicked. Keep the same behavior that the 
   gnome-panel applet.
 - 01-tasks-have-arrow.patch: Set the option "Tasks have arrow" by default.
 - 03-python-import.path : Update.
* debian/copyright
 - Replace (C) by ©.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
  gint current_height;
70
70
  gint current_width;
71
71
  gint x1;
72
 
  gint y1; // sit on bottom by default
 
72
  gint y1; /* sit on bottom by default */
73
73
}DrawIconState;
74
74
 
75
75
typedef const gchar *(*AwnTitleCallback)(GtkWidget *);
165
165
 * Creates and initializes new #AwnEffects structure. After using this
166
166
 * constructor it is necessary to set 'self' member to be able to use effects
167
167
 * properly.
 
168
 * Returns: Newly created #AwnEffects instance.
168
169
 */
169
170
AwnEffects* awn_effects_new();
170
171
 
174
175
 * is also passed to gtk_widget_queue_draw() during the animation.
175
176
 *
176
177
 * Creates and initializes new #AwnEffects structure.
 
178
 * Returns: Newly created #AwnEffects instance.
177
179
 */
178
180
AwnEffects* awn_effects_new_for_widget(GtkWidget * widget);
179
181
 
272
274
 
273
275
G_END_DECLS
274
276
 
275
 
//Move this somewhere else eventually
 
277
/* Move this somewhere else eventually */
276
278
void awn_effects_main_effect_loop(AwnEffects * fx);
277
279
 
278
280
#endif