fds
10
TODO
|
@ -1,7 +1,13 @@
|
||||||
|
Bugs:
|
||||||
|
* color swatch text doesnt disappear
|
||||||
|
* X and _ buttons move around all crazy like
|
||||||
|
* default install to different location
|
||||||
|
* desktop shortcut
|
||||||
|
* random doesn't recognize upper
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
* help menu -- about and forum
|
* help menu -- about and forum
|
||||||
* Tray doesn't disappear on windows after close
|
* copy quirks between profiles?
|
||||||
-- release alpha
|
|
||||||
* shared buddy lists - changes to the buddy list should refresh it?
|
* shared buddy lists - changes to the buddy list should refresh it?
|
||||||
multiple clients share buddy list???
|
multiple clients share buddy list???
|
||||||
* chumList not scaling -- QListView + delegate?
|
* chumList not scaling -- QListView + delegate?
|
||||||
|
|
BIN
convo.pyc
|
@ -70,6 +70,9 @@ class pesterQuirk(object):
|
||||||
return string
|
return string
|
||||||
def randomrep(mo):
|
def randomrep(mo):
|
||||||
choice = random.choice(self.quirk["randomlist"])
|
choice = random.choice(self.quirk["randomlist"])
|
||||||
|
def upperrep(m):
|
||||||
|
return mo.expand(m.group(1)).upper()
|
||||||
|
choice = _upperre.sub(upperrep, choice)
|
||||||
return mo.expand(choice)
|
return mo.expand(choice)
|
||||||
return re.sub(self.quirk["from"], randomrep, string)
|
return re.sub(self.quirk["from"], randomrep, string)
|
||||||
elif self.type == "spelling":
|
elif self.type == "spelling":
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
{"tabs": true, "soundon": true, "server": "irc.tymoon.eu", "chums": ["unknownTraveler", "tentacleTherapist", "vaginalEngineer", "mechanicalSpectacle", "carcinoGeneticist", "schlagzeugGator", "gamblingGenocider", "gardenGnostic", "superGhost", "centaursTesticle", "arachnidsGrip", "grimAuxiliatrix", "remoteBloodbath", "nitroZealist", "greenZephyr", "arsenicCatnip", "adiosToreador", "cuttlefishCuller", "rageInducer", "gallowsCalibrator", "caligulasAquarium", "terminallyCapricious", "illuminatedWax", "aquaMarinist", "elegantDiversion", "moirailBunp", "uroborosUnbound", "androidTechnician", "midnightSparrow", "apocalypseArisen", "anguillaNuntia", "oilslickOrchid", "confusedTransient", "pretentiousFantasia", "aquaticMarinist", "lyricalKeraunoscopic", "counterRealist", "ectoBiologist", "percipientPedestrian", "asceticClinician", "doctectiveMiracles", "noSense"], "defaultprofile": "ghostDunk", "block": []}
|
{"tabs": true, "soundon": true, "server": "irc.tymoon.eu", "chums": ["unknownTraveler", "tentacleTherapist", "vaginalEngineer", "mechanicalSpectacle", "carcinoGeneticist", "schlagzeugGator", "gamblingGenocider", "gardenGnostic", "superGhost", "centaursTesticle", "arachnidsGrip", "grimAuxiliatrix", "remoteBloodbath", "nitroZealist", "greenZephyr", "arsenicCatnip", "adiosToreador", "cuttlefishCuller", "rageInducer", "gallowsCalibrator", "caligulasAquarium", "terminallyCapricious", "illuminatedWax", "aquaMarinist", "elegantDiversion", "moirailBunp", "uroborosUnbound", "androidTechnician", "midnightSparrow", "apocalypseArisen", "anguillaNuntia", "oilslickOrchid", "confusedTransient", "pretentiousFantasia", "aquaticMarinist", "lyricalKeraunoscopic", "counterRealist", "ectoBiologist", "percipientPedestrian", "asceticClinician", "doctectiveMiracles", "noSense", "obliviousCrafter"], "defaultprofile": "ghostDunk", "block": []}
|
|
@ -130,6 +130,8 @@ class pesterTheme(dict):
|
||||||
theme = json.load(fp, object_hook=self.pathHook)
|
theme = json.load(fp, object_hook=self.pathHook)
|
||||||
self.update(theme)
|
self.update(theme)
|
||||||
fp.close()
|
fp.close()
|
||||||
|
if self.has_key("inherits"):
|
||||||
|
self.inheritedTheme = pesterTheme(self["inherits"])
|
||||||
if not default:
|
if not default:
|
||||||
self.defaultTheme = pesterTheme("pesterchum", default=True)
|
self.defaultTheme = pesterTheme("pesterchum", default=True)
|
||||||
def __getitem__(self, key):
|
def __getitem__(self, key):
|
||||||
|
@ -139,6 +141,8 @@ class pesterTheme(dict):
|
||||||
try:
|
try:
|
||||||
v = v[k]
|
v = v[k]
|
||||||
except KeyError, e:
|
except KeyError, e:
|
||||||
|
if hasattr(self, 'inheritedTheme'):
|
||||||
|
return self.inheritedTheme[key]
|
||||||
if hasattr(self, 'defaultTheme'):
|
if hasattr(self, 'defaultTheme'):
|
||||||
return self.defaultTheme[key]
|
return self.defaultTheme[key]
|
||||||
else:
|
else:
|
||||||
|
@ -152,7 +156,10 @@ class pesterTheme(dict):
|
||||||
return d
|
return d
|
||||||
def get(self, key, default):
|
def get(self, key, default):
|
||||||
keys = key.split("/")
|
keys = key.split("/")
|
||||||
|
try:
|
||||||
v = dict.__getitem__(self, keys.pop(0))
|
v = dict.__getitem__(self, keys.pop(0))
|
||||||
|
except KeyError:
|
||||||
|
return default
|
||||||
for k in keys:
|
for k in keys:
|
||||||
try:
|
try:
|
||||||
v = v[k]
|
v = v[k]
|
||||||
|
@ -161,7 +168,10 @@ class pesterTheme(dict):
|
||||||
return v
|
return v
|
||||||
def has_key(self, key):
|
def has_key(self, key):
|
||||||
keys = key.split("/")
|
keys = key.split("/")
|
||||||
|
try:
|
||||||
v = dict.__getitem__(self, keys.pop(0))
|
v = dict.__getitem__(self, keys.pop(0))
|
||||||
|
except KeyError:
|
||||||
|
return False
|
||||||
for k in keys:
|
for k in keys:
|
||||||
try:
|
try:
|
||||||
v = v[k]
|
v = v[k]
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
{"color": "#ff00ff", "theme": "pesterchum", "quirks": [], "handle": "ghostDunk"}
|
{"color": "#ff00ff", "theme": "pesterchum", "quirks": [{"percentage": 100, "type": "spelling"}], "handle": "ghostDunk"}
|
BIN
themes/pesterchum2.5/Thumbs.db
Normal file
BIN
themes/pesterchum2.5/abouticon.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
themes/pesterchum2.5/acceptant.gif
Normal file
After Width: | Height: | Size: 126 B |
BIN
themes/pesterchum2.5/alarm.wav
Normal file
BIN
themes/pesterchum2.5/amazed.gif
Normal file
After Width: | Height: | Size: 97 B |
BIN
themes/pesterchum2.5/bemused.gif
Normal file
After Width: | Height: | Size: 93 B |
BIN
themes/pesterchum2.5/blocked.gif
Normal file
After Width: | Height: | Size: 97 B |
BIN
themes/pesterchum2.5/cease.wav
Normal file
BIN
themes/pesterchum2.5/chummy.gif
Normal file
After Width: | Height: | Size: 106 B |
BIN
themes/pesterchum2.5/detestful.gif
Normal file
After Width: | Height: | Size: 165 B |
BIN
themes/pesterchum2.5/devious.gif
Normal file
After Width: | Height: | Size: 127 B |
BIN
themes/pesterchum2.5/discontent.gif
Normal file
After Width: | Height: | Size: 127 B |
BIN
themes/pesterchum2.5/distraught.gif
Normal file
After Width: | Height: | Size: 93 B |
BIN
themes/pesterchum2.5/ecstatic.gif
Normal file
After Width: | Height: | Size: 137 B |
BIN
themes/pesterchum2.5/estatic.gif
Normal file
After Width: | Height: | Size: 137 B |
BIN
themes/pesterchum2.5/h.gif
Normal file
After Width: | Height: | Size: 101 B |
BIN
themes/pesterchum2.5/insolent.gif
Normal file
After Width: | Height: | Size: 97 B |
BIN
themes/pesterchum2.5/m.gif
Normal file
After Width: | Height: | Size: 79 B |
BIN
themes/pesterchum2.5/manipulative.gif
Normal file
After Width: | Height: | Size: 168 B |
BIN
themes/pesterchum2.5/mirthful.gif
Normal file
After Width: | Height: | Size: 125 B |
BIN
themes/pesterchum2.5/mystified.gif
Normal file
After Width: | Height: | Size: 95 B |
BIN
themes/pesterchum2.5/offline.gif
Normal file
After Width: | Height: | Size: 71 B |
BIN
themes/pesterchum2.5/op.gif
Normal file
After Width: | Height: | Size: 131 B |
BIN
themes/pesterchum2.5/pcbg.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
themes/pesterchum2.5/pccool.gif
Normal file
After Width: | Height: | Size: 131 B |
BIN
themes/pesterchum2.5/perky.gif
Normal file
After Width: | Height: | Size: 127 B |
BIN
themes/pesterchum2.5/pleasant.gif
Normal file
After Width: | Height: | Size: 94 B |
BIN
themes/pesterchum2.5/pranky.gif
Normal file
After Width: | Height: | Size: 92 B |
BIN
themes/pesterchum2.5/rancorous.gif
Normal file
After Width: | Height: | Size: 138 B |
BIN
themes/pesterchum2.5/relaxed.gif
Normal file
After Width: | Height: | Size: 125 B |
BIN
themes/pesterchum2.5/sleek.gif
Normal file
After Width: | Height: | Size: 134 B |
BIN
themes/pesterchum2.5/smooth.gif
Normal file
After Width: | Height: | Size: 86 B |
116
themes/pesterchum2.5/style.js
Normal file
|
@ -0,0 +1,116 @@
|
||||||
|
{"inherits": "pesterchum",
|
||||||
|
"main":
|
||||||
|
{"style": "",
|
||||||
|
"background-image": "$path/pcbg.png",
|
||||||
|
"size": [300,620],
|
||||||
|
"icon": "$path/trayicon.png",
|
||||||
|
"newmsgicon": "$path/trayicon2.png",
|
||||||
|
"windowtitle": "PESTERCHUM",
|
||||||
|
"close": { "image": "$path/x.gif",
|
||||||
|
"loc": [280, 2]},
|
||||||
|
"minimize": { "image": "$path/m.gif",
|
||||||
|
"loc": [260, 2]},
|
||||||
|
"chums": { "loc": [15, 70],
|
||||||
|
"size": [270, 300]
|
||||||
|
},
|
||||||
|
"mychumhandle": { "label":
|
||||||
|
{ "text": "CHUMHANDLE:",
|
||||||
|
"loc": [12,430],
|
||||||
|
"style": "color: black ;font:bold; font-family: 'Courier';"
|
||||||
|
},
|
||||||
|
"handle": { "loc": [35,440],
|
||||||
|
"size": [240, 21] },
|
||||||
|
"colorswatch": { "loc": [260,440],
|
||||||
|
"size": [30,30],
|
||||||
|
"text": "C" },
|
||||||
|
"currentMood": [15, 440]
|
||||||
|
},
|
||||||
|
"addchum": { "style": "background: rgba(255, 255, 0, 100%); border:2px solid #c48a00; font: bold; color: black; font-family:'Courier';",
|
||||||
|
"loc": [15,380],
|
||||||
|
"size": [90, 30],
|
||||||
|
"text": "ADD CHUM"
|
||||||
|
},
|
||||||
|
"pester": { "style": "background: rgba(255, 255, 0, 100%); border:2px solid #c48a00; font: bold; color: black; font-family:'Courier';",
|
||||||
|
"loc": [193,380],
|
||||||
|
"size": [89, 30],
|
||||||
|
"text": "PESTER!"
|
||||||
|
},
|
||||||
|
"block": { "style": "background: #F00000; border:2px solid #c48a00; font: bold; color: black; font-family:'Courier';",
|
||||||
|
"loc": [104,380],
|
||||||
|
"size": [89, 30],
|
||||||
|
"text": "BLOCK"
|
||||||
|
},
|
||||||
|
"moodlabel": { "style": "font:bold;font-family:'Courier';color:black;",
|
||||||
|
"loc": [20, 460],
|
||||||
|
"text": "MOODS:"
|
||||||
|
},
|
||||||
|
"moods": [
|
||||||
|
{ "style": "text-align:left; background:#ffff00;border:2px solid #c48a00;color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"selected": "text-align:left; background:white; border:2px solid #c48a00; color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"loc": [15, 480],
|
||||||
|
"size": [135, 30],
|
||||||
|
"text": "CHUMMY",
|
||||||
|
"icon": "$path/chummy.gif",
|
||||||
|
"mood": 0
|
||||||
|
},
|
||||||
|
|
||||||
|
{ "style": "text-align:left; background:#ffff00;border:2px solid #c48a00;color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"selected": "text-align:left; background:white; border:2px solid #c48a00; color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"loc": [15, 508],
|
||||||
|
"size": [135, 30],
|
||||||
|
"text": "PLEASANT",
|
||||||
|
"icon": "$path/pleasant.gif",
|
||||||
|
"mood": 3
|
||||||
|
},
|
||||||
|
|
||||||
|
{ "style": "text-align:left; background:#ffff00;border:2px solid #c48a00;color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"selected": "text-align:left; background:white; border:2px solid #c48a00; color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"loc": [15, 536],
|
||||||
|
"size": [135, 30],
|
||||||
|
"text": "DISTRAUGHT",
|
||||||
|
"icon": "$path/distraught.gif",
|
||||||
|
"mood": 4
|
||||||
|
},
|
||||||
|
|
||||||
|
{ "style": "text-align:left; background:#ffff00;border:2px solid #c48a00;color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"selected": "text-align:left; background:white; border:2px solid #c48a00; color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"loc": [148, 480],
|
||||||
|
"size": [135, 30],
|
||||||
|
"text": "PRANKY",
|
||||||
|
"icon": "$path/pranky.gif",
|
||||||
|
"mood": 5
|
||||||
|
},
|
||||||
|
|
||||||
|
{ "style": "text-align:left; background:#ffff00;border:2px solid #c48a00;color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"selected": "text-align:left; background:white; border:2px solid #c48a00; color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"loc": [148, 508],
|
||||||
|
"size": [135, 30],
|
||||||
|
"text": "SMOOTH",
|
||||||
|
"icon": "$path/smooth.gif",
|
||||||
|
"mood": 6
|
||||||
|
},
|
||||||
|
|
||||||
|
{ "style": "text-align:left; background:#f00000;border:2px solid #c48a00;color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"selected": "text-align:left; background:white; border:2px solid #c48a00; color: red; font-family:'Courier'; font:bold;",
|
||||||
|
"loc": [148, 536],
|
||||||
|
"size": [135, 30],
|
||||||
|
"text": "RANCOROUS",
|
||||||
|
"icon": "$path/rancorous.gif",
|
||||||
|
"mood": 1
|
||||||
|
},
|
||||||
|
|
||||||
|
{ "style": "text-align:center; border:2px solid #c48a00; background:black;color: white; font-family:'Courier'; font:bold;",
|
||||||
|
"selected": "text-align:left; background:white; border:2px solid #c48a00; padding: 5px;color: black; font-family:'Courier'; font:bold;",
|
||||||
|
"loc": [15, 564],
|
||||||
|
"size": [270, 30],
|
||||||
|
"text": "ABSCOND",
|
||||||
|
"icon": "$path/offline.gif",
|
||||||
|
"mood": 2
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
162
themes/pesterchum2.5/style.pcs
Normal file
|
@ -0,0 +1,162 @@
|
||||||
|
#PESTERCHUM STYLE
|
||||||
|
|
||||||
|
// The title will appear at the top of the window.
|
||||||
|
// Instead of a space in the name or title, use an '_'. It will come out as a space.
|
||||||
|
// The name and author will only be in the 'about' section.
|
||||||
|
// The name you will enter in the 'options' is the name of the folder this is in.
|
||||||
|
// The alarm only plays when a message is recieved.
|
||||||
|
// The mode can be set to 'regular' or 'trollian'.
|
||||||
|
|
||||||
|
name Pesterchum
|
||||||
|
title Pesterchum
|
||||||
|
author Grimlive95
|
||||||
|
alarm alarm.wav
|
||||||
|
mode regular
|
||||||
|
|
||||||
|
// Colors are in the format of 'red/green/blue/alpha', alpha being transparency.
|
||||||
|
// 255 is solid and 000 is invisible.
|
||||||
|
|
||||||
|
// MAIN WINDOW
|
||||||
|
|
||||||
|
// If you have a background image, set 'c 3' alpa to '000'.
|
||||||
|
// If your background image has a header on it, do the same with the title text color.
|
||||||
|
|
||||||
|
c 1 000 000 000 000 // title text
|
||||||
|
c 2 000 000 000 255 // chumhandle/ mood label text
|
||||||
|
c 3 000 000 000 255 // outside menu text
|
||||||
|
c 4 000 000 000 255 // inside menu text
|
||||||
|
c 5 255 181 000 000 // main background
|
||||||
|
c 6 255 181 000 255 // menu background
|
||||||
|
|
||||||
|
// BUTTONS
|
||||||
|
|
||||||
|
// Main buttons are the moods that aren't 'rancorous', the 'pester' and 'add chum' buttons.
|
||||||
|
// They are also the buttons on the Options, Quirks Manager, and Trollslum.
|
||||||
|
// Block buttons are the 'rancorous' and 'block' buttons.
|
||||||
|
|
||||||
|
c 7 196 135 000 255 // main button borders
|
||||||
|
c 8 196 135 000 255 // block button borders
|
||||||
|
c 9 196 135 000 255 // offline button border
|
||||||
|
|
||||||
|
c 10 255 255 000 255 // main buttons
|
||||||
|
c 11 240 000 000 255 // block buttons
|
||||||
|
c 12 000 000 000 255 // offline button
|
||||||
|
|
||||||
|
c 13 000 000 000 255 // main button text
|
||||||
|
c 14 000 000 000 255 // block button text
|
||||||
|
c 15 255 255 255 255 // offline button text
|
||||||
|
|
||||||
|
// CHUMROLL & CHUMHANDLE
|
||||||
|
|
||||||
|
c 16 255 255 000 255 // chumroll border
|
||||||
|
c 17 000 000 000 255 // chumroll background
|
||||||
|
c 18 150 150 150 255 // chumroll highlight
|
||||||
|
|
||||||
|
c 19 100 100 100 255 // chumroll usertext
|
||||||
|
c 20 255 255 255 255 // chumroll highlighted usertext
|
||||||
|
|
||||||
|
c 21 255 255 000 255 // my chumhandle border
|
||||||
|
c 22 000 000 000 255 // my chumhandle background
|
||||||
|
c 23 255 255 255 255 // my chumhandle usertext
|
||||||
|
|
||||||
|
// PESTER WINDOW
|
||||||
|
|
||||||
|
c 24 255 181 000 255 // pester window background
|
||||||
|
c 25 255 255 255 255 // pesterlog background
|
||||||
|
c 26 255 255 255 255 // text field background
|
||||||
|
c 27 000 000 000 255 // text field text color
|
||||||
|
|
||||||
|
c 28 196 135 000 255 // pesterwindow topbar
|
||||||
|
c 29 255 255 255 255 // pesterwindow top bar text
|
||||||
|
|
||||||
|
c 30 196 135 000 255 // pesterlog border
|
||||||
|
c 31 196 135 000 255 // text field border
|
||||||
|
|
||||||
|
// PESTER WINDOW BUTTONS
|
||||||
|
|
||||||
|
c 32 196 135 000 255 // main button borders
|
||||||
|
c 33 196 135 000 255 // block button border
|
||||||
|
|
||||||
|
c 34 255 255 000 255 // main buttons
|
||||||
|
c 35 255 000 000 255 // block button
|
||||||
|
|
||||||
|
c 36 000 000 000 255 // pesterwindow button text
|
||||||
|
c 37 000 000 000 255 // pesterwindow block button text
|
||||||
|
|
||||||
|
// OPTIONS WINDOW
|
||||||
|
|
||||||
|
c 38 255 181 000 255 // background
|
||||||
|
c 39 000 000 000 255 // text color
|
||||||
|
c 40 196 135 000 255 // button borders
|
||||||
|
c 41 255 255 000 255 // buttons
|
||||||
|
c 42 000 000 000 255 // button text
|
||||||
|
|
||||||
|
// QUIRKS MANAGER WINDOW
|
||||||
|
|
||||||
|
c 43 255 181 000 255 // background
|
||||||
|
c 44 000 000 000 255 // text color
|
||||||
|
c 45 196 135 000 255 // button borders
|
||||||
|
c 46 255 255 000 255 // buttons
|
||||||
|
c 47 000 000 000 255 // button text
|
||||||
|
|
||||||
|
// TROLLSLUM WINDOW
|
||||||
|
|
||||||
|
c 48 255 181 000 255 // background
|
||||||
|
c 49 000 000 000 255 // text color
|
||||||
|
c 50 196 135 000 255 // button borders
|
||||||
|
c 51 255 255 000 255 // buttons
|
||||||
|
c 52 000 000 000 255 // button text
|
||||||
|
|
||||||
|
// FONTS (In the format: Font_name MODE size)
|
||||||
|
|
||||||
|
// menu is for the top menu.
|
||||||
|
// tagandmood is for the CHUMHANDLE and MOOD labels.
|
||||||
|
// message is for the text field in the pester window.
|
||||||
|
// topbar is for the ::nameName:: text on the top of the pester window.
|
||||||
|
// tray is for your tray popups.
|
||||||
|
// debug is for the debug console.
|
||||||
|
|
||||||
|
f title Courier BOLD 14
|
||||||
|
f menu Courier BOLD 12
|
||||||
|
f buttons Courier BOLD 14
|
||||||
|
|
||||||
|
f tagandmood Courier BOLD 14
|
||||||
|
f chumroll Courier BOLD 14
|
||||||
|
f chumhandle Courier BOLD 14
|
||||||
|
|
||||||
|
f message Courier BOLD 13
|
||||||
|
f topbar Courier BOLD 13
|
||||||
|
|
||||||
|
f tray Courier BOLD 12
|
||||||
|
|
||||||
|
f debug Courier BOLD 13
|
||||||
|
|
||||||
|
// PESTERCHUM MOOD ICONS
|
||||||
|
|
||||||
|
i ichummy chummy.gif
|
||||||
|
i ipleasant pleasant.gif
|
||||||
|
i idistraught distraught.gif
|
||||||
|
i iunruly unruly.gif
|
||||||
|
i ismooth smooth.gif
|
||||||
|
i irancorous rancorous.gif
|
||||||
|
i ioffline offline.gif
|
||||||
|
|
||||||
|
// TROLLIAN MOOD ICONS
|
||||||
|
|
||||||
|
i iestatic estatic.gif
|
||||||
|
i irelaxed relaxed.gif
|
||||||
|
i idiscontent discontent.gif
|
||||||
|
i idevious devious.gif
|
||||||
|
i isleek sleek.gif
|
||||||
|
i idetestful detestful.gif
|
||||||
|
|
||||||
|
// ETC.
|
||||||
|
|
||||||
|
// iicon only appears in the about section.
|
||||||
|
// ticon will appear in both your tray and your pesterwindow.
|
||||||
|
|
||||||
|
i ticon trayicon2.png
|
||||||
|
i iicon abouticon.png
|
||||||
|
i iclose x.gif
|
||||||
|
i ihide m.gif
|
||||||
|
i ibg pcbg.png
|
BIN
themes/pesterchum2.5/trayicon.gif
Normal file
After Width: | Height: | Size: 116 B |
BIN
themes/pesterchum2.5/trayicon.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
themes/pesterchum2.5/trayicon2.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/pesterchum2.5/unruly.gif
Normal file
After Width: | Height: | Size: 99 B |
BIN
themes/pesterchum2.5/x.gif
Normal file
After Width: | Height: | Size: 105 B |