Friday, 25 May 2018

Kivy Default Theme

I was looking at changing the default action_group icon, a small insignificant taskbar icon that can represent the presence of a popup menu.

Kivy 1.10 is lacking in functionality here as you have to replace the default graphical theme to enable you to use a new image.

After using Google to search for a solution I came across the normal problems... t.b.c

The Holy Grail

Not sure there is one, but always worth looking for that illusive goal.

My adventures in Python started when I realised how mature this language had become. I love OOP and the python implementation is clear and easy to follow. My preference in software development lies in GUI’s and I have experience in Qt, wxWidgets and Kivy the soon to be released PySide2 will allow all of these toolkit’s to be accessible from Python.

Classes

My favourite subject, seriously! A simple class class MyClass(): pass There are two types of class variables, class variables and Inst...