add bitmap buttons, and put support for them in all the default styles
authorDana Jansens <danakj@orodu.net>
Wed, 20 Nov 2002 06:15:05 +0000 (06:15 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 20 Nov 2002 06:15:05 +0000 (06:15 +0000)
43 files changed:
CHANGELOG
configure.in
data/Makefile.am
data/buttons/.cvsignore [new file with mode: 0644]
data/buttons/Makefile.am [new file with mode: 0644]
data/buttons/close.xbm [new file with mode: 0644]
data/buttons/fieron-bullet.xbm [new file with mode: 0644]
data/buttons/fieron-bulletl.xbm [new file with mode: 0644]
data/buttons/fieron-close.xbm [new file with mode: 0644]
data/buttons/fieron-icon.xbm [new file with mode: 0644]
data/buttons/fieron-max.xbm [new file with mode: 0644]
data/buttons/fieron-stick.xbm [new file with mode: 0644]
data/buttons/icon.xbm [new file with mode: 0644]
data/buttons/max.xbm [new file with mode: 0644]
data/buttons/stick.xbm [new file with mode: 0644]
data/styles/Makefile.am
data/styles/artwiz
data/styles/bbs
data/styles/bluebox
data/styles/cthulhain
data/styles/deep
data/styles/fieron
data/styles/fieron2 [new file with mode: 0644]
data/styles/flux
data/styles/frobozz
data/styles/frobust
data/styles/mbdtex
data/styles/miklos
data/styles/nyz
data/styles/nyzclone
data/styles/ob20
data/styles/operation
data/styles/outcomes
data/styles/paper
data/styles/purplehaaze
data/styles/shade
data/styles/steelblue
data/styles/steelblue2
data/styles/steelblue3 [new file with mode: 0644]
data/styles/the_orange
data/styles/trisb
data/styles/twice
data/styles/warp-xp

index daa557cb18966b6beaa42c4adf1ae0969755478a..4731c09a5e2098c4225194133cb35f0659943e2d 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,8 @@
 Changelog for Openbox:
 
 2.2.1:
+ * Add bitmap button support to all the default styles. (Ben Jansens)
+
  * Change the default premax values to be larger than 0 (Ben Jansens)
    for clients that map in a maximized state. (avoid a
    mozilla crash.)
index 6cf898021a317bcccbe32f1bf7ce74200292ba17..75acec57838b7eb1dcdc93c27d38f01e689f1fcf 100644 (file)
@@ -15,6 +15,9 @@ AC_PROG_CC
 AC_PROG_CXX
 AC_PROG_INSTALL
 
+dnl Determine if maintainer portions of the Makefiles should be included.
+AM_MAINTAINER_MODE
+
 AC_LANG(C++)
 
 AC_CHECK_PROGS(regex_cmd, sed)
@@ -295,9 +298,6 @@ fi
 dnl Determine the return type of signal handlers
 AC_TYPE_SIGNAL
 
-dnl Determine if maintainer portions of the Makefiles should be included.
-AM_MAINTAINER_MODE
-
 dnl Print results
 AC_MSG_RESULT([])
 AC_MSG_RESULT([        $PACKAGE version $VERSION configured successfully.])
index 93bdd3b4a5eab79be5678d7fcc0ffd5a507944d6..5083a7120f6777539ed2ddaac121a25bd357e754 100644 (file)
@@ -1,6 +1,6 @@
 # data/Makefile.am for Openbox
 
-SUBDIRS = styles
+SUBDIRS = styles buttons
 CLEANFILES = menu
 MAINTAINERCLEANFILES = Makefile.in
 
diff --git a/data/buttons/.cvsignore b/data/buttons/.cvsignore
new file mode 100644 (file)
index 0000000..282522d
--- /dev/null
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in
diff --git a/data/buttons/Makefile.am b/data/buttons/Makefile.am
new file mode 100644 (file)
index 0000000..d359e66
--- /dev/null
@@ -0,0 +1,12 @@
+# data/styles/Makefile.am for Openbox
+
+buttonsdir = $(pkgdatadir)/buttons
+MAINTAINERCLEANFILES = Makefile.in
+buttons_DATA = fieron-bullet.xbm fieron-bulletl.xbm fieron-close.xbm \
+               fieron-icon.xbm fieron-max.xbm fieron-stick.xbm \
+               max.xbm stick.xbm icon.xbm close.xbm
+
+distclean-local:
+       rm -f *\~ .\#*
+uninstall-am:
+       rmdir $(buttonsdir)
diff --git a/data/buttons/close.xbm b/data/buttons/close.xbm
new file mode 100644 (file)
index 0000000..d46ad94
--- /dev/null
@@ -0,0 +1,5 @@
+/* Created with The GIMP */
+#define close_width 8
+#define close_height 8
+static unsigned char close_bits[] = {
+   0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 };
diff --git a/data/buttons/fieron-bullet.xbm b/data/buttons/fieron-bullet.xbm
new file mode 100644 (file)
index 0000000..1d8bc0f
--- /dev/null
@@ -0,0 +1,5 @@
+/* Created with The GIMP */
+#define bullet_width 8
+#define bullet_height 8
+static unsigned char bullet_bits[] = {
+   0x00, 0x18, 0x30, 0x60, 0x60, 0x30, 0x18, 0x00 };
diff --git a/data/buttons/fieron-bulletl.xbm b/data/buttons/fieron-bulletl.xbm
new file mode 100644 (file)
index 0000000..af69000
--- /dev/null
@@ -0,0 +1,5 @@
+/* Created with The GIMP */
+#define bulletl_width 8
+#define bulletl_height 8
+static unsigned char bulletl_bits[] = {
+   0x00, 0x18, 0x0c, 0x06, 0x06, 0x0c, 0x18, 0x00 };
diff --git a/data/buttons/fieron-close.xbm b/data/buttons/fieron-close.xbm
new file mode 100644 (file)
index 0000000..aea5488
--- /dev/null
@@ -0,0 +1,5 @@
+/* Created with The GIMP */
+#define close_width 8
+#define close_height 8
+static unsigned char close_bits[] = {
+   0x00, 0xc3, 0x66, 0x3c, 0x3c, 0x66, 0xc3, 0x00 };
diff --git a/data/buttons/fieron-icon.xbm b/data/buttons/fieron-icon.xbm
new file mode 100644 (file)
index 0000000..1cd40fc
--- /dev/null
@@ -0,0 +1,5 @@
+/* Created with The GIMP */
+#define icon_width 8
+#define icon_height 8
+static unsigned char icon_bits[] = {
+   0x00, 0x00, 0x42, 0x66, 0x3c, 0x18, 0x00, 0x00 };
diff --git a/data/buttons/fieron-max.xbm b/data/buttons/fieron-max.xbm
new file mode 100644 (file)
index 0000000..2cd94e8
--- /dev/null
@@ -0,0 +1,5 @@
+/* Created with The GIMP */
+#define max_width 8
+#define max_height 8
+static unsigned char max_bits[] = {
+   0x00, 0x00, 0x18, 0x3c, 0x66, 0x42, 0x00, 0x00 };
diff --git a/data/buttons/fieron-stick.xbm b/data/buttons/fieron-stick.xbm
new file mode 100644 (file)
index 0000000..4345dfa
--- /dev/null
@@ -0,0 +1,5 @@
+/* Created with The GIMP */
+#define stick_width 8
+#define stick_height 8
+static unsigned char stick_bits[] = {
+   0x00, 0x66, 0x66, 0x00, 0x00, 0x66, 0x66, 0x00 };
diff --git a/data/buttons/icon.xbm b/data/buttons/icon.xbm
new file mode 100644 (file)
index 0000000..9fc0ba1
--- /dev/null
@@ -0,0 +1,5 @@
+/* Created with The GIMP */
+#define icon_width 8
+#define icon_height 8
+static unsigned char icon_bits[] = {
+   0x00, 0x00, 0xc3, 0xe7, 0x7e, 0x3c, 0x18, 0x00 };
diff --git a/data/buttons/max.xbm b/data/buttons/max.xbm
new file mode 100644 (file)
index 0000000..00b6817
--- /dev/null
@@ -0,0 +1,5 @@
+/* Created with The GIMP */
+#define max_width 8
+#define max_height 8
+static unsigned char max_bits[] = {
+   0x7e, 0xff, 0xc3, 0xc3, 0xc3, 0xc3, 0xff, 0x7e };
diff --git a/data/buttons/stick.xbm b/data/buttons/stick.xbm
new file mode 100644 (file)
index 0000000..760131c
--- /dev/null
@@ -0,0 +1,5 @@
+/* Created with The GIMP */
+#define stick_width 8
+#define stick_height 8
+static unsigned char stick_bits[] = {
+   0x00, 0x00, 0x18, 0x3c, 0x3c, 0x18, 0x00, 0x00 };
index a00d2520a33ca8fd7539aaad5088660920cc96c6..ce2c27b3f13971d9095ff9067619f4f360dc60b4 100644 (file)
@@ -2,9 +2,10 @@
 
 styledir = $(pkgdatadir)/styles
 MAINTAINERCLEANFILES = Makefile.in
-style_DATA = artwiz bbs bluebox cthulhain deep fieron flux frobozz frobust \
-       mbdtex miklos nyz nyzclone ob20 operation outcomes paper purplehaaze
-       shade steelblue steelblue2 the_orange trisb twice warp-xp
+style_DATA = artwiz bbs bluebox cthulhain deep fieron fieron2 flux frobozz \
+        frobust mbdtex miklos nyz nyzclone ob20 operation outcomes paper \
+        purplehaaze shade steelblue steelblue2 steelblue3 the_orange trisb \
+        twice warp-xp
 
 distclean-local:
        rm -f *\~ .\#*
index c563f3f21c5bdd7b4587709ca020557b293483e2..ca94d58a576ac3687e87bdddd172530ca25abf4c 100644 (file)
@@ -111,4 +111,9 @@ rootCommand:        bsetroot -mod 4 4 -bg rgb:10/18/20 -fg rgb:30/38/40
 *xft.font:             Verdana
 *xft.size:             8
 
-menu.*.xft.size:       10
\ No newline at end of file
+menu.*.xft.size:       10
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index bb258318630a8c4a40e4d6d63d4e1bd5af39843c..3a6698714ff882ae6e4e7cba7790525831fe5aef 100644 (file)
@@ -124,3 +124,8 @@ menu.title.font:    lucidasans-10
 toolbar.xft.font:      Trebuchet MS
 toolbar.xft.size:      10
 toolbar.font:          lucidasans-10
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index b26762005c7b21ebddebea6600b1e5247eea06de..389bddfe36382a51dbed98a861126438a4f3a140 100644 (file)
@@ -146,3 +146,8 @@ bbpager.desktop.focusStyle:             border
 bbpager.active.window.borderColor:      #202020
 bbpager.inactive.window.borderColor:    #000000
 bbpager.active.desktop.borderColor:     #73787e
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 5f55c4ce4da6f3596d73a5972a3cd9d6ab0612b2..e44faeda84bdde234c0073fcb96dcf71377eca3f 100644 (file)
@@ -141,3 +141,8 @@ bbpager.desktop.focusStyle:         border
 bbpager.active.window.borderColor:     #202020
 bbpager.inactive.window.borderColor:   #202020
 bbpager.active.desktop.borderColor:    #0f1319
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index ddcb51eb7da455322ccbfc6ec24b195cf9b609d4..6141bc5fe41ab8c8935ed3f31d84e1144fbe3e55 100644 (file)
@@ -118,3 +118,8 @@ bbpager.active.window.borderColor:  black
 bbpager.inactive.window.borderColor:   black
 
 bbpager.bevelWidth:                    1
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 176854506cee50eada3c92437e17700447a67e89..7030e72bf917bb1dc8e8b6a2b577123f7f64be72 100644 (file)
@@ -136,4 +136,10 @@ bevelWidth:        1
 borderWidth:   1
 borderColor:   #25252d
 
-
+menu.arrow.mask: fieron-bullet.xbm
+toolbar.button.left.mask: fieron-bulletl.xbm
+toolbar.button.right.mask: fieron-bullet.xbm
+window.button.max.mask: fieron-max.xbm
+window.button.icon.mask: fieron-icon.xbm
+window.button.stick.mask: fieron-stick.xbm
+window.button.close.mask: fieron-close.xbm
diff --git a/data/styles/fieron2 b/data/styles/fieron2
new file mode 100644 (file)
index 0000000..f69c373
--- /dev/null
@@ -0,0 +1,162 @@
+style.author:  miklos
+style.date:    Oct 26, 2002
+
+style.comments:    buttons available at http://miklosbox.org/files/fieron-xbms.tar.gz
+
+rootCommand: bsetbg -solid "#272a2f"
+
+! Toolbar settings...
+
+toolbar.button.pressed: sunken gradient crossdiagonal bevel2
+toolbar.button.pressed.colorTo: #5a724c
+toolbar.button.pressed.color: #96ba86
+toolbar.button.picColor:       #96ba86
+
+toolbar.button:        raised gradient crossdiagonal bevel2
+toolbar.button.colorTo:        #272a2f
+toolbar.button.color: #858687
+toolbar.button.borderColor: #25252d
+
+toolbar.windowLabel:   flatborder gradient vertical
+toolbar.windowLabel.color:     #96ba86
+toolbar.windowLabel.colorTo:   #5a724c
+toolbar.windowLabel.borderColor: #181f24
+toolbar.windowLabel.textColor: #272a2f
+
+toolbar.label: sunken gradient crossdiagonal
+toolbar.label.color: #858687
+toolbar.label.colorTo: #373a3f
+toolbar.label.textColor:       #96ba86
+
+toolbar.clock: sunken gradient crossdiagonal
+toolbar.clock.color: #858687
+toolbar.clock.colorTo: #373a3f
+toolbar.clock.textColor:       #96ba86
+
+toolbar: flat gradient vertical
+toolbar.color: #858687
+toolbar.colorTo: #373a3f
+
+
+toolbar.xft.font: verdana
+toolbar.xft.size: 7
+toolbar.justify:       right
+toolbar.xft.flags: normal shadow
+
+
+! Menu settings...
+menu.frame: sunken gradient crossdiagonal bevel2
+menu.frame.color:      #555657
+menu.frame.colorTo: #272a2f
+menu.frame.borderColor: #181f24
+menu.frame.textColor:  #878a8f
+
+menu.frame.xft.font: verdana
+menu.frame.xft.size: 7
+menu.frame.justify:    right
+menu.frame.xft.flags: normal shadow
+
+menu.title:    flat gradient vertical
+menu.title.color:      #96ba86
+menu.title.colorTo: #5a724c
+menu.title.borderColor: #181f24
+menu.title.textColor:  #181f24
+
+menu.title.xft.font: verdana
+menu.title.xft.size: 7 
+menu.title.justify:    right
+menu.title.xft.flags: shadow
+
+menu.hilite:   sunken gradient crossdiagonal bevel2
+menu.hilite.color:     #555657
+menu.hilite.colorTo: #373a3f
+menu.hilite.borderColor: #c4c8c9
+menu.hilite.textColor: #96ba86
+
+menu.bullet:   empty
+menu.bullet.position:  Right
+menu.frame.disableColor:       #ffffff
+
+! Window settings...
+window.button.focus: raised gradient crossdiagonal bevel2
+window.button.focus.color: #858687
+window.button.focus.colorTo: #272a2f
+window.button.focus.picColor: #96ba86
+
+window.button.unfocus: raised gradient crossdiagonal bevel2
+window.button.unfocus.color: #555657
+window.button.unfocus.colorTo: #171a1f
+window.button.unfocus.borderColor: #1c2f40
+window.button.unfocus.picColor: #676869
+
+window.grip.focus:     flat gradient vertical
+window.grip.focus.color:       #96ba86
+window.grip.focus.colorTo: #5a724c
+window.grip.focus.borderColor: #1c2f40
+
+window.grip.unfocus: flat gradient vertical
+window.grip.unfocus.color:     #555657
+window.grip.unfocus.colorTo: #171a1f
+
+window.handle.focus:   flat gradient vertical
+window.handle.focus.color:     #858687
+window.handle.focus.colorTo: #373a3f
+window.handle.focus.borderColor: #1c2f40
+
+window.handle.unfocus: flat gradient vertical
+window.handle.unfocus.color:   #555657
+window.handle.unfocus.colorTo: #171a1f
+
+window.label.focus:    flatborder gradient vertical
+window.label.focus.color:  #96ba86
+window.label.focus.colorTo:  #5a724c
+window.label.focus.borderColor: #181f24
+window.label.focus.textColor:  #272a2f
+
+window.xft.font: verdana
+window.xft.size: 8
+window.justify:        right
+window.xft.flags: shadow
+
+window.label.unfocus:  sunken gradient crossdiagonal bevel
+window.label.unfocus.color:    #555657
+window.label.unfocus.colorTo:  #272a2f
+window.label.unfocus.textColor: #676869
+window.label.unfocus.borderColor: #171a1f
+
+window.title.focus:    flat gradient vertical
+window.title.focus.colorTo: #373a3f
+window.title.focus.color:  #858687
+
+window.title.unfocus:  flat gradient vertical
+window.title.unfocus.color:    #555657
+window.title.unfocus.colorTo: #171a1f
+
+window.button.pressed.focus:   sunken gradient crossdiagonal bevel2
+window.button.pressed.focus.colorTo:   #5a724c
+window.button.pressed.focus.color:     #96ba86
+
+window.button.pressed.unfocus:  sunken gradient crossdiagonal bevel2
+window.button.pressed.unfocus.colorTo:  #171a1f
+window.button.pressed.unfocus.color:  #555657
+
+
+window.frame.focusColor:       #858687
+window.frame.unfocusColor:     #555657
+handleWidth:   4
+frameWidth:    1
+bevelWidth:    1
+borderWidth:   1
+borderColor:   #181f24
+
+menu.arrow.mask: fieron-bullet.xbm
+toolbar.button.left.mask: fieron-bulletl.xbm
+toolbar.button.right.mask: fieron-bullet.xbm
+window.button.max.mask: fieron-max.xbm
+window.button.icon.mask: fieron-icon.xbm
+window.button.stick.mask: fieron-stick.xbm
+window.button.close.mask: fieron-close.xbm
+
+*.xft.flags: shadow bold
+*.xft.shadow.offset: 1
+*.xft.shadow.tint: 20
index 46fc8d5d925c34f85336b6e051cea94da995f607..a4ae2aa830a329a8d46951800fc28c9cc67243e3 100644 (file)
@@ -87,3 +87,8 @@ handleWidth:                  3
 *xft.size:                     10
 
 rootCommand:                   bsetroot -solid rgb:4/4/38
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index c99005feaf825dbb8e82e9be26939635eecb72b8..85a9130664a623b002c3a8a1929764766c1be8f4 100644 (file)
@@ -141,3 +141,8 @@ bbpager.inactive.window.borderColor:        black
 ! ***** rootCommand *****
 #rootCommand:  bsetbg -solid "#484848"
 rootCommand: bsetbg -gradient flatinterlaced -bg "#485561" -fg "#"484848
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 3f8a13f26c257a3b4360cd8b71e60de7048df9b6..41a2785fd91c59aa2e9a0cde76ce6bf0212bdde0 100644 (file)
@@ -146,3 +146,7 @@ bbpager.active.window.borderColor:      #202020
 bbpager.inactive.window.borderColor:    #000000
 bbpager.active.desktop.borderColor:     #73787e
 
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index bee7760d9cc61cf4699fb7275302bc53d3f4dcf3..1bfa9641c2396e338bbc73cf66b511eec1275820 100644 (file)
@@ -94,3 +94,8 @@ menu.title.xft.flags: bold
 
 
 rootCommand: bsetbg -solid "#5a6975"
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index c75c78a33f33407cb16671950bbea8f0deda44c5..51064709e95df1cbf1ff5f1792703fcada34b710 100644 (file)
@@ -133,4 +133,9 @@ borderColor:        #000000
 *Font:                         lucidasans-10
 *xft.font:             Arial
 *xft.size:             9
-menu.title.xft.size:   10
\ No newline at end of file
+menu.title.xft.size:   10
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 33f1f3472a56022a52450f57af52cdba7cae5f8f..0ea49ef6232204383bb05aa9ebca52c281da176d 100644 (file)
@@ -103,3 +103,8 @@ handleWidth:                        4
 *xft.size:                     10
 
 rootCommand:                   bsetroot -solid grey20
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 46ca5a93dc38b7937314c653dfd00a4b321884f7..22b6342e9e05d67885e0ead23a961e89f9380a63 100644 (file)
@@ -129,3 +129,7 @@ bbpager.active.window.borderColor:      #202020
 bbpager.inactive.window.borderColor:    #202020
 bbpager.active.desktop.borderColor:     #ffffff
 
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 32afe96bb0774eba0acebce4d0d496cfc9d67ff8..d21ea073a8a05d803408d56730ec82ff94609b83 100644 (file)
@@ -107,3 +107,8 @@ frameWidth:  1
 bevelWidth:    1
 borderWidth: 0
 borderColor:   #555555
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 9b3b261c0cb12cd15bf949f0150e975e740ee8be..ddcabae0985e572ca23baef009e98edb15cd6b89 100644 (file)
@@ -91,3 +91,7 @@ bbpager.desktop.focus:                flat interlaced crossdiagonal gradient
 bbpager.desktop.focus.color:   rgb:6/9/c
 bbpager.desktop.focus.colorTo: rgb:3/48/6
 
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 5d8e450f508a6582ed1cc0b55ec3f8248bd580dd..f9a01d19c3065009ba0594b8065e5c980411769d 100644 (file)
@@ -115,3 +115,8 @@ rootCommand:                        bsetroot -mod 4 4 -fg rgb:54/6/6 -bg grey20
 ! for the bbtools
 menuFont:                      lucidasans-10
 titleFont:                     lucidasans-bold-10
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index f8e257b7629617d42661b9ff0bcb6d189a7e4d7e..d56dcd9ab185ede7f84edb80443676720e39c2ee 100644 (file)
@@ -87,3 +87,8 @@ frameWidth:                       0
 rootCommand:                      bsetbg -gradient flatinterlacedhorizontalgradient -from rgb:35/34/33 -to rgb:57/56/55
 
 ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 5bf8bd69ed0b196e6e1fc6781b56a8beccff5490..221a928f9b107acce000266237fffda7ee944803 100644 (file)
@@ -107,3 +107,8 @@ frameWidth:  2
 bevelWidth:    1
 borderWidth: #434d59
 borderColor:   #555555
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 43c7f31227549847b2c7106847fc168ec1bafa87..953e5ad3832577da6477fef726626c25e07c13be 100644 (file)
@@ -91,3 +91,8 @@ handleWidth:                  3
 *xft.size:                     10
 
 rootCommand:                   bsetroot -solid rgb:4/4/4
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 8fe4b57a7a90f60a34fd14babbe1e12e788a37a0..148ca9e18916d300a34d3144002ccf54cb9d821d 100644 (file)
@@ -137,3 +137,7 @@ bevelWidth: 0
 borderWidth:   1
 borderColor:   #000000
 
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 0b03da454b9231ba5a482546fed0d0ddcc25a63f..aa61eda322c81dc80e6fc39f3ba06d044ad01d8c 100644 (file)
@@ -127,3 +127,7 @@ bevelWidth: 1
 borderWidth:   1
 borderColor:   #000000
 
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
diff --git a/data/styles/steelblue3 b/data/styles/steelblue3
new file mode 100644 (file)
index 0000000..67f4cce
--- /dev/null
@@ -0,0 +1,137 @@
+style.name:    steelblue2
+style.author:  miklos
+style.date:    Feb 28, 2002
+style.credits: 
+style.comments:                revised for openbox 2.2.0, 2002-09-22
+
+*xft.font:      tahoma
+*xft.size:      9
+
+rootCommand:   bsetbg -solid "#6e7a8a"
+
+! Toolbar settings...
+toolbar.button:        Flatborder  Gradient Vertical
+toolbar.button.color:  #6e7a8a
+toolbar.button.colorTo:        #555f6b
+toolbar.button.borderColor: #a9bccb
+toolbar.button.picColor:       #b9ccdb
+
+toolbar.button.pressed:        Sunken Bevel1 Gradient Diagonal
+toolbar.button.pressed.color:  #6e7b8b
+toolbar.button.pressed.colorTo:        #8fa0b5
+
+toolbar.label: Sunken Bevel1 Gradient Diagonal
+toolbar.label.color:   #6e7b8b
+toolbar.label.colorTo: #555f6b
+toolbar.label.textColor:       #b9ccdb
+
+toolbar.windowLabel:   Sunken Bevel1 Gradient Diagonal
+toolbar.windowLabel.color:     #8fa0b5
+toolbar.windowLabel.colorTo:   #555f6b
+toolbar.windowLabel.textColor: #b9ccdb
+
+toolbar.clock: Sunken Bevel1 Gradient Diagonal
+toolbar.clock.color:   #6e7b8b
+toolbar.clock.colorTo: #555f6b
+toolbar.clock.textColor:       #b9ccdb
+
+toolbar:       Raised Bevel1 Gradient Vertical
+toolbar.color: #6e7b8b
+toolbar.colorTo:       #555f6b
+toolbar.textColor:     #ffffff
+toolbar.justify:       center
+
+
+! Menu settings...
+menu.frame:    Sunken Bevel2 Gradient Diagonal
+menu.frame.color:      #8fa0b5
+menu.frame.colorTo:    #6e7b8b
+menu.frame.textColor:  #c9dceb
+menu.frame.justify:    Right
+
+menu.title:    Raised Bevel1 Gradient Diagonal
+menu.title.color:      #6e7b8b
+menu.title.colorTo:    #555f6b
+menu.title.textColor:  #b9ccdb
+menu.title.justify:    Center
+
+menu.hilite:   Raised Bevel1 Gradient Diagonal
+menu.hilite.color:     #6e7b8b
+menu.hilite.colorTo:   #555f6b
+menu.hilite.textColor: #b9ccdb
+
+menu.bullet:   triangle
+menu.bullet.position:  Right
+menu.frame.disableColor:       #787878
+
+! Window settings...
+window.button.focus:   Flatborder Gradient CrossDiagonal
+window.button.focus.color:     #6e7b8b
+window.button.focus.colorTo:   #555f6b
+window.button.focus.borderColor: #a9bccb
+window.button.focus.picColor:  #b9ccdb
+
+window.button.unfocus: Flatborder Gradient Vertical
+window.button.unfocus.color:   #6e7b8b
+window.button.unfocus.colorTo: #555f6b
+window.button.unfocus.borderColor: #748293
+window.button.unfocus.picColor:        #748293
+
+window.grip.focus:     Raised Bevel1 Gradient Diagonal
+window.grip.focus.color:       #8fa0b5
+window.grip.focus.colorTo:     #6e7b8b
+
+window.grip.unfocus:   Raised Bevel1 Gradient Diagonal
+window.grip.unfocus.color:     #6e7b8b
+window.grip.unfocus.colorTo:   #555f6b
+
+window.handle.focus:   Raised Bevel1 Gradient Diagonal
+window.handle.focus.color:     #6e7b8b
+window.handle.focus.colorTo:   #555f6b
+
+window.handle.unfocus: Raised Bevel1 Gradient Diagonal
+window.handle.unfocus.color:   #6e7b8b
+window.handle.unfocus.colorTo: #555f6b
+
+window.label.focus:    Sunken Bevel1 Gradient Diagonal
+window.label.focus.color:      #8fa0b5
+window.label.focus.colorTo:    #555f6b
+window.label.focus.textColor:  #b9ccdb
+window.label.focus.justify:    Left
+
+window.justify:        center
+window.label.unfocus:  Sunken Bevel1 Gradient Diagonal
+window.label.unfocus.color:    #6e7b8b
+window.label.unfocus.colorTo:  #555f6b
+window.label.unfocus.textColor:        #748293
+
+window.title.focus:    Raised Bevel1 Gradient Vertical
+window.title.focus.color:      #6e7b8b
+window.title.focus.colorTo:    #555f6b
+
+window.title.unfocus:  Raised Bevel1 Gradient Vertical
+window.title.unfocus.color:    #6e7b8b
+window.title.unfocus.colorTo:  #555f6b
+
+window.button.pressed: Sunken Bevel1 Gradient Diagonal
+window.button.pressed.color:   #6e7b8b
+window.button.pressed.colorTo: #8fa0b5
+
+window.button.pressed.unfocus: sunken bevel1 gradient diagonal
+window.button.pressed.unfocus.color: #6e7b8b
+window.button.pressed.unfocus.colorTo: #555f6b
+window.frame.focusColor:       #ffffff
+window.frame.unfocusColor:     #555f6b
+handleWidth:   4
+frameWidth:    0
+bevelWidth:    1
+borderWidth:   1
+borderColor:   #000000
+
+menu.arrow.mask: fieron-bullet.xbm
+toolbar.button.left.mask: fieron-bulletl.xbm
+toolbar.button.right.mask: fieron-bullet.xbm
+window.button.max.mask: fieron-max.xbm
+window.button.icon.mask: fieron-icon.xbm
+window.button.stick.mask: fieron-stick.xbm
+window.button.close.mask: fieron-close.xbm
index 4d3c6ebc549254b59ffb1ebdf83f05406ddfc7df..a22c2c8d69294ef70ca5e79444412cae7ca1fa96 100644 (file)
@@ -133,3 +133,8 @@ borderColor:        #000000
 menu*xft.font:         Trebuchet MS
 menu*xft.size:         11
 menu.title.xft.flags:  bold
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index 66d4450de98875ebddb3ee2834c06096006660f6..e82d19a33f576e907290b33bba1ea16433ae2644 100644 (file)
@@ -147,3 +147,7 @@ bbpager.active.window.borderColor:      #202020
 bbpager.inactive.window.borderColor:    #000000
 bbpager.active.desktop.borderColor:     #73787e
 
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index a00c72b460cdbce4ac8f2a1fbf067ec07d786e41..bc32ce17295643700ef8d43e93492d860e10d9cd 100644 (file)
@@ -99,3 +99,8 @@ handleWidth:                  4
 *xft.size:                     10
 
 rootCommand:                   bsetroot -solid grey20
+
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm
index da1caf33d97e3aec574e862f031bcd8fd90724c1..e0b592bf2c6d0a962c24fbdaf5fd97d0bf77f52b 100644 (file)
@@ -103,3 +103,7 @@ menu.title.xft.flags:       bold
 
 rootCommand: bsetbg -solid "#4468b2"
 
+window.button.max.mask: max.xbm
+window.button.icon.mask: icon.xbm
+window.button.stick.mask: stick.xbm
+window.button.close.mask: close.xbm