increase default size of toolbar and icon buttons

This commit is contained in:
Mark Tiefenbruck 2008-10-18 21:40:32 -07:00
parent f92fd6ca05
commit 3b9611b61d
4 changed files with 11 additions and 11 deletions

View file

@ -733,7 +733,7 @@ session.screen0.toolbar.visible: <boolean>
session.screen0.toolbar.widthPercent: <integer>
This resource sets the width percentage of the toolbar on the screen.
Default: 65
Default: 100
session.screen0.toolbar.tools: <tools>
This resource specifies the tools plugged into the toolbar. Read the
@ -778,7 +778,7 @@ session.screen0.iconbar.alignment: <position>
session.screen0.iconbar.iconWidth: <integer>
Used to specify the iconbar button width for Left/Right alignment.
Default: 70
Default: 128
session.screen0.strftimeFormat: <date>
This adjusts the way the current time is displayed in the toolbar. The

View file

@ -1,12 +1,12 @@
.\" Title: fluxbox
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.74.0 <http://docbook.sf.net/>
.\" Date: 10/12/2008
.\" Date: 10/18/2008
.\" Manual: [FIXME: manual]
.\" Source: [FIXME: source]
.\" Language: English
.\"
.TH "FLUXBOX" "1" "10/12/2008" "[FIXME: source]" "[FIXME: manual]"
.TH "FLUXBOX" "1" "10/18/2008" "[FIXME: source]" "[FIXME: manual]"
.\" -----------------------------------------------------------------
.\" * (re)Define some macros
.\" -----------------------------------------------------------------
@ -1673,7 +1673,7 @@ session\&.screen0\&.toolbar\&.visible: <boolean>
session\&.screen0\&.toolbar\&.widthPercent: <integer>
This resource sets the width percentage of the toolbar on the screen\&.
Default: 65
Default: 100
session\&.screen0\&.toolbar\&.tools: <tools>
This resource specifies the tools plugged into the toolbar\&. Read the
@ -1718,7 +1718,7 @@ session\&.screen0\&.iconbar\&.alignment: <position>
session\&.screen0\&.iconbar\&.iconWidth: <integer>
Used to specify the iconbar button width for Left/Right alignment\&.
Default: 70
Default: 128
session\&.screen0\&.strftimeFormat: <date>
This adjusts the way the current time is displayed in the toolbar\&. The
@ -2731,9 +2731,9 @@ fluxbox is written and maintained by Henrik Kinnunen <fluxgen at fluxbox org>, S
.sp
Blackbox was written and maintained by Brad Hughes <blackbox at alug org> and Jeff Raven <jraven at psu edu>\&.
.sp
The Official fluxbox website: http://www\&.fluxbox\&.org
The Official fluxbox website: \m[blue]\fBhttp://www\&.fluxbox\&.org\fR\m[]
.sp
Many compatible themes: \- http://boxwhore\&.org \- http://themes\&.freshmeat\&.net/
Many compatible themes: \- \m[blue]\fBhttp://boxwhore\&.org\fR\m[] \- \m[blue]\fBhttp://themes\&.freshmeat\&.net/\fR\m[]
.sp
This manpage is the combined work of:
.sp
@ -2804,7 +2804,7 @@ Numerous other languages could be available if someone jumps in\&.
.RE
.SH "BUGS"
.sp
If you find any bugs, please visit the #fluxbox irc channel on irc\&.freenode\&.net or submit them to the bug tracker at http://sf\&.net/projects/fluxbox \&. Or you may subscribe to one of the mailinglists\&. More information can be found on the official website\&.
If you find any bugs, please visit the #fluxbox irc channel on irc\&.freenode\&.net or submit them to the bug tracker at \m[blue]\fBhttp://sf\&.net/projects/fluxbox\fR\m[] \&. Or you may subscribe to one of the mailinglists\&. More information can be found on the official website\&.
.SH "SEE ALSO"
.sp
fluxbox\-keys(5) bsetroot(1) fbsetbg(1) fbrun(1) fluxstyle(1)

View file

@ -260,7 +260,7 @@ IconbarTool::IconbarTool(const FbTk::FbWindow &parent, IconbarTheme &theme,
screen.name() + ".iconbar.mode", screen.altName() + ".Iconbar.Mode"),
m_rc_alignment(screen.resourceManager(), FbTk::Container::RELATIVE,
screen.name() + ".iconbar.alignment", screen.altName() + ".Iconbar.Alignment"),
m_rc_client_width(screen.resourceManager(), 70,
m_rc_client_width(screen.resourceManager(), 128,
screen.name() + ".iconbar.iconWidth", screen.altName() + ".Iconbar.IconWidth"),
m_rc_client_padding(screen.resourceManager(), 10,
screen.name() + ".iconbar.iconTextPadding", screen.altName() + ".Iconbar.IconTextPadding"),

View file

@ -232,7 +232,7 @@ Toolbar::Toolbar(BScreen &scrn, FbTk::XLayer &layer, size_t width):
m_rc_maximize_over(scrn.resourceManager(), false,
scrn.name() + ".toolbar.maxOver", scrn.altName() + ".Toolbar.MaxOver"),
m_rc_visible(scrn.resourceManager(), true, scrn.name() + ".toolbar.visible", scrn.altName() + ".Toolbar.Visible"),
m_rc_width_percent(scrn.resourceManager(), 66,
m_rc_width_percent(scrn.resourceManager(), 100,
scrn.name() + ".toolbar.widthPercent", scrn.altName() + ".Toolbar.WidthPercent"),
m_rc_alpha(scrn.resourceManager(), 255,
scrn.name() + ".toolbar.alpha", scrn.altName() + ".Toolbar.Alpha"),