New version of ProjMan
39
theme/scid/LICENSE.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# BSD-like Tcl License
|
||||
Copyright (C) 2018 Uwe Klimmek
|
||||
The following terms apply to all files associated with the software
|
||||
unless explicitly disclaimed in individual files.
|
||||
|
||||
The authors hereby grant permission to use, copy, modify, distribute,
|
||||
and license this software and its documentation for any purpose,
|
||||
provided that existing copyright notices are retained in all copies and
|
||||
that this notice is included verbatim in any distributions. No written
|
||||
agreement, license, or royalty fee is required for any of the authorized
|
||||
uses. Modifications to this software may be copyrighted by their authors
|
||||
and need not follow the licensing terms described here, provided that
|
||||
the new terms are clearly indicated on the first page of each file where
|
||||
they apply.
|
||||
|
||||
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
|
||||
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
||||
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
|
||||
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE
|
||||
|
||||
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
|
||||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
|
||||
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND
|
||||
DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT,
|
||||
UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
||||
|
||||
GOVERNMENT USE: If you are acquiring this software on behalf of the U.S.
|
||||
government, the Government shall have only "Restricted Rights" in the
|
||||
software and related documentation as defined in the Federal Acquisition
|
||||
Regulations (FARs) in Clause 52.227.19 (c) (2). If you are acquiring the
|
||||
software on behalf of the Department of Defense, the software shall be
|
||||
classified as "Commercial Computer Software" and the Government shall
|
||||
have only "Restricted Rights" as defined in Clause 252.227-7013 (c) (1)
|
||||
of DFARs. Notwithstanding the foregoing, the authors grant the U.S.
|
||||
Government and others acting in its behalf permission to use and
|
||||
distribute the software in accordance with the terms specified in this
|
||||
license.
|
329
theme/scid/scid.tcl
Normal file
@@ -0,0 +1,329 @@
|
||||
# scidthemes - Copyright (C) 2018 Uwe Klimmek
|
||||
# Available under the BSD-like 2-clause Tcl License, see LICENSE.md
|
||||
|
||||
# Copyright (c) 2018 RedFantom
|
||||
# Edited for indents, spaces instead of tabs and formatting
|
||||
# Fixed the spacing of down arrow in Menubutton/OptionMenu
|
||||
# TODO: Fix alignment of down arrow in Menubutton/OptionMenu
|
||||
# TODO: Fix spacing on Combobox down arrow sides
|
||||
|
||||
package provide ttk::theme::scid 0.9.1
|
||||
|
||||
foreach { t } { blue mint green purple sand pink grey } {
|
||||
set ::tks $t
|
||||
|
||||
package provide ttk::theme::scid$t 0.9.1
|
||||
|
||||
namespace eval ttk::theme::scid$t {
|
||||
|
||||
set t $::tks
|
||||
proc LoadImages {imgdir {patterns {*.png}}} {
|
||||
foreach pattern $patterns {
|
||||
foreach file [glob -directory $imgdir $pattern] {
|
||||
set img [file tail [file rootname $file]]
|
||||
if {![info exists images($img)]} {
|
||||
set images($img) [image create photo -file $file -format png]
|
||||
}
|
||||
}
|
||||
}
|
||||
return [array get images]
|
||||
}
|
||||
|
||||
variable I
|
||||
array set I [LoadImages [file join [file dirname [info script]] scid$t] *.png]
|
||||
|
||||
variable colors
|
||||
array set colors {
|
||||
-frame "#d8d8d8"
|
||||
-lighter "#fcfcfc"
|
||||
-dark "#c8c8c8"
|
||||
-darker "#9e9e9e"
|
||||
-darkest "#cacaca"
|
||||
-selectbg "#3d3d3d"
|
||||
-selectfg "#fcfcfc"
|
||||
-disabledfg "#b3b3b3"
|
||||
-entryfocus "#6f6f6f"
|
||||
-tabbg "#c9c9c9"
|
||||
-tabborder "#b7b7b7"
|
||||
-troughcolor "#d7d7d7"
|
||||
-troughborder "#a7a7a7"
|
||||
-checklight "#f5f5f5"
|
||||
-eborder "#5464c4"
|
||||
-foreground "#202020"
|
||||
-background "#efefef"
|
||||
}
|
||||
|
||||
ttk::style theme create scid$t -settings {
|
||||
ttk::style configure . \
|
||||
-borderwidth 1 \
|
||||
-background $colors(-frame) \
|
||||
-foreground $colors(-foreground) \
|
||||
-bordercolor $colors(-darkest) \
|
||||
-darkcolor $colors(-dark) \
|
||||
-lightcolor $colors(-lighter) \
|
||||
-troughcolor $colors(-troughcolor) \
|
||||
-selectforeground $colors(-selectfg) \
|
||||
-selectbackground $colors(-selectbg) \
|
||||
-font TkDefaultFont
|
||||
|
||||
ttk::style map . \
|
||||
-background [list disabled $colors(-frame) active $colors(-lighter)] \
|
||||
-foreground [list disabled $colors(-disabledfg)] \
|
||||
-selectbackground [list !focus $colors(-darker)] \
|
||||
-selectforeground [list !focus white]
|
||||
|
||||
## Treeview
|
||||
ttk::style element create Treeheading.cell image \
|
||||
[list $I(tree-n) \
|
||||
selected $I(tree-p) \
|
||||
disabled $I(tree-d) \
|
||||
pressed $I(tree-p) \
|
||||
active $I(tree-h) \
|
||||
] -border 4 -sticky ew
|
||||
ttk::style configure Row -background $colors(-background)
|
||||
ttk::style map Row -background \
|
||||
[list \
|
||||
{focus selected} "#6474d4" \
|
||||
selected "#7484e4" \
|
||||
alternate white]
|
||||
ttk::style map Item -foreground [list selected white]
|
||||
ttk::style map Cell -foreground [list selected white]
|
||||
ttk::style configure Treeview -background white
|
||||
ttk::style map Treeview \
|
||||
-background [list selected "#5464c4"] \
|
||||
-foreground [list selected $colors(-selectfg)]
|
||||
|
||||
## Buttons
|
||||
ttk::style configure TButton -anchor center
|
||||
ttk::style layout TButton {
|
||||
Button.button -children {
|
||||
Button.focus -children {
|
||||
Button.padding -children {
|
||||
Button.label
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ttk::style element create button image \
|
||||
[list $I(button-n) \
|
||||
pressed $I(button-p) \
|
||||
{selected active} $I(button-pa) \
|
||||
selected $I(button-p) \
|
||||
active $I(button-a) \
|
||||
disabled $I(button-d) \
|
||||
] -border {4 9 4 18} -padding {4 0} -sticky news
|
||||
ttk::style configure Tbutton -padding {4 0 4 0}
|
||||
|
||||
## Checkbuttons
|
||||
ttk::style element create Checkbutton.indicator image \
|
||||
[list $I(check-nu) \
|
||||
{disabled selected} $I(check-dc) \
|
||||
disabled $I(check-du) \
|
||||
{pressed selected} $I(check-pc) \
|
||||
pressed $I(check-pu) \
|
||||
{active selected} $I(check-ac) \
|
||||
active $I(check-hu) \
|
||||
selected $I(check-nc) \
|
||||
] -width 20 -sticky w
|
||||
ttk::style map TCheckbutton -background [list active $colors(-frame)]
|
||||
ttk::style configure TCheckbutton -padding {0 4 0 4}
|
||||
|
||||
## Radiobuttons
|
||||
ttk::style element create Radiobutton.indicator image \
|
||||
[list $I(radio-nu) \
|
||||
{disabled selected} $I(radio-dc) \
|
||||
disabled $I(radio-du) \
|
||||
{pressed selected} $I(radio-pc) \
|
||||
pressed $I(radio-pu) \
|
||||
{active selected} $I(radio-ac) \
|
||||
active $I(radio-hu) \
|
||||
selected $I(radio-nc) \
|
||||
] -width 20 -sticky w
|
||||
ttk::style map TRadiobutton -background [list active $colors(-frame)]
|
||||
ttk::style configure TRadiobutton -padding {0 4 0 4 }
|
||||
|
||||
## Menubuttons
|
||||
ttk::style element create Menubutton.indicator image \
|
||||
[list $I(menuarrow-a) \
|
||||
disabled $I(menuarrow-d) \
|
||||
] -sticky e -border {15 0 0 0} -padding 0
|
||||
ttk::style element create Menubutton.border image \
|
||||
[list $I(button-n) \
|
||||
selected $I(button-p) \
|
||||
disabled $I(button-d) \
|
||||
active $I(button-a) \
|
||||
] -border 4 -sticky ew
|
||||
ttk::style configure TMenubutton -padding {4 0 4 0}
|
||||
|
||||
## Toolbar buttons
|
||||
ttk::style configure Toolbutton -padding -5 -relief flat
|
||||
ttk::style configure Toolbutton.label -padding 0 -relief flat
|
||||
ttk::style element create Toolbutton.border image \
|
||||
[list $I(blank) \
|
||||
pressed $I(toolbutton-p) \
|
||||
{selected active} $I(toolbutton-pa) \
|
||||
selected $I(toolbutton-p) \
|
||||
active $I(toolbutton-a) \
|
||||
disabled $I(blank) \
|
||||
] -border 11 -sticky nsew
|
||||
|
||||
## Entry widgets
|
||||
ttk::style configure TEntry \
|
||||
-padding {0 4 0 4 } \
|
||||
-insertwidth 1 \
|
||||
-fieldbackground white \
|
||||
-selectbackground $colors(-eborder) \
|
||||
-selectforeground $colors(-foreground)
|
||||
ttk::style map TEntry \
|
||||
-fieldbackground [list readonly $colors(-frame)] \
|
||||
-bordercolor [list focus $colors(-eborder)] \
|
||||
-lightcolor [list focus $colors(-entryfocus)] \
|
||||
-darkcolor [list focus $colors(-entryfocus)]
|
||||
ttk::style element create Entry.field image \
|
||||
[list $I(entry-n) \
|
||||
{focus} $I(entry-a) \
|
||||
{readonly disabled} $I(entry-rd) \
|
||||
{readonly pressed} $I(entry-d) \
|
||||
{focus readonly} $I(entry-d) \
|
||||
readonly $I(entry-d) \
|
||||
] -border {3 3 3 3} -sticky ew
|
||||
|
||||
## Combobox
|
||||
ttk::style element create Combobox.downarrow image \
|
||||
[list $I(comboarrow-n) \
|
||||
focus $I(comboarrow-af) \
|
||||
disabled $I(comboarrow-d) \
|
||||
pressed $I(comboarrow-p) \
|
||||
active $I(comboarrow-a) \
|
||||
] -sticky e -border {22 0 0 0}
|
||||
ttk::style element create Combobox.field image \
|
||||
[list $I(combo-n) \
|
||||
focus $I(combo-ra) \
|
||||
{readonly disabled} $I(combo-rd) \
|
||||
{readonly pressed} $I(combo-rp) \
|
||||
{readonly focus} $I(combo-rf) \
|
||||
readonly $I(combo-rn) \
|
||||
] -border {4 0 0 0} -sticky ew
|
||||
ttk::style configure TCombobox \
|
||||
-selectbackground "#ffffff" \
|
||||
-selectforeground "#202020" \
|
||||
-padding {0 4 0 4}
|
||||
|
||||
## Spinbox
|
||||
ttk::style element create Spinbox.downarrow image \
|
||||
[list $I(spinarrowdown-a) \
|
||||
{focus pressed} $I(spinarrowdown-paf) \
|
||||
focus $I(spinarrowdown-af) \
|
||||
disabled $I(spinarrowdown-a) \
|
||||
active $I(spinarrowdown-p) \
|
||||
] -border 4 -sticky {}
|
||||
ttk::style element create Spinbox.uparrow image \
|
||||
[list $I(spinarrowup-a) \
|
||||
{focus pressed} $I(spinarrowup-paf) \
|
||||
focus $I(spinarrowup-af) \
|
||||
disabled $I(spinarrowup-a) \
|
||||
active $I(spinarrowup-p) \
|
||||
] -border 4 -sticky {}
|
||||
ttk::style element create Spinbox.field image \
|
||||
[list $I(combo-n) \
|
||||
focus $I(combo-ra) \
|
||||
{readonly disabled} $I(combo-rd) \
|
||||
{readonly pressed} $I(combo-rp) \
|
||||
{readonly focus} $I(combo-rf) \
|
||||
readonly $I(combo-rn) \
|
||||
] -border {4 0 0 0} -sticky ew
|
||||
ttk::style configure TSpinbox \
|
||||
-selectbackground "#ffffff" \
|
||||
-selectforeground "#202020" \
|
||||
-padding {0 4 0 4}
|
||||
|
||||
## Notebooks
|
||||
ttk::style element create Notebook.client \
|
||||
image $I(surface) -border 2 -sticky news
|
||||
ttk::style element create Notebook.tab image \
|
||||
[list $I(tab-n) \
|
||||
selected $I(tab-s) \
|
||||
active $I(tab-a) \
|
||||
] -border {3 6 3 12} -padding {3 3}
|
||||
|
||||
## Labelframes
|
||||
ttk::style element create Labelframe.border image $I(labelframe) \
|
||||
-border 4 -sticky news
|
||||
ttk::style configure TLabelframe -padding 4
|
||||
|
||||
## Scrollbars
|
||||
ttk::style layout Vertical.TScrollbar {
|
||||
Vertical.Scrollbar.trough -sticky ns -children {
|
||||
Vertical.Scrollbar.thumb -expand true
|
||||
}
|
||||
}
|
||||
ttk::style layout Horizontal.TScrollbar {
|
||||
Horizontal.Scrollbar.trough -sticky ew -children {
|
||||
Horizontal.Scrollbar.thumb -expand true
|
||||
}
|
||||
}
|
||||
ttk::style element create Horizontal.Scrollbar.thumb image \
|
||||
[list $I(sbthumb-hn) \
|
||||
disabled $I(sbthumb-hd) \
|
||||
pressed $I(sbthumb-hp) \
|
||||
active $I(sbthumb-ha) \
|
||||
] -border 4
|
||||
ttk::style element create Vertical.Scrollbar.thumb image \
|
||||
[list $I(sbthumb-vn) \
|
||||
disabled $I(sbthumb-vd) \
|
||||
pressed $I(sbthumb-vp) \
|
||||
active $I(sbthumb-va) \
|
||||
] -border 4
|
||||
ttk::style element create Horizontal.Scrollbar.trough image $I(sbtrough-h)
|
||||
ttk::style element create Vertical.Scrollbar.trough image $I(sbtrough-v)
|
||||
ttk::style configure TScrollbar -bordercolor $colors(-troughborder)
|
||||
|
||||
## Scales
|
||||
ttk::style element create Horizontal.Scale.slider image \
|
||||
[list $I(scale-hn) \
|
||||
disabled $I(scale-hd) \
|
||||
active $I(scale-ha) \
|
||||
]
|
||||
ttk::style element create Horizontal.Scale.trough image \
|
||||
[list $I(scaletrough-h) \
|
||||
pressed $I(scaletrough-hp) \
|
||||
] -border 4 -sticky ew -padding 0
|
||||
ttk::style element create Vertical.Scale.slider image \
|
||||
[list $I(scale-vn) \
|
||||
disabled $I(scale-vd) \
|
||||
active $I(scale-va) \
|
||||
]
|
||||
ttk::style element create Vertical.Scale.trough image \
|
||||
[list $I(scaletrough-v) \
|
||||
pressed $I(scaletrough-vp) \
|
||||
] -border 4 -sticky ns -padding 0
|
||||
|
||||
ttk::style configure TScale -bordercolor $colors(-troughborder)
|
||||
|
||||
## Progressbar
|
||||
ttk::style element create Progressbar.trough \
|
||||
image $I(entry-n) -border 2
|
||||
ttk::style element create Vertical.Progressbar.pbar \
|
||||
image $I(progress-v) -border {2 2 1 1}
|
||||
ttk::style element create Horizontal.Progressbar.pbar \
|
||||
image $I(progress-h) -border {2 2 1 1}
|
||||
ttk::style configure TProgressbar \
|
||||
-bordercolor $colors(-troughborder) \
|
||||
-foreground $colors(-eborder)
|
||||
|
||||
## Statusbar
|
||||
ttk::style element create sizegrip image $I(sizegrip)
|
||||
|
||||
## Separator
|
||||
ttk::style element create separator image $I(sep-h)
|
||||
ttk::style element create hseparator image $I(sep-h)
|
||||
ttk::style element create vseparator image $I(sep-v)
|
||||
|
||||
## Paned window
|
||||
ttk::style element create vsash image $I(sas-v) -sticky e
|
||||
ttk::style element create hsash image $I(sas-h) -sticky s
|
||||
}
|
||||
}
|
||||
}
|
||||
unset ::tks
|
BIN
theme/scid/scidblue/blank.png
Normal file
After Width: | Height: | Size: 290 B |
BIN
theme/scid/scidblue/button-a.png
Normal file
After Width: | Height: | Size: 484 B |
BIN
theme/scid/scidblue/button-a1p.png
Normal file
After Width: | Height: | Size: 585 B |
BIN
theme/scid/scidblue/button-d.png
Normal file
After Width: | Height: | Size: 495 B |
BIN
theme/scid/scidblue/button-default.png
Normal file
After Width: | Height: | Size: 465 B |
BIN
theme/scid/scidblue/button-n.png
Normal file
After Width: | Height: | Size: 454 B |
BIN
theme/scid/scidblue/button-p.png
Normal file
After Width: | Height: | Size: 463 B |
BIN
theme/scid/scidblue/button-p1p.png
Normal file
After Width: | Height: | Size: 567 B |
BIN
theme/scid/scidblue/button-pa.png
Normal file
After Width: | Height: | Size: 739 B |
BIN
theme/scid/scidblue/check-ac.png
Normal file
After Width: | Height: | Size: 527 B |
BIN
theme/scid/scidblue/check-au.png
Normal file
After Width: | Height: | Size: 492 B |
BIN
theme/scid/scidblue/check-dc.png
Normal file
After Width: | Height: | Size: 481 B |
BIN
theme/scid/scidblue/check-du.png
Normal file
After Width: | Height: | Size: 492 B |
BIN
theme/scid/scidblue/check-hu.png
Normal file
After Width: | Height: | Size: 435 B |
BIN
theme/scid/scidblue/check-nc.png
Normal file
After Width: | Height: | Size: 527 B |
BIN
theme/scid/scidblue/check-nu.png
Normal file
After Width: | Height: | Size: 492 B |
BIN
theme/scid/scidblue/check-pc.png
Normal file
After Width: | Height: | Size: 527 B |
BIN
theme/scid/scidblue/check-pu.png
Normal file
After Width: | Height: | Size: 429 B |
BIN
theme/scid/scidblue/combo-n.png
Normal file
After Width: | Height: | Size: 319 B |
BIN
theme/scid/scidblue/combo-ra.png
Normal file
After Width: | Height: | Size: 315 B |
BIN
theme/scid/scidblue/combo-rd.png
Normal file
After Width: | Height: | Size: 319 B |
BIN
theme/scid/scidblue/combo-rf.png
Normal file
After Width: | Height: | Size: 321 B |
BIN
theme/scid/scidblue/combo-rn.png
Normal file
After Width: | Height: | Size: 302 B |
BIN
theme/scid/scidblue/combo-rp.png
Normal file
After Width: | Height: | Size: 302 B |
BIN
theme/scid/scidblue/comboarrow-a.png
Normal file
After Width: | Height: | Size: 456 B |
BIN
theme/scid/scidblue/comboarrow-af.png
Normal file
After Width: | Height: | Size: 454 B |
BIN
theme/scid/scidblue/comboarrow-d.png
Normal file
After Width: | Height: | Size: 502 B |
BIN
theme/scid/scidblue/comboarrow-n.png
Normal file
After Width: | Height: | Size: 504 B |
BIN
theme/scid/scidblue/comboarrow-p.png
Normal file
After Width: | Height: | Size: 397 B |
BIN
theme/scid/scidblue/entry-a.png
Normal file
After Width: | Height: | Size: 322 B |
BIN
theme/scid/scidblue/entry-d.png
Normal file
After Width: | Height: | Size: 315 B |
BIN
theme/scid/scidblue/entry-n.png
Normal file
After Width: | Height: | Size: 324 B |
BIN
theme/scid/scidblue/entry-rd.png
Normal file
After Width: | Height: | Size: 318 B |
BIN
theme/scid/scidblue/labelframe.png
Normal file
After Width: | Height: | Size: 179 B |
BIN
theme/scid/scidblue/menuarrow-a.png
Normal file
After Width: | Height: | Size: 293 B |
BIN
theme/scid/scidblue/menuarrow-d.png
Normal file
After Width: | Height: | Size: 293 B |
BIN
theme/scid/scidblue/progress-h.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
theme/scid/scidblue/progress-v.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
theme/scid/scidblue/radio-ac.png
Normal file
After Width: | Height: | Size: 694 B |
BIN
theme/scid/scidblue/radio-au.png
Normal file
After Width: | Height: | Size: 659 B |
BIN
theme/scid/scidblue/radio-dc.png
Normal file
After Width: | Height: | Size: 653 B |
BIN
theme/scid/scidblue/radio-du.png
Normal file
After Width: | Height: | Size: 659 B |
BIN
theme/scid/scidblue/radio-hu.png
Normal file
After Width: | Height: | Size: 557 B |
BIN
theme/scid/scidblue/radio-nc.png
Normal file
After Width: | Height: | Size: 694 B |
BIN
theme/scid/scidblue/radio-nu.png
Normal file
After Width: | Height: | Size: 659 B |
BIN
theme/scid/scidblue/radio-pc.png
Normal file
After Width: | Height: | Size: 694 B |
BIN
theme/scid/scidblue/radio-pu.png
Normal file
After Width: | Height: | Size: 559 B |
BIN
theme/scid/scidblue/sas-h.png
Normal file
After Width: | Height: | Size: 153 B |
BIN
theme/scid/scidblue/sas-v.png
Normal file
After Width: | Height: | Size: 155 B |
BIN
theme/scid/scidblue/sbthumb-ha.png
Normal file
After Width: | Height: | Size: 335 B |
BIN
theme/scid/scidblue/sbthumb-hd.png
Normal file
After Width: | Height: | Size: 335 B |
BIN
theme/scid/scidblue/sbthumb-hn.png
Normal file
After Width: | Height: | Size: 338 B |
BIN
theme/scid/scidblue/sbthumb-hp.png
Normal file
After Width: | Height: | Size: 331 B |
BIN
theme/scid/scidblue/sbthumb-va.png
Normal file
After Width: | Height: | Size: 401 B |
BIN
theme/scid/scidblue/sbthumb-vd.png
Normal file
After Width: | Height: | Size: 394 B |
BIN
theme/scid/scidblue/sbthumb-vn.png
Normal file
After Width: | Height: | Size: 396 B |
BIN
theme/scid/scidblue/sbthumb-vp.png
Normal file
After Width: | Height: | Size: 396 B |
BIN
theme/scid/scidblue/sbtrough-h.png
Normal file
After Width: | Height: | Size: 157 B |
BIN
theme/scid/scidblue/sbtrough-v.png
Normal file
After Width: | Height: | Size: 157 B |
BIN
theme/scid/scidblue/scale-ha.png
Normal file
After Width: | Height: | Size: 559 B |
BIN
theme/scid/scidblue/scale-hd.png
Normal file
After Width: | Height: | Size: 662 B |
BIN
theme/scid/scidblue/scale-hn.png
Normal file
After Width: | Height: | Size: 576 B |
BIN
theme/scid/scidblue/scale-va.png
Normal file
After Width: | Height: | Size: 559 B |
BIN
theme/scid/scidblue/scale-vd.png
Normal file
After Width: | Height: | Size: 662 B |
BIN
theme/scid/scidblue/scale-vn.png
Normal file
After Width: | Height: | Size: 576 B |
BIN
theme/scid/scidblue/scaletrough-h.png
Normal file
After Width: | Height: | Size: 282 B |
BIN
theme/scid/scidblue/scaletrough-hp.png
Normal file
After Width: | Height: | Size: 275 B |
BIN
theme/scid/scidblue/scaletrough-v.png
Normal file
After Width: | Height: | Size: 272 B |
BIN
theme/scid/scidblue/scaletrough-vp.png
Normal file
After Width: | Height: | Size: 269 B |
BIN
theme/scid/scidblue/sep-h.png
Normal file
After Width: | Height: | Size: 121 B |
BIN
theme/scid/scidblue/sep-v.png
Normal file
After Width: | Height: | Size: 258 B |
BIN
theme/scid/scidblue/sizegrip.png
Normal file
After Width: | Height: | Size: 226 B |
BIN
theme/scid/scidblue/spinarrowdown-a.png
Normal file
After Width: | Height: | Size: 362 B |
BIN
theme/scid/scidblue/spinarrowdown-af.png
Normal file
After Width: | Height: | Size: 457 B |
BIN
theme/scid/scidblue/spinarrowdown-p.png
Normal file
After Width: | Height: | Size: 362 B |
BIN
theme/scid/scidblue/spinarrowdown-pa.png
Normal file
After Width: | Height: | Size: 364 B |
BIN
theme/scid/scidblue/spinarrowdown-paf.png
Normal file
After Width: | Height: | Size: 452 B |
BIN
theme/scid/scidblue/spinarrowup-a.png
Normal file
After Width: | Height: | Size: 363 B |
BIN
theme/scid/scidblue/spinarrowup-af.png
Normal file
After Width: | Height: | Size: 451 B |
BIN
theme/scid/scidblue/spinarrowup-p.png
Normal file
After Width: | Height: | Size: 363 B |
BIN
theme/scid/scidblue/spinarrowup-pa.png
Normal file
After Width: | Height: | Size: 362 B |
BIN
theme/scid/scidblue/spinarrowup-paf.png
Normal file
After Width: | Height: | Size: 447 B |
BIN
theme/scid/scidblue/surface.png
Normal file
After Width: | Height: | Size: 222 B |
BIN
theme/scid/scidblue/tab-a.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/scid/scidblue/tab-n.png
Normal file
After Width: | Height: | Size: 1023 B |
BIN
theme/scid/scidblue/tab-s.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/scid/scidblue/toolbutton-a.png
Normal file
After Width: | Height: | Size: 585 B |
BIN
theme/scid/scidblue/toolbutton-d.png
Normal file
After Width: | Height: | Size: 495 B |
BIN
theme/scid/scidblue/toolbutton-n.png
Normal file
After Width: | Height: | Size: 465 B |
BIN
theme/scid/scidblue/toolbutton-p.png
Normal file
After Width: | Height: | Size: 567 B |
BIN
theme/scid/scidblue/toolbutton-pa.png
Normal file
After Width: | Height: | Size: 739 B |
BIN
theme/scid/scidblue/tree-d.png
Normal file
After Width: | Height: | Size: 457 B |
BIN
theme/scid/scidblue/tree-h.png
Normal file
After Width: | Height: | Size: 464 B |
BIN
theme/scid/scidblue/tree-n.png
Normal file
After Width: | Height: | Size: 464 B |
BIN
theme/scid/scidblue/tree-p.png
Normal file
After Width: | Height: | Size: 456 B |
BIN
theme/scid/scidgreen/blank.png
Normal file
After Width: | Height: | Size: 290 B |
BIN
theme/scid/scidgreen/button-a.png
Normal file
After Width: | Height: | Size: 484 B |
BIN
theme/scid/scidgreen/button-a1p.png
Normal file
After Width: | Height: | Size: 585 B |