~ubuntu-branches/ubuntu/utopic/cairo-dock/utopic

« back to all changes in this revision

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

  • Committer: Matthieu Baerts
  • Date: 2014-02-19 22:56:20 UTC
  • mfrom: (1.1.38)
  • Revision ID: matttbe@gmail.com-20140219225620-5j86v0ccfmngbwdm
Tags: 3.3.99.beta1.1~20140219~bzr1717-0ubuntu1
* New upstream snapshot.
* Short Upstream ChangeLog:
  - Style: unified the style for all objects.
  - Menu: added the possibility to customise them
  - Config: updated some sections linked to the style
  - API:
    - Updated functions about the style
    - Added new features about PID monitoring
  - Some bugs have been fixed, other tweaks
* debian/control:
  - bumped plug-ins versions
  - bumped Standard Version (no change needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
typedef void (* CairoDialogSetDecorationSizeFunc) (CairoDialog *pDialog);
63
63
typedef void (* CairoDialogRenderDecorationFunc) (cairo_t *pCairoContext, CairoDialog *pDialog);
64
64
typedef void (* CairoDialogGLRenderDecorationFunc) (CairoDialog *pDialog);
 
65
typedef void (* CairoMenuSetupFunc) (GtkWidget *pMenu);
 
66
typedef void (* CairoMenuRenderFunc) (GtkWidget *pMenu, cairo_t *pCairoContext);
65
67
/// Definition of a Dialog decorator. It draws the frame of the Dialog.
66
68
struct _CairoDialogDecorator {
67
 
        CairoDialogSetDecorationSizeFunc                set_size;
68
 
        CairoDialogRenderDecorationFunc                 render;
69
 
        CairoDialogGLRenderDecorationFunc               render_opengl;
 
69
        CairoDialogSetDecorationSizeFunc    set_size;
 
70
        CairoDialogRenderDecorationFunc     render;
 
71
        CairoDialogGLRenderDecorationFunc   render_opengl;
 
72
        CairoMenuSetupFunc                  setup_menu;
 
73
        CairoMenuRenderFunc                 render_menu;
70
74
        const gchar *cDisplayedName;
71
75
};
72
76