diff cagou/core/common.py @ 218:30be583dbabc

core (common): new SymbolLabel class to have a clickable area with a symbol and a label next to it.
author Goffi <goffi@goffi.org>
date Sun, 24 Jun 2018 22:09:49 +0200
parents 284cb5c467b0
children 24f8ab7c08be
line wrap: on
line diff
--- a/cagou/core/common.py	Sun Jun 24 22:08:57 2018 +0200
+++ b/cagou/core/common.py	Sun Jun 24 22:09:49 2018 +0200
@@ -93,6 +93,15 @@
     pass
 
 
+class SymbolLabel(ButtonBehavior, BoxLayout):
+    symbol = properties.StringProperty("")
+    text = properties.StringProperty("")
+    color = properties.ListProperty(C.COLOR_SEC)
+    bold = properties.BooleanProperty(True)
+    symbol_wid = properties.ObjectProperty()
+    label = properties.ObjectProperty()
+
+
 class ActionSymbol(Symbol):
     pass