pre-demo package
This commit is contained in:
parent
ba36bbad55
commit
8cf4004797
7 changed files with 10 additions and 7 deletions
4
TODO
4
TODO
|
@ -1,5 +1,9 @@
|
||||||
Features:
|
Features:
|
||||||
-- package
|
-- package
|
||||||
|
* CEASE shouldn't be sent if chum window is closed
|
||||||
|
* color is lost if you close window!
|
||||||
|
* switch focus to lineedit
|
||||||
|
* colors from ppl msging you not on your buddy list dont work
|
||||||
* menubar should pass on mouse move
|
* menubar should pass on mouse move
|
||||||
* User signon?
|
* User signon?
|
||||||
* Logging
|
* Logging
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
{"tabs": true, "chums": ["gamblingGenocider", "grimAuxiliatrix", "gardenGnostic", "ghostDunk", "spaceGhost", "aquaMarinist", "carcinoGeneticist", "tentacleTherapist", "gallowsCalibrator", "waitWhat", "captainCaveman"], "defaultprofile": "ghostDunk"}
|
{"tabs": true, "chums": []}
|
|
@ -881,6 +881,8 @@ class PesterTabWindow(QtGui.QFrame):
|
||||||
for c in self.convos.values():
|
for c in self.convos.values():
|
||||||
tabi = self.tabIndices[c.chum.handle]
|
tabi = self.tabIndices[c.chum.handle]
|
||||||
self.tabs.setTabIcon(tabi, c.chum.mood.icon(theme))
|
self.tabs.setTabIcon(tabi, c.chum.mood.icon(theme))
|
||||||
|
currenttabi = self.tabs.currentIndex()
|
||||||
|
if currenttabi >= 0:
|
||||||
currentHandle = unicode(self.tabs.tabText(self.tabs.currentIndex()))
|
currentHandle = unicode(self.tabs.tabText(self.tabs.currentIndex()))
|
||||||
self.setWindowIcon(self.convos[currentHandle].chum.mood.icon(theme))
|
self.setWindowIcon(self.convos[currentHandle].chum.mood.icon(theme))
|
||||||
self.defaultTabTextColor = self.getTabTextColor()
|
self.defaultTabTextColor = self.getTabTextColor()
|
||||||
|
@ -1118,6 +1120,7 @@ class PesterWindow(MovingWindow):
|
||||||
size = self.theme['main/size']
|
size = self.theme['main/size']
|
||||||
self.setGeometry(100, 100, size[0], size[1])
|
self.setGeometry(100, 100, size[0], size[1])
|
||||||
self.setWindowIcon(QtGui.QIcon(self.theme["main/icon"]))
|
self.setWindowIcon(QtGui.QIcon(self.theme["main/icon"]))
|
||||||
|
self.setWindowTitle("P3ST3RCHUM")
|
||||||
self.mainSS()
|
self.mainSS()
|
||||||
|
|
||||||
opts = QtGui.QAction("OPTIONS", self)
|
opts = QtGui.QAction("OPTIONS", self)
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
{"color": "#ff007f", "theme": "pesterchum", "quirks": [], "handle": "geniusBar"}
|
|
|
@ -1 +0,0 @@
|
||||||
{"color": "#ff00ff", "theme": "pesterchum", "quirks": [], "handle": "ghostDunk"}
|
|
|
@ -1 +0,0 @@
|
||||||
{"color": "#ffff00", "theme": "pesterchum", "quirks": [], "handle": "spaceGhost"}
|
|
|
@ -1 +0,0 @@
|
||||||
{"color": "#65cf91", "theme": "trollian", "quirks": [], "handle": "superGhost"}
|
|
Loading…
Reference in a new issue