gtk-stream 0.8__tar.gz → 0.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. {gtk_stream-0.8 → gtk_stream-0.9}/PKG-INFO +1 -1
  2. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/_version.py +2 -2
  3. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/__init__.py +1 -1
  4. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Picture.py +8 -0
  5. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/parser.py +1 -0
  6. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream.egg-info/PKG-INFO +1 -1
  7. {gtk_stream-0.8 → gtk_stream-0.9}/README.md +0 -0
  8. {gtk_stream-0.8 → gtk_stream-0.9}/gtk-stream +0 -0
  9. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/__init__.py +0 -0
  10. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/application.py +0 -0
  11. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/command_line.py +0 -0
  12. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/common.py +0 -0
  13. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Box.py +0 -0
  14. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Button.py +0 -0
  15. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Document.py +0 -0
  16. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Dropdown.py +0 -0
  17. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Entry.py +0 -0
  18. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/FlowBox.py +0 -0
  19. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Frame.py +0 -0
  20. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Grid.py +0 -0
  21. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Label.py +0 -0
  22. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Paned.py +0 -0
  23. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/ProgressBar.py +0 -0
  24. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/ScrolledWindow.py +0 -0
  25. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Separator.py +0 -0
  26. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Stack.py +0 -0
  27. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/Switch.py +0 -0
  28. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/documents/classes/__init__.py +0 -0
  29. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream/properties.py +0 -0
  30. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream.egg-info/SOURCES.txt +0 -0
  31. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream.egg-info/dependency_links.txt +0 -0
  32. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream.egg-info/entry_points.txt +0 -0
  33. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream.egg-info/requires.txt +0 -0
  34. {gtk_stream-0.8 → gtk_stream-0.9}/gtk_stream.egg-info/top_level.txt +0 -0
  35. {gtk_stream-0.8 → gtk_stream-0.9}/pyproject.toml +0 -0
  36. {gtk_stream-0.8 → gtk_stream-0.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gtk-stream
3
- Version: 0.8
3
+ Version: 0.9
4
4
  Summary: A simple stream-oriented GUI protocol
5
5
  Author-email: Marc Coiffier <marc.coiffier@univ-grenoble-alpes.fr>
6
6
  Project-URL: Homepage, https://coiffier.net/projects/gtk-stream/
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.8'
16
- __version_tuple__ = version_tuple = (0, 8)
15
+ __version__ = version = '0.9'
16
+ __version_tuple__ = version_tuple = (0, 9)
@@ -1,7 +1,7 @@
1
1
  from .classes.Document import Document, PseudoDocument
2
2
 
3
3
  from .classes.Label import Label
4
- from .classes.Picture import Picture
4
+ from .classes.Picture import Picture, Icon
5
5
  from .classes.ProgressBar import ProgressBar
6
6
  from .classes.Separator import Separator
7
7
 
@@ -25,3 +25,11 @@ class Picture(Document):
25
25
  self.src = src
26
26
  def render_raw(self):
27
27
  return Gtk.Picture.new_for_filename(self.src)
28
+
29
+ class Icon(Document):
30
+ __g_class__ = Gtk.Image
31
+ def __init__(self, app, src, **kwargs):
32
+ super().__init__(app, **kwargs)
33
+ self.src = src
34
+ def render_raw(self):
35
+ return Gtk.Image.new_from_file(self.src)
@@ -43,6 +43,7 @@ WIDGET_DOCUMENTS = {
43
43
  'link' : docs.LinkButton,
44
44
  'switch' : docs.Switch,
45
45
  'picture' : docs.Picture,
46
+ 'icon' : docs.Icon,
46
47
  'separator' : docs.Separator,
47
48
  'scrolled-window' : docs.ScrolledWindow,
48
49
  'stack' : docs.Stack,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gtk-stream
3
- Version: 0.8
3
+ Version: 0.9
4
4
  Summary: A simple stream-oriented GUI protocol
5
5
  Author-email: Marc Coiffier <marc.coiffier@univ-grenoble-alpes.fr>
6
6
  Project-URL: Homepage, https://coiffier.net/projects/gtk-stream/
File without changes
File without changes
File without changes
File without changes
File without changes