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

« back to all changes in this revision

Viewing changes to src/gldit/cairo-dock-module-factory.h

  • Committer: Kees Cook
  • Date: 2011-08-11 19:31:26 UTC
  • mfrom: (19.1.1 cairo-dock)
  • Revision ID: kees@outflux.net-20110811193126-wh97aamdqx5gaf2f
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:
104
104
        const gchar *cTitle;
105
105
        CairoDockModuleContainerType iContainerType;
106
106
        gboolean bStaticDeskletSize;
 
107
        // whether to display the applet's name on the icon's label if it's NULL or not.
 
108
        gboolean bAllowEmptyTitle;
107
109
        // octets reserves pour preserver la compatibilite binaire lors de futurs ajouts sur l'interface entre plug-ins et dock.
108
 
        char reserved[12];
 
110
        char reserved[8];
109
111
};
110
112
 
111
113
/// Definition of the interface of a module.
141
143
        /// a unique ID to insert external data on icons and containers.
142
144
        gint iSlotID;
143
145
        /// pointer to a structure containing the config parameters of the applet.
144
 
        gpointer *pConfig;
 
146
        gpointer pConfig;
145
147
        /// pointer to a structure containing the data of the applet.
146
 
        gpointer *pData;
 
148
        gpointer pData;
147
149
};
148
150
 
149
151
/// Pre-init function of a module. Fills the visit card and the interface of a module.
154
156
        /// path to the .so file.
155
157
        gchar *cSoFilePath;
156
158
        /// internal structure of the .so file, once it has been opened.
157
 
        GModule *pModule;
 
159
        //GModule *pModule;
 
160
        gpointer handle;
158
161
        /// interface of the module.
159
162
        CairoDockModuleInterface *pInterface;
160
163
        /// visit card of the module.