mirror of https://github.com/BOINC/boinc.git
- MGR: Fix advanced view button is Simple GUI.
(Button Text is Verdana 8pt. in MS Paint) clientgui/res/skins/default/graphic/ advanced_link_image.xpm clientgui/res/templates/skins/ advanced_link_image.gif (Added) btnAdvancedView.png (Removed) svn path=/trunk/boinc/; revision=22935
This commit is contained in:
parent
58b345fce6
commit
c0766baaf3
|
@ -244,3 +244,13 @@ David 24 Jan 2011
|
|||
|
||||
py/Boinc/
|
||||
setup_project.py
|
||||
|
||||
Rom 25 Jan 2011
|
||||
- MGR: Fix advanced view button is Simple GUI.
|
||||
(Button Text is Verdana 8pt. in MS Paint)
|
||||
|
||||
clientgui/res/skins/default/graphic/
|
||||
advanced_link_image.xpm
|
||||
clientgui/res/templates/skins/
|
||||
advanced_link_image.gif (Added)
|
||||
btnAdvancedView.png (Removed)
|
||||
|
|
|
@ -1,49 +1,93 @@
|
|||
/* XPM */
|
||||
// This file is part of BOINC.
|
||||
// http://boinc.berkeley.edu
|
||||
// Copyright (C) 2008 University of California
|
||||
//
|
||||
// BOINC is free software; you can redistribute it and/or modify it
|
||||
// under the terms of the GNU Lesser General Public License
|
||||
// as published by the Free Software Foundation,
|
||||
// either version 3 of the License, or (at your option) any later version.
|
||||
//
|
||||
// BOINC is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
// See the GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
||||
static const char *advanced_link_image_xpm[] = {
|
||||
static char *advanced_link_image_xpm[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"82 18 9 1",
|
||||
". c Black",
|
||||
"X c #444444",
|
||||
"+ c #111111",
|
||||
"101 20 67 1",
|
||||
"o c Black",
|
||||
"b c #CACACA",
|
||||
"$ c #0F0F0F",
|
||||
"0 c #D9D9D9",
|
||||
"v c #E8E8E8",
|
||||
"& c #2D2D2D",
|
||||
"d c #F7F7F7",
|
||||
"c c #D2D2D2",
|
||||
"2 c #171717",
|
||||
" c None",
|
||||
"@ c #555555",
|
||||
"O c #222222",
|
||||
"# c #666666",
|
||||
"$ c #333333",
|
||||
"o c #777777",
|
||||
"q c #535353",
|
||||
"w c #9E9E9E",
|
||||
"F c #CBCBCB",
|
||||
"V c #6A6A6A",
|
||||
"= c #979797",
|
||||
"u c #272727",
|
||||
"# c #F1F1F1",
|
||||
"f c #363636",
|
||||
"m c #636363",
|
||||
"4 c #818181",
|
||||
"h c #DBDBDB",
|
||||
"x c #EAEAEA",
|
||||
"l c #7A7A7A",
|
||||
"5 c #A7A7A7",
|
||||
": c #B6B6B6",
|
||||
"Z c #F2F2F2",
|
||||
"H c #464646",
|
||||
"> c #919191",
|
||||
"6 c #BEBEBE",
|
||||
"X c #DCDCDC",
|
||||
"< c #3F3F3F",
|
||||
"y c #5D5D5D",
|
||||
"@ c #7B7B7B",
|
||||
"n c #A8A8A8",
|
||||
"e c #C6C6C6",
|
||||
"% c #D5D5D5",
|
||||
"O c #E4E4E4",
|
||||
"j c #929292",
|
||||
"M c #CECECE",
|
||||
"S c #DDDDDD",
|
||||
"- c #FBFBFB",
|
||||
"p c #4F4F4F",
|
||||
"B c #8B8B8B",
|
||||
"C c #C7C7C7",
|
||||
"r c #1B1B1B",
|
||||
"7 c #575757",
|
||||
"k c #757575",
|
||||
"G c #848484",
|
||||
"9 c #232323",
|
||||
", c #EDEDED",
|
||||
"* c #9B9B9B",
|
||||
"g c #E6E6E6",
|
||||
"t c #2B2B2B",
|
||||
"a c #494949",
|
||||
"N c #B2B2B2",
|
||||
"1 c #151515",
|
||||
"z c #424242",
|
||||
"8 c #606060",
|
||||
"; c #6F6F6F",
|
||||
"s c #ABABAB",
|
||||
"D c #BABABA",
|
||||
"A c #1D1D1D",
|
||||
". c #3B3B3B",
|
||||
"J c #959595",
|
||||
"3 c #A4A4A4",
|
||||
"+ c #070707",
|
||||
"i c #D1D1D1",
|
||||
/* pixels */
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" . X ",
|
||||
" o. . X . O . ",
|
||||
" +XX . X @# . ",
|
||||
" + . O.. + $ ... .$.+ $.@ O. @.. + #@ . .O $ o ",
|
||||
" .... . . O +..O . # O .... ## X o O . ...O $ ",
|
||||
" $ + . O oO . # @X + O O $ . + + + ",
|
||||
" @ ... + ..OO . # $.@ O.O $+O . . ..# X . ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" "
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" .X .X o ",
|
||||
" O+@ .X .X #$# %& ",
|
||||
" *=$- .X .X ;: >* ",
|
||||
" &O;: ,<o12X34 #2-5+o1: 678o90 ,qo$w erot0 ,<o12X ey uO o erot0#+ ;3 ip ",
|
||||
" ia ey ps dfX#2- 3> g+ 6&h jk ps glOzx c. ps dfX 2v bp o Ozx c. pi-9a w* ",
|
||||
" 4n -2v#2 .X m: &% Mqroo 6; 6;#2 Nooooo#2 .X B3 @N o Nooooo *w6*pOVi ",
|
||||
" -2oooo3v2 .X ea%a -+CZ o 6; 6;#2 N4 v2 .X %a-A# o N4 iy@Sn3&- ",
|
||||
" 6m %. &D h2X &p: #2x Co 6; 6; as glO$F gG &D h2X .*; o O$F gG -Ap v&y ",
|
||||
" m: &%09o8uX 32- n+$Go 6; 6; xHo$w eto1J 09o8uX 3+e o eto1J y* pn ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" "
|
||||
};
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 542 B |
Loading…
Reference in New Issue