~noskcaj/ubuntu/trusty/xfwm4/4.11

« back to all changes in this revision

Viewing changes to src/tabwin.h

  • Committer: Package Import Robot
  • Author(s): Lionel Le Folgoc
  • Date: 2012-01-18 22:31:11 UTC
  • Revision ID: package-import@ubuntu.com-20120118223111-4mlmrcdfmau5fa7n
Tags: 4.8.3-1ubuntu1
* debian/patches:
  - xubuntu_themeable-tabwin.patch: added, cherry-picked from master to let
    the small alt+tab window be themeable.
* debian/control: demote xfwm4-themes from Recommends to Suggests, per
  <https://blueprints.launchpad.net/ubuntu/+spec/other-p-xubuntu-cleanthemes>.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
typedef struct _Tabwin Tabwin;
35
35
typedef struct _TabwinWidget TabwinWidget;
 
36
typedef struct _TabwinWidgetClass TabwinWidgetClass;
36
37
 
37
38
struct _Tabwin
38
39
{
44
45
 
45
46
struct _TabwinWidget
46
47
{
 
48
    GtkWindow __parent__;
47
49
    /* The below must be freed when destroying */
48
 
    GtkWidget *window;
49
50
    GList *widgets;
50
51
 
51
52
    /* these don't have to be */
62
63
    gint grid_rows;
63
64
};
64
65
 
 
66
struct _TabwinWidgetClass
 
67
{
 
68
    GtkWindowClass __parent__;
 
69
};
 
70
 
65
71
Tabwin                  *tabwinCreate                           (GList **,
66
72
                                                                 GList *,
67
73
                                                                 gboolean);