aboutsummaryrefslogtreecommitdiff
path: root/.themes/Relax-GTK/gtk-2.0/widgets/menu
blob: c76ed927c90b1cf5807256b80541a520ee2a599c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
style "menubar"
{
    #bg[SELECTED] = @selected_fg_color

	fg[NORMAL] = @fg_color
	fg[SELECTED] = @selected_fg_color

    text[PRELIGHT] = @fg_color

    xthickness  = 0
    ythickness  = 0

    engine "pixmap"
    {
    image
        {
          function      = BOX
          recolorable   = TRUE
          state         = PRELIGHT
          file          = "../assets/menubar-button.png"

          border          = { 4, 4, 4, 4 }
          stretch         = TRUE
        }
    }
}

style "menu"
{
    xthickness  = 0
    ythickness  = 0

    #GtkMenuItem::arrow-scaling  = 0.4

    engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator

    image {
      function = HLINE
      file = "../assets/line-h.png"
      border = { 1, 1, 1, 1 }
      stretch = TRUE
    }
  }
}

style "menu_item"
{
    xthickness  = 2
    ythickness  = 4

    bg[PRELIGHT]      = @button_active
    fg[PRELIGHT]      = @selected_fg_color
    text[PRELIGHT]  = @selected_fg_color

    GtkMenuItem::toggle-spacing = 10
    GtkMenuItem::arrow-spacing = 10

    engine "pixmap"
    {

    # Check Buttons

    image
    {
            function                = CHECK
            recolorable             = TRUE
            state                   = NORMAL
            shadow                  = OUT
            overlay_file            = "../assets/check-unchecked.png"
            overlay_stretch         = TRUE  #needed for LibreOffice
        }
    image
    {
            function                = CHECK
            recolorable             = TRUE
            state                   = PRELIGHT
            shadow                  = OUT
            overlay_file            = "../assets/check-unchecked.png"
            overlay_stretch         = TRUE
        }
    image
    {
            function                = CHECK
            recolorable             = TRUE
            state                   = ACTIVE
            shadow                  = OUT
            overlay_file            = "../assets/check-checked-active.png"
            overlay_stretch         = TRUE
        }
    image
    {
            function                = CHECK
            recolorable             = TRUE
            state                   = INSENSITIVE
            shadow                  = OUT
            overlay_file            = "../assets/check-unchecked-insensitive.png"
            overlay_stretch         = TRUE
        }
    image
    {
            function                = CHECK
            recolorable             = TRUE
              state                   = NORMAL
            shadow                  = IN
            overlay_file            = "../assets/check-checked-active.png"
            overlay_stretch       = TRUE
        }
    image
    {
            function                = CHECK
            recolorable             = TRUE
                state                 = PRELIGHT
            shadow                  = IN
            overlay_file            = "../assets/check-checked-active.png"
            overlay_stretch         = TRUE
        }
    image
    {
            function                = CHECK
            recolorable             = TRUE
                state                 = ACTIVE
            shadow                  = IN
            overlay_file            = "../assets/check-checked-active.png"
            overlay_stretch         = TRUE
        }
    image
    {
              function              = CHECK
            recolorable             = TRUE
            state                     = INSENSITIVE
            shadow                  = IN
            overlay_file            = "../assets/check-checked-insensitive.png"
            overlay_stretch         = TRUE
    }

    # Radio Buttons

    image
    {
            function                = OPTION
            state                   = NORMAL
            shadow                  = OUT
            overlay_file            = "../assets/radio-unchecked.png"
            overlay_stretch         = TRUE
        }
    image
    {
            function                = OPTION
            state                   = PRELIGHT
            shadow                  = OUT
            overlay_file            = "../assets/radio-unchecked.png"
            overlay_stretch         = TRUE
        }
    image
    {
            function                = OPTION
            state                   = ACTIVE
            shadow                  = OUT
            overlay_file            = "../assets/radio-checked-active.png"
            overlay_stretch         = TRUE
        }
    image
    {
            function                = OPTION
            state                   = INSENSITIVE
            shadow                = OUT
            overlay_file            = "../assets/radio-unchecked-insensitive.png"
            overlay_stretch         = FALSE
        }
    image
    {
            function                = OPTION
              state                     = NORMAL
            shadow                  = IN
            overlay_file            = "../assets/radio-checked-active.png"
            overlay_stretch         = TRUE
        }
    image
    {
            function                = OPTION
              state                   = PRELIGHT
            shadow                  = IN
            overlay_file            = "../assets/radio-checked-active.png"
            overlay_stretch         = TRUE
        }
    image
    {
            function                = OPTION
              state                   = ACTIVE
            shadow                  = IN
            overlay_file            = "../assets/radio-checked-active.png"
            overlay_stretch       = TRUE
        }
    image
    {
            function                = OPTION
              state                     = INSENSITIVE
            shadow                  = IN
            overlay_file            = "../assets/radio-checked-insensitive.png"
            overlay_stretch         = TRUE
        }
    image
        {
            function        = SHADOW # This fixes boxy Qt menu items
              file        = "../assets/null.png"
              border      = { 10, 10, 10, 10 }
              stretch     = TRUE
        }

    # Arrow Buttons

    image
    {
      function              = ARROW
      state                   = NORMAL
      overlay_file          = "../assets/menu-arrow.png"
      overlay_border        = { 0, 0, 0, 0 }
      overlay_stretch       = FALSE
      arrow_direction       = RIGHT
    }
    image
    {
      function              = ARROW
      state                   = PRELIGHT
      overlay_file          = "../assets/menu-arrow-selected.png"
      overlay_border        = { 0, 0, 0, 0 }
      overlay_stretch       = FALSE
      arrow_direction       = RIGHT
    }
    image
    {
      function              = ARROW
      state                   = INSENSITIVE
      overlay_file          = "../assets/menu-arrow-insensitive.png"
      overlay_border        = { 0, 0, 0, 0 }
      overlay_stretch       = FALSE
      arrow_direction       = RIGHT
    }
 }
}

style "menubar_item"
{
    xthickness  = 2
    ythickness  = 2
    bg[PRELIGHT]    = @selected_fg_color
    fg[PRELIGHT]    = @selected_fg_color
}

style "menu_framed_box" #this is not needed in Gnome
{
    engine "pixmap"
    {
     image
     {
        function                = BOX
        detail                  = "menu"
        file                          = "../assets/frame.png"
        border                  = { 3, 3, 3, 3 }
        stretch                   = TRUE
     }
    }
}

style "separator_menu_item"
{
    engine "pixmap"
    {
        image
        {
            function            = BOX
              file              = "../assets/line-h.png"
              border            = { 0, 0, 0, 0 }
              stretch         = TRUE
        }
    }
}