Prelim: Implement progress bar styles

This commit is contained in:
Rory Fewell
2022-09-02 20:08:56 +01:00
committed by Rory Fewell
parent 37a8b5cc83
commit 01024b2a9c
19 changed files with 210 additions and 14 deletions

View File

Before

Width:  |  Height:  |  Size: 235 B

After

Width:  |  Height:  |  Size: 235 B

View File

Before

Width:  |  Height:  |  Size: 281 B

After

Width:  |  Height:  |  Size: 281 B

View File

Before

Width:  |  Height:  |  Size: 232 B

After

Width:  |  Height:  |  Size: 232 B

View File

Before

Width:  |  Height:  |  Size: 294 B

After

Width:  |  Height:  |  Size: 294 B

View File

@@ -15,3 +15,4 @@
@import "taskband";
@import "combobox";
@import "scale";
@import "progressbar";

View File

@@ -0,0 +1,55 @@
/**
* progressbar.scss - Luna (Blue) Style Progress Bar Style Constants
*
* This source-code is part of Windows XP stuff for XFCE:
* <<https://www.oddmatics.uk>>
*
* Author(s): Rory Fewell <roryf@oddmatics.uk>
*/
$progressbar_trough_styles:
wintc_define_props_bg(
$progressbar_trough_styles,
false,
#FFF,
undefined,
undefined,
undefined,
undefined
);
$progressbar_trough_styles:
wintc_define_props_box(
$progressbar_trough_styles,
false,
padding,
undefined,
undefined,
undefined,
undefined
);
$progressbar_horz_trough_styles:
wintc_define_props_borders(
$progressbar_horz_progress_styles,
false,
solid,
3,
4,
3,
4,
undefined,
url('../Resources/progress_horz_trough.png')
);
$progressbar_vert_trough_styles:
wintc_define_props_borders(
$progressbar_vert_progress_styles,
false,
solid,
4,
3,
4,
3,
undefined,
url('../Resources/progress_vert_trough.png')
);