Jump to content

[UI]TextLink (botón de texto sin botón)


Shang

Mensajes recomendados

Hola zoneros, hace tiempo que no posteo una mierda así q me decidí a postear este object que hice hace un ratillo. Se trata de un texto que actua como botón pero sólo es texto.

 

875dbfdab37a4a4e8f019173b9dedfef.gif

 

Código py:

class TextLink(ui.Window):

	## COLORS
	NORMAL_COLOR = grp.GenerateColor(0.7607, 0.7607, 0.7607, 1.0)
	OVER_COLOR = 0xff1457c7
	DOWN_COLOR = 0xff0f3e8c
	
	def __init__(self):
		ui.Window.__init__(self)
		
		self.eventFunc = None
		self.eventArgs = None
		
		self.text = ui.TextLine()
		self.text.SetParent(self)
		self.text.Show()

		self.underline = ui.Line()
		self.underline.SetParent(self)
		self.underline.SetColor(self.NORMAL_COLOR)
		self.underline.Hide()
		
	def __del__(self):
		ui.Window.__del__(self)
		
	def SetText(self, text):
		self.text.SetText(text)
		self.SetSize(self.text.GetTextSize()[0], self.text.GetTextSize()[1])
		self.underline.SetPosition(0, self.text.GetTextSize()[1])
		self.underline.SetWindowHorizontalAlignCenter()
		self.underline.SetSize(self.text.GetTextSize()[0], 0)
		
	def OnMouseOverIn(self):
		self.text.SetPackedFontColor(self.OVER_COLOR)
		self.underline.SetColor(self.OVER_COLOR)
		self.underline.Show()
		
	def OnMouseOverOut(self):
		self.text.SetPackedFontColor(self.NORMAL_COLOR)
		self.underline.Hide()
		
	def OnMouseLeftButtonDown(self):
		self.text.SetPackedFontColor(self.DOWN_COLOR)
		self.underline.SetColor(self.DOWN_COLOR)
		self.underline.Show()
		
	def OnMouseLeftButtonUp(self):
		if self.eventFunc:
			apply(self.eventFunc, self.eventArgs)
		self.OnMouseOverOut()
			
	def SetEvent(self, event, *args):
		self.eventFunc = event
		self.eventArgs = args
Enlace para comentar
Compartir en otros sitios

  • 9 months later...

 

Hola zoneros, hace tiempo que no posteo una mierda así q me decidí a postear este object que hice hace un ratillo. Se trata de un texto que actua como botón pero sólo es texto.

 

875dbfdab37a4a4e8f019173b9dedfef.gif

 

Código py:

class TextLink(ui.Window):

	## COLORS
	NORMAL_COLOR = grp.GenerateColor(0.7607, 0.7607, 0.7607, 1.0)
	OVER_COLOR = 0xff1457c7
	DOWN_COLOR = 0xff0f3e8c
	
	def __init__(self):
		ui.Window.__init__(self)
		
		self.eventFunc = None
		self.eventArgs = None
		
		self.text = ui.TextLine()
		self.text.SetParent(self)
		self.text.Show()

		self.underline = ui.Line()
		self.underline.SetParent(self)
		self.underline.SetColor(self.NORMAL_COLOR)
		self.underline.Hide()
		
	def __del__(self):
		ui.Window.__del__(self)
		
	def SetText(self, text):
		self.text.SetText(text)
		self.SetSize(self.text.GetTextSize()[0], self.text.GetTextSize()[1])
		self.underline.SetPosition(0, self.text.GetTextSize()[1])
		self.underline.SetWindowHorizontalAlignCenter()
		self.underline.SetSize(self.text.GetTextSize()[0], 0)
		
	def OnMouseOverIn(self):
		self.text.SetPackedFontColor(self.OVER_COLOR)
		self.underline.SetColor(self.OVER_COLOR)
		self.underline.Show()
		
	def OnMouseOverOut(self):
		self.text.SetPackedFontColor(self.NORMAL_COLOR)
		self.underline.Hide()
		
	def OnMouseLeftButtonDown(self):
		self.text.SetPackedFontColor(self.DOWN_COLOR)
		self.underline.SetColor(self.DOWN_COLOR)
		self.underline.Show()
		
	def OnMouseLeftButtonUp(self):
		if self.eventFunc:
			apply(self.eventFunc, self.eventArgs)
		self.OnMouseOverOut()
			
	def SetEvent(self, event, *args):
		self.eventFunc = event
		self.eventArgs = args

 

Gracias por el aporte. AÚN espero el registro en esa interfaz....

 

Att. EW2

Enlace para comentar
Compartir en otros sitios

  • 2 weeks later...

Unirse a la conversación

Puedes publicar ahora y registrarte más tarde. Si tienes una cuenta, regístrate para publicar con su cuenta.

Guest
Responder a este tema...

×   Has pegado contenido con formato .   Eliminar formato

  Only 75 emoji are allowed.

×   Tu enlace se ha incorporado automáticamente.   Mostrar un enlace en su lugar

×   Se ha restaurado el contenido anterior. .   Borrar editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recientemente navegando por este tema   0 miembros

    • No hay usuarios registrados visitando esta página.
×
×
  • Crear nuevo...