-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"[script.module.pyxbmct] 1.3.0" (#808)
- Loading branch information
Showing
43 changed files
with
1,985 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<addon id="script.module.pyxbmct" | ||
name="PyXBMCt" | ||
version="1.3.0" | ||
provider-name="Roman V.M."> | ||
<requires> | ||
<import addon="xbmc.python" version="2.25.0"/> | ||
<import addon="script.module.future" /> | ||
<import addon="script.module.kodi-six" /> | ||
</requires> | ||
<extension point="xbmc.python.module" library="lib" /> | ||
<extension point="xbmc.addon.metadata"> | ||
<platform>all</platform> | ||
<summary lang="en_GB">PyXBMCt UI framework</summary> | ||
<description lang="en_GB">PyXBMCt is a mini-framework for simple XBMC addon UI buliding. It is similar to PyQt and provides parent windows, a number of UI controls (widgets) and a grid layout manager to place controls.</description> | ||
<license>GNU GPL v.3</license> | ||
<forum>http://forum.xbmc.org/showthread.php?tid=174859</forum> | ||
<website>http://romanvm.github.io/script.module.pyxbmct/</website> | ||
<email>[email protected]</email> | ||
<source>https://github.com/romanvm/script.module.pyxbmct</source> | ||
<news>Added compatibility with Python 3</news> | ||
</extension> | ||
</addon> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[B]Version 1.3.0[/B] | ||
- Added compatibility with Python 3. | ||
[B]Version 1.2.0[/B] | ||
- Added Estuary-based window skin (default starting from Kodi 17.0). | ||
- Fixed broken Blank* classes. | ||
[B]Version 1.1.7[/B] | ||
- Minor code refactoring | ||
[B]Version 1.1.6[/B] | ||
- Minor code refactoring | ||
[B]Version 1.1.5[/B] | ||
- Added package-level imports. | ||
- Changed doctsrings to Sphinx-compatible | ||
- Private methods now start with _ | ||
[B]Version 1.1.4[/B] | ||
- Added the action code for mouse click. | ||
- Removed unused import. | ||
[B]Version 1.1.3[/B] | ||
- Updated addon.xml | ||
[B]Version 1.1.2[/B] | ||
- Initial release in the XBMC repo. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
""" | ||
PyXBMCt framework package | ||
PyXBMCt is a mini-framework for creating Kodi (XBMC) Python addons | ||
with arbitrary UI made of Controls - decendants of xbmcgui.Control class. | ||
The framework uses image textures from Kodi Confluence skin. | ||
Licence: GPL v.3 http://www.gnu.org/licenses/gpl.html | ||
""" | ||
|
||
from __future__ import absolute_import | ||
from .addonwindow import * | ||
from .addonskin import BaseSkin | ||
|
||
__all__ = [ | ||
'ALIGN_LEFT', | ||
'ALIGN_RIGHT', | ||
'ALIGN_CENTER_X', | ||
'ALIGN_CENTER_Y', | ||
'ALIGN_CENTER', | ||
'ALIGN_TRUNCATED', | ||
'ALIGN_JUSTIFY', | ||
'ACTION_PREVIOUS_MENU', | ||
'ACTION_NAV_BACK', | ||
'ACTION_MOVE_LEFT', | ||
'ACTION_MOVE_RIGHT', | ||
'ACTION_MOVE_UP', | ||
'ACTION_MOVE_DOWN', | ||
'ACTION_MOUSE_WHEEL_UP', | ||
'ACTION_MOUSE_WHEEL_DOWN', | ||
'ACTION_MOUSE_DRAG', | ||
'ACTION_MOUSE_MOVE', | ||
'ACTION_MOUSE_LEFT_CLICK', | ||
'AddonWindowError', | ||
'Label', | ||
'FadeLabel', | ||
'TextBox', | ||
'Image', | ||
'Button', | ||
'RadioButton', | ||
'Edit', | ||
'List', | ||
'Slider', | ||
'BlankFullWindow', | ||
'BlankDialogWindow', | ||
'AddonDialogWindow', | ||
'AddonFullWindow', | ||
'Skin', | ||
'skin', | ||
'BaseSkin' | ||
] |
Oops, something went wrong.