~ubuntu-branches/ubuntu/oneiric/cairo-dock-plug-ins/oneiric-updates

« back to all changes in this revision

Viewing changes to GMenu/src/applet-struct.h

  • Committer: Kees Cook
  • Date: 2011-08-11 23:17:39 UTC
  • mfrom: (20.1.1 cairo-dock-plug-ins)
  • Revision ID: kees@outflux.net-20110811231739-cteedan51tmdg77v
Tags: 2.4.0~0beta2-0ubuntu1
releasing version 2.4.0~0beta2-0ubuntu1

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        GtkIconSize  icon_size;
46
46
} IconToAdd;
47
47
 
 
48
typedef enum _CDGMenuShowQuit {
 
49
        CD_GMENU_SHOW_QUIT_NONE=0,
 
50
        CD_GMENU_SHOW_QUIT_LOGOUT,
 
51
        CD_GMENU_SHOW_QUIT_SHUTDOWN,
 
52
        CD_GMENU_SHOW_QUIT_BOTH,
 
53
        CD_GMENU_NB_SHOW_QUIT
 
54
        } CDGMenuShowQuit; 
 
55
 
48
56
 
49
57
//\___________ structure containing the applet's configuration parameters.
50
58
struct _AppletConfig {
55
63
        gchar *cConfigureMenuCommand;
56
64
        gchar *cRecentRootDirFilter;
57
65
        gint iRecentAge;
 
66
        CDGMenuShowQuit iShowQuit;
58
67
        } ;
59
68
 
60
69
//\___________ structure containing the applet's data, like surfaces, dialogs, results of calculus, etc.
62
71
        GtkWidget *pMenu;
63
72
        CairoDialog *pQuickLaunchDialog;
64
73
        gboolean bIconsLoaded;
 
74
        CDGMenuShowQuit iShowQuit;
65
75
        guint iSidFakeMenuIdle;
66
76
        guint iSidCreateMenuIdle;
67
77
        guint iSidTreeChangeIdle;