gtk-stream 0.11.5__tar.gz → 0.11.6__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/PKG-INFO +1 -1
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/_version.py +2 -2
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/parser.py +4 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream.egg-info/PKG-INFO +1 -1
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/README.md +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk-stream +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/__init__.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/application.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/command_line.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/common.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/__init__.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Box.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Button.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Document.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Dropdown.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Entry.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/FlowBox.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Frame.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Grid.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Label.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Paned.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Picture.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/ProgressBar.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Scale.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/ScrolledWindow.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Separator.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Stack.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/Switch.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/documents/classes/__init__.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream/properties.py +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream.egg-info/SOURCES.txt +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream.egg-info/dependency_links.txt +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream.egg-info/entry_points.txt +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream.egg-info/requires.txt +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/gtk_stream.egg-info/top_level.txt +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/pyproject.toml +0 -0
- {gtk_stream-0.11.5 → gtk_stream-0.11.6}/setup.cfg +0 -0
@@ -22,6 +22,7 @@ import xml.sax as sax
|
|
22
22
|
|
23
23
|
from . import GLib
|
24
24
|
from . import documents as docs
|
25
|
+
from .properties import set_parse_prop
|
25
26
|
|
26
27
|
WIDGET_DOCUMENTS = {
|
27
28
|
'progress-bar' : docs.ProgressBar,
|
@@ -94,6 +95,9 @@ class GtkStreamXMLHandler(sax.ContentHandler):
|
|
94
95
|
def transE_conn(self, name, attrs):
|
95
96
|
match name:
|
96
97
|
case 'application':
|
98
|
+
for name, val in attrs.items():
|
99
|
+
set_parse_prop(self.app, self.app, name, val)
|
100
|
+
|
97
101
|
def on_activate(a):
|
98
102
|
a.hold()
|
99
103
|
self.app.connect('activate', on_activate)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|