chiark / gitweb /
document search next/prev buttons
[disorder] / disobedience / disobedience.rc
CommitLineData
460b9539 1#
2# This file is part of DisOrder.
6a06a735 3# Copyright (C) 2006, 2007 Richard Kettlewell
460b9539 4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18# USA
19#
20
21# Default style for Disobedience
22#
23# See e.g. http://developer.gnome.org/doc/API/2.0/gtk/gtk-Resource-Files.html
24# for syntax documentation.
25
26style "disobedience-default"
27{
28 bg[NORMAL] = { 1.0, 1.0, 1.0 }
29 fg[NORMAL] = { 0.0, 0.0, 0.0 }
30 bg[PRELIGHT] = { 1.0, 1.0, 1.0 }
31 fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
32}
33
34style "disobedience-playing"
35{
36 bg[NORMAL] = { 0.875, 1.0, 0.875 }
37 fg[NORMAL] = { 0.0, 0.0, 0.0 }
38}
39
40style "disobedience-even"
41{
42 bg[NORMAL] = { 1.0, 0.921875, 0.921875 }
43 fg[NORMAL] = { 0.0, 0.0, 0.0 }
44}
45
46style "disobedience-odd"
47{
48 bg[NORMAL] = { 1.0, 1.0, 1.0 }
49 fg[NORMAL] = { 0.0, 0.0, 0.0 }
50}
51
6a06a735
RK
52style "disobedience-search"
53{
54 bg[NORMAL] = { 1.0, 1.0, 0.0 }
55 fg[NORMAL] = { 0.0, 0.0, 0.0 }
56}
57
460b9539 58style "disobedience-title"
59{
60 bg[NORMAL] = { 0.0, 0.0, 0.0 }
61 fg[NORMAL] = { 1.0, 1.0, 1.0 }
62 font_name = "Bold"
63}
64
65style "disobedience-drag"
66{
67 bg[NORMAL] = { 0.4, 0.4, 0.4 }
68 fg[NORMAL] = { 1.0, 1.0, 1.0 }
69}
70
71# The main tabs
72widget "disobedience.*.choose" style : application "disobedience-default"
6a06a735 73widget "disobedience.*.choose-dir" style : application "disobedience-default"
460b9539 74widget "disobedience.*.queue" style : application "disobedience-default"
75widget "disobedience.*.recent" style : application "disobedience-default"
76
77# Drag target
78widget "disobedience.*.queue-drag" style : application "disobedience-drag"
79
80# Rows in the queue/recent tabs
81widget "disobedience.*.row-playing" style : application "disobedience-playing"
82widget "disobedience.*.row-even" style : application "disobedience-even"
83widget "disobedience.*.row-odd" style : application "disobedience-odd"
84widget "disobedience.*.row-title" style : application "disobedience-title"
6a06a735
RK
85
86# Search results
87widget "disobedience.*.choose-search" style : application "disobedience-search"