~ubuntu-branches/ubuntu/lucid/gtk2-engines-murrine/lucid

« back to all changes in this revision

Viewing changes to src/murrine_style.h

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche, Didier Roche, Khashayar Naderehvandi
  • Date: 2009-03-18 21:48:08 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090318214808-0n7qxpyukzd2ru8r
Tags: 0.90.2-0ubuntu1
[Didier Roche]
* New upstream release (LP: #344154)
  - High roundness values are now correctly limited.
  - Use focus_color in draw_entry if the theme uses it.
  - Removed shadows from GtkCombo and GtkComboBoxEntry.
  - Code polishing and bugfixing.
  - Fixed a crash when using focus_color.
  - Now focus_color and scrollbar_color accept symbolic colors.
* debian/control:
  - add Vcs-Bzr tag
  - bump libgtk2.0-dev to 2.12.0
  - update Homepage field
* Rewrite debian/watch to get murrine from its new location

[Khashayar Naderehvandi]
* debian/control: remove quilt dependency
* debian/rules: remove "patch: patch-stamp" and all patch related stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Murrine theme engine
2
 
 * Copyright (C) 2007 Andrea Cimitan
 
2
 * Copyright (C) 2006-2007-2008-2009 Andrea Cimitan
3
3
 *
4
4
 * This library is free software; you can redistribute it and/or
5
5
 * modify it under the terms of the GNU Library General Public
42
42
 
43
43
        MurrineColors colors;
44
44
 
45
 
        MurrineStyles style;
 
45
        MurrineProfiles profile;
46
46
 
47
47
        double   contrast;
 
48
        double   glow_shade;
48
49
        double   gradient_shades[4];
49
 
        double   highlight_ratio;
50
 
        double   lightborder_ratio;
 
50
        double   highlight_shade;
 
51
        double   lightborder_shade;
51
52
 
52
53
        guint8   glazestyle;
 
54
        guint8   glowstyle;
53
55
        guint8   lightborderstyle;
54
56
        guint8   listviewheaderstyle;
55
57
        guint8   listviewstyle;
57
59
        guint8   menubarstyle;
58
60
        guint8   menuitemstyle;
59
61
        guint8   menustyle;
 
62
        guint8   progressbarstyle;
60
63
        guint8   reliefstyle;
61
64
        guint8   roundness;
62
65
        guint8   scrollbarstyle;
65
68
        guint8   toolbarstyle;
66
69
 
67
70
        gboolean animation;
 
71
        gboolean colorize_scrollbar;
68
72
        gboolean gradients;
69
 
        gboolean colorize_scrollbar;
 
73
        gboolean has_focus_color;
70
74
        gboolean has_scrollbar_color;
71
75
        gboolean rgba;
72
76
 
 
77
        GdkColor focus_color;
73
78
        GdkColor scrollbar_color;
74
79
};
75
80