diff engine/extensions/pychan/widgets.py @ 235:4a5e8e638b0d

Added the 'position_techinque' attr, so it can be used from XML. Factored out color properties and made them have value semantics.
author phoku@33b003aa-7bff-0310-803a-e67f0ece8222
date Tue, 24 Mar 2009 08:09:57 +0000
parents 2959ed343fde
children e476b6b7b2f0
line wrap: on
line diff
--- a/engine/extensions/pychan/widgets.py	Mon Mar 23 16:54:16 2009 +0000
+++ b/engine/extensions/pychan/widgets.py	Tue Mar 24 08:09:57 2009 +0000
@@ -12,6 +12,7 @@
 import events
 from exceptions import *
 from attrs import Attr,UnicodeAttr, PointAttr,ColorAttr,BoolAttr,IntAttr,FloatAttr
+from properties import ColorProperty
 
 def get_manager():
 	import pychan
@@ -43,6 +44,8 @@
 	def getWidth(self): return 0
 	def getHeight(self): return 0
 
+
+
 class Widget(object):
 	"""
 	This is the common widget base class, which provides most of the wrapping
@@ -98,7 +101,7 @@
 	ATTRIBUTES = [ Attr('name'), PointAttr('position'),
 		PointAttr('min_size'), PointAttr('size'), PointAttr('max_size'),
 		ColorAttr('base_color'),ColorAttr('background_color'),ColorAttr('foreground_color'),ColorAttr('selection_color'),
-		Attr('style'), Attr('font'),IntAttr('border_size')
+		Attr('style'), Attr('font'),IntAttr('border_size'),Attr('position_technique'),
 		]
 
 	DEFAULT_NAME = '__unnamed__'
@@ -605,33 +608,10 @@
 	def _getBorderSize(self): return self.real_widget.getFrameSize()
 	def _setBorderSize(self,size): self.real_widget.setFrameSize(size)
 
-	def _getBaseColor(self): return self.real_widget.getBaseColor()
-	def _setBaseColor(self,color):
-		if isinstance(color,type(())):
-			color = fife.Color(*color)
-		self.real_widget.setBaseColor(color)
-	base_color = property(_getBaseColor,_setBaseColor)
-
-	def _getBackgroundColor(self): return self.real_widget.getBackgroundColor()
-	def _setBackgroundColor(self,color):
-		if isinstance(color,type(())):
-			color = fife.Color(*color)
-		self.real_widget.setBackgroundColor(color)
-	background_color = property(_getBackgroundColor,_setBackgroundColor)
-
-	def _getForegroundColor(self): return self.real_widget.getForegroundColor()
-	def _setForegroundColor(self,color):
-		if isinstance(color,type(())):
-			color = fife.Color(*color)
-		self.real_widget.setForegroundColor(color)
-	foreground_color = property(_getForegroundColor,_setForegroundColor)
-
-	def _getSelectionColor(self): return self.real_widget.getSelectionColor()
-	def _setSelectionColor(self,color):
-		if isinstance(color,type(())):
-			color = fife.Color(*color)
-		self.real_widget.setSelectionColor(color)
-	selection_color = property(_getSelectionColor,_setSelectionColor)
+	base_color = ColorProperty("BaseColor")
+	background_color = ColorProperty("BackgroundColor")
+	foreground_color = ColorProperty("ForegroundColor")
+	selection_color = ColorProperty("SelectionColor")
 
 	def _getStyle(self): return self._style
 	def _setStyle(self,style):