~didrocks/cairo-dock-plug-ins/fix-abi-transition

« back to all changes in this revision

Viewing changes to systray/src/systray-struct.h

  • Committer: matttbe
  • Date: 2010-08-07 01:43:25 UTC
  • Revision ID: matttbe@gmail.com-20100807014325-36tmlrc8n1rrksk5
* New Upstream Version (LP: #614625)
* debian/rules:
 - Autotools has been replaced by CMake
 - cdbs is now used.
* debian/copyright:
 - Updated with the new applets
* debian/control:
 - Autotools has been replaced by CMake
 - Added libcurl4-gnutls-dev, libindicator-dev, libdbusmenu-glib-dev
   libido-0.1-dev, libical-dev, libdbusmenu-gtk-dev as Build-deps
 - Bump Standard-Version to 3.9.1
 - Wget is required for dnd2share applet
* debian/cairo-dock-plug-ins*.install:
 - All sonames are now installed into lib32 or lib64 (lib*)
* Fixed a few bugs on LP:
 - LP: #483963, LP: #485159, LP: #500677, LP: #500979
 - LP: #521531, LP: #519915, LP: #526138, LP: #531317
 - LP: #531319, LP: #537115, LP: #537943, LP: #538637
 - More details on the 'ChangeLog' file

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
*/
25
25
 
26
26
#ifndef         SYSTRAY_STRUCT_H_
27
 
# define        SYSTRAY_STRUCT_H_
 
27
#define         SYSTRAY_STRUCT_H_
28
28
 
29
29
#include <cairo-dock.h>
30
 
#include "na-tray-manager.h"
 
30
#include "na-tray.h"
31
31
 
32
32
struct _AppletConfig {
33
 
  gchar *shortcut;
34
 
  gint iIconPacking;
35
 
  gint iIconSize;
 
33
        gchar *shortcut;
 
34
        gint iIconPacking;
 
35
        //gint iIconSize;
36
36
} ;
37
37
 
38
38
 
39
 
 
40
 
typedef struct {
41
 
  NaTrayManager  *manager;
42
 
  GtkWidget      *box;
43
 
  GtkWidget      *widget;
44
 
  GdkScreen      *screen;
45
 
 
46
 
  GList          *icons;
47
 
  guint          idle_redraw_id;
48
 
} TrayApplet;
49
 
 
50
39
struct _AppletData {
51
 
  CairoDialog *dialog;
52
 
  TrayApplet *tray;
 
40
        CairoDialog *dialog;
 
41
        NaTray *tray;
53
42
} ;
54
43
 
55
44