gtk-stream 0.2.2__py3-none-any.whl → 0.4__py3-none-any.whl
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.
- gtk_stream/application.py +4 -4
- gtk_stream/documents/__init__.py +6 -4
- gtk_stream/documents/classes/Box.py +15 -3
- gtk_stream/documents/classes/Button.py +4 -2
- gtk_stream/documents/classes/Document.py +17 -7
- gtk_stream/documents/classes/Dropdown.py +2 -1
- gtk_stream/documents/classes/Frame.py +13 -9
- gtk_stream/documents/classes/Grid.py +4 -8
- gtk_stream/documents/classes/Label.py +1 -0
- gtk_stream/documents/classes/Paned.py +1 -0
- gtk_stream/documents/classes/Picture.py +11 -0
- gtk_stream/documents/classes/ProgressBar.py +1 -0
- gtk_stream/documents/classes/Switch.py +2 -1
- gtk_stream/parser.py +25 -19
- gtk_stream/properties.py +15 -18
- {gtk_stream-0.2.2.dist-info → gtk_stream-0.4.dist-info}/METADATA +2 -1
- gtk_stream-0.4.dist-info/RECORD +24 -0
- gtk_stream-0.2.2.dist-info/RECORD +0 -23
- {gtk_stream-0.2.2.dist-info → gtk_stream-0.4.dist-info}/WHEEL +0 -0
- {gtk_stream-0.2.2.dist-info → gtk_stream-0.4.dist-info}/entry_points.txt +0 -0
- {gtk_stream-0.2.2.dist-info → gtk_stream-0.4.dist-info}/top_level.txt +0 -0
gtk_stream/application.py
CHANGED
@@ -2,7 +2,7 @@ import sys
|
|
2
2
|
|
3
3
|
from . import Gtk, GLib, Gdk
|
4
4
|
from .common import printEvent
|
5
|
-
from .properties import parse_property
|
5
|
+
from .properties import parse_property, get_prop_type
|
6
6
|
|
7
7
|
class GtkStreamApp(Gtk.Application):
|
8
8
|
def __init__(self, name = None, **kwargs):
|
@@ -70,16 +70,16 @@ class GtkStreamApp(Gtk.Application):
|
|
70
70
|
w = self.namedWidgets[id]
|
71
71
|
w.get_parent().remove(w)
|
72
72
|
self.run_when_idle(cb)
|
73
|
-
def
|
73
|
+
def insertWidget(self, to, document):
|
74
74
|
def cb():
|
75
75
|
if to in self.namedWidgets:
|
76
76
|
w = self.namedWidgets[to]
|
77
|
-
w.
|
77
|
+
w.insert_child(document)
|
78
78
|
else:
|
79
79
|
raise Exception(f"Error: unknown widget id '{to}'")
|
80
80
|
self.run_when_idle(cb)
|
81
81
|
def setProp(self, id, name, value):
|
82
82
|
def cb():
|
83
83
|
w = self.namedWidgets[id]
|
84
|
-
w.set_property(name, parse_property(name, value))
|
84
|
+
w.set_property(name, parse_property(get_prop_type(w.__class__, name), value))
|
85
85
|
self.run_when_idle(cb)
|
gtk_stream/documents/__init__.py
CHANGED
@@ -1,12 +1,14 @@
|
|
1
|
-
from .classes.Document import Document
|
1
|
+
from .classes.Document import Document, PseudoDocument
|
2
2
|
|
3
3
|
from .classes.Label import Label
|
4
|
-
from .classes.
|
4
|
+
from .classes.Picture import Picture
|
5
5
|
from .classes.ProgressBar import ProgressBar
|
6
|
+
|
7
|
+
from .classes.Button import Button, LinkButton
|
6
8
|
from .classes.Dropdown import Dropdown, Item
|
7
9
|
from .classes.Switch import Switch
|
8
10
|
|
9
|
-
from .classes.Box import Box
|
11
|
+
from .classes.Box import Box, BoxPrepend
|
10
12
|
from .classes.Paned import Paned
|
11
|
-
from .classes.Frame import Frame
|
13
|
+
from .classes.Frame import Frame, FrameLabel
|
12
14
|
from .classes.Grid import Grid, Cell
|
@@ -1,10 +1,22 @@
|
|
1
1
|
from ... import Gtk
|
2
|
-
from .. import Document
|
2
|
+
from .. import Document, PseudoDocument
|
3
|
+
|
4
|
+
class BoxPrepend(PseudoDocument):
|
5
|
+
def __init__(self, app, after = None):
|
6
|
+
super().__init__(app)
|
7
|
+
self.after = after
|
3
8
|
|
4
9
|
class Box(Document):
|
10
|
+
__g_class__ = Gtk.Box
|
5
11
|
def __init__(self, app, **kwargs):
|
6
12
|
super().__init__(app, **kwargs)
|
7
13
|
def render_raw(self):
|
8
14
|
return Gtk.Box()
|
9
|
-
def
|
10
|
-
|
15
|
+
def insert_child(self, w, d):
|
16
|
+
if isinstance(d, BoxPrepend):
|
17
|
+
if d.after != None:
|
18
|
+
w.insert_child_after(d.render(), self.app.namedWidgets[d.after])
|
19
|
+
else:
|
20
|
+
w.prepend(d.render())
|
21
|
+
else:
|
22
|
+
w.append(d.render())
|
@@ -3,21 +3,23 @@ from ...common import printEvent
|
|
3
3
|
from .. import Document
|
4
4
|
|
5
5
|
class Button(Document):
|
6
|
+
__g_class__ = Gtk.Button
|
6
7
|
def __init__(self, app, id, **kwargs):
|
7
8
|
super().__init__(app, id = id, **kwargs)
|
8
9
|
def render_raw(self):
|
9
10
|
button = Gtk.Button()
|
10
11
|
button.connect('clicked', printEvent('clicked', self.id))
|
11
12
|
return button
|
12
|
-
def
|
13
|
+
def insert_child(self, w, d):
|
13
14
|
w.set_child(d.render())
|
14
15
|
|
15
16
|
class LinkButton(Button):
|
17
|
+
__g_class__ = Gtk.LinkButton
|
16
18
|
def __init__(self, app, id, **kwargs):
|
17
19
|
super().__init__(app, id=id, **kwargs)
|
18
20
|
def render_raw(self):
|
19
21
|
button = Gtk.LinkButton()
|
20
22
|
button.connect('activate-link', printEvent('clicked', self.id, True))
|
21
23
|
return button
|
22
|
-
def
|
24
|
+
def insert_child(self, w, d):
|
23
25
|
w.set_child(d.render())
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import
|
2
|
-
from ...properties import parse_property
|
1
|
+
from ...properties import parse_property, get_prop_type
|
3
2
|
|
4
3
|
class Document:
|
4
|
+
__g_class__ = None
|
5
5
|
def __init__(self, app, id = None, **attrs):
|
6
6
|
self.id = id
|
7
7
|
self.app = app
|
8
|
-
self.props = { attr: parse_property(attr, val) for (attr, val) in attrs.items() }
|
8
|
+
self.props = { attr: parse_property(get_prop_type(self.__g_class__, attr), val) for (attr, val) in attrs.items() }
|
9
9
|
self.children = []
|
10
10
|
|
11
11
|
def add_child(self, child):
|
@@ -17,14 +17,24 @@ class Document:
|
|
17
17
|
def set_properties(self, w):
|
18
18
|
self.app.nameWidget(self.id, w)
|
19
19
|
for (p,v) in self.props.items():
|
20
|
+
# print(f"Setting property '{p}' to '{v}' in widget {self.__class__}", file=sys.stderr)
|
20
21
|
w.set_property(p, v)
|
21
|
-
w.
|
22
|
+
w.insert_child = lambda d: self.insert_child(w, d)
|
22
23
|
def render(self):
|
23
24
|
w = self.render_raw()
|
24
25
|
self.set_properties(w)
|
25
26
|
for child in self.children:
|
26
|
-
self.
|
27
|
+
self.insert_child(w, child)
|
27
28
|
return w
|
28
29
|
|
29
|
-
def
|
30
|
-
raise Exception("Unimplemented method '
|
30
|
+
def insert_child(self, w, child):
|
31
|
+
raise Exception("Unimplemented method 'insert_child'")
|
32
|
+
|
33
|
+
class PseudoDocument(Document):
|
34
|
+
def __init__(self, app):
|
35
|
+
super().__init__(app)
|
36
|
+
self.child = None
|
37
|
+
def add_child(self, child):
|
38
|
+
self.child = child
|
39
|
+
def render(self):
|
40
|
+
return self.child.render()
|
@@ -22,6 +22,7 @@ class _ItemObject(GObject.Object):
|
|
22
22
|
return self.value
|
23
23
|
|
24
24
|
class Dropdown(Document):
|
25
|
+
__g_class__ = Gtk.DropDown
|
25
26
|
def __init__(self, app, id, **kwargs):
|
26
27
|
super().__init__(app, id=id, **kwargs)
|
27
28
|
def render_raw(self):
|
@@ -44,5 +45,5 @@ class Dropdown(Document):
|
|
44
45
|
|
45
46
|
ret.connect('notify::selected-item', printEvent('selected', self.id, get_data = lambda w,_: w.get_selected_item().value))
|
46
47
|
return ret
|
47
|
-
def
|
48
|
+
def insert_child(self, w, d):
|
48
49
|
pass
|
@@ -1,14 +1,18 @@
|
|
1
1
|
from ... import Gtk
|
2
|
-
from .. import Document
|
2
|
+
from .. import Document, PseudoDocument
|
3
|
+
|
4
|
+
class FrameLabel(PseudoDocument):
|
5
|
+
def __init__(self, app):
|
6
|
+
super().__init__(app)
|
3
7
|
|
4
8
|
class Frame(Document):
|
5
|
-
|
9
|
+
__g_class__ = Gtk.Frame
|
10
|
+
def __init__(self, app, **kwargs):
|
6
11
|
super().__init__(app,**kwargs)
|
7
|
-
self.label = label
|
8
12
|
def render_raw(self):
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
13
|
+
return Gtk.Frame()
|
14
|
+
def insert_child(self, w, d):
|
15
|
+
if isinstance(d, FrameLabel):
|
16
|
+
w.set_label_widget(d.render())
|
17
|
+
else:
|
18
|
+
w.set_child(d.render())
|
@@ -1,24 +1,20 @@
|
|
1
1
|
from ... import Gtk
|
2
|
-
from .. import Document
|
2
|
+
from .. import Document, PseudoDocument
|
3
3
|
|
4
|
-
class Cell(
|
4
|
+
class Cell(PseudoDocument):
|
5
5
|
def __init__(self, app, x, y, w="1", h="1"):
|
6
6
|
super().__init__(app)
|
7
|
-
self.child = None
|
8
7
|
self.x = int(x)
|
9
8
|
self.y = int(y)
|
10
9
|
self.w = int(w)
|
11
10
|
self.h = int(h)
|
12
|
-
def render(self):
|
13
|
-
return self.child.render()
|
14
|
-
def add_child(self, child):
|
15
|
-
self.child = child
|
16
11
|
|
17
12
|
class Grid(Document):
|
13
|
+
__g_class__ = Gtk.Grid
|
18
14
|
def __init__(self, app, **kwargs):
|
19
15
|
super().__init__(app, **kwargs)
|
20
16
|
|
21
17
|
def render_raw(self):
|
22
18
|
return Gtk.Grid()
|
23
|
-
def
|
19
|
+
def insert_child(self, w, d):
|
24
20
|
w.attach(d.render(), d.x, d.y, d.w, d.h)
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import sys
|
2
|
+
from ... import Gtk
|
3
|
+
from .. import Document
|
4
|
+
|
5
|
+
class Picture(Document):
|
6
|
+
__g_class__ = Gtk.Picture
|
7
|
+
def __init__(self, app, src, **kwargs):
|
8
|
+
super().__init__(app, **kwargs)
|
9
|
+
self.src = src
|
10
|
+
def render_raw(self):
|
11
|
+
return Gtk.Picture.new_for_filename(self.src)
|
@@ -4,9 +4,10 @@ from .. import Document
|
|
4
4
|
from ...properties import parse_property
|
5
5
|
|
6
6
|
class Switch(Document):
|
7
|
+
__g_class__ = Gtk.Switch
|
7
8
|
def __init__(self, app, id, managed = "false", **kwargs):
|
8
9
|
super().__init__(app, id=id, **kwargs)
|
9
|
-
self.managed = parse_property('
|
10
|
+
self.managed = parse_property('gboolean', managed)
|
10
11
|
def render_raw(self):
|
11
12
|
ret = Gtk.Switch()
|
12
13
|
ret.connect('state-set', printEvent('switch', self.id,
|
gtk_stream/parser.py
CHANGED
@@ -1,27 +1,32 @@
|
|
1
1
|
import threading
|
2
2
|
import signal
|
3
|
+
import sys
|
3
4
|
import xml.sax as sax
|
4
5
|
|
5
6
|
from . import GLib
|
6
|
-
from .
|
7
|
+
from . import documents as docs
|
8
|
+
|
7
9
|
from .application import GtkStreamApp
|
8
10
|
|
9
11
|
class _Object:
|
10
12
|
pass
|
11
13
|
|
12
14
|
WIDGET_DOCUMENTS = {
|
13
|
-
'progress-bar': ProgressBar,
|
14
|
-
'label': Label,
|
15
|
-
'box': Box,
|
16
|
-
'
|
17
|
-
'
|
18
|
-
'
|
19
|
-
'
|
20
|
-
'
|
21
|
-
'
|
22
|
-
'
|
23
|
-
'
|
24
|
-
'
|
15
|
+
'progress-bar' : docs.ProgressBar,
|
16
|
+
'label' : docs.Label,
|
17
|
+
'box' : docs.Box,
|
18
|
+
'box-prepend' : docs.BoxPrepend,
|
19
|
+
'button' : docs.Button,
|
20
|
+
'dropdown' : docs.Dropdown,
|
21
|
+
'item' : docs.Item,
|
22
|
+
'paned' : docs.Paned,
|
23
|
+
'grid' : docs.Grid,
|
24
|
+
'cell' : docs.Cell,
|
25
|
+
'frame' : docs.Frame,
|
26
|
+
'frame-label' : docs.FrameLabel,
|
27
|
+
'link' : docs.LinkButton,
|
28
|
+
'switch' : docs.Switch,
|
29
|
+
'picture' : docs.Picture
|
25
30
|
}
|
26
31
|
|
27
32
|
class GtkStreamXMLHandler(sax.ContentHandler):
|
@@ -78,11 +83,12 @@ class GtkStreamXMLHandler(sax.ContentHandler):
|
|
78
83
|
match name:
|
79
84
|
case 'style':
|
80
85
|
style = _Object()
|
86
|
+
style.chars = []
|
81
87
|
def onchars(s):
|
82
|
-
style.chars
|
88
|
+
style.chars.append(s)
|
83
89
|
def leave():
|
84
90
|
self.transition_chars = self.ignore_chars
|
85
|
-
self.app.addStyle(style.chars)
|
91
|
+
self.app.addStyle(" ".join(style.chars))
|
86
92
|
self.transition_chars = onchars
|
87
93
|
self.transition_enter = self.transE_final
|
88
94
|
self.transition_leave = self.transL_tag('style', self.transE_message, leave_parent, leave)
|
@@ -123,14 +129,14 @@ class GtkStreamXMLHandler(sax.ContentHandler):
|
|
123
129
|
self.transition_enter = self.transE_final
|
124
130
|
self.transition_leave = self.transL_tag('set-prop', self.transE_message, leave_parent)
|
125
131
|
|
126
|
-
case '
|
127
|
-
if '
|
132
|
+
case 'insert':
|
133
|
+
if 'into' in attrs:
|
128
134
|
children = []
|
129
135
|
def leave():
|
130
136
|
for child in children:
|
131
|
-
self.app.
|
137
|
+
self.app.insertWidget(attrs['into'], child)
|
132
138
|
self.transition_enter = self.transE_addChild(lambda child: children.append(child))
|
133
|
-
self.transition_leave = self.transL_tag('
|
139
|
+
self.transition_leave = self.transL_tag('insert', self.transE_message, leave_parent, leave)
|
134
140
|
else:
|
135
141
|
raise Exception("Expected 'to' attribute of 'append' message")
|
136
142
|
|
gtk_stream/properties.py
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
import sys
|
2
|
+
|
1
3
|
from . import Gtk
|
2
4
|
|
3
5
|
def _parse_orientation_property(val):
|
@@ -19,23 +21,18 @@ def _parse_searchMode_property(val):
|
|
19
21
|
def _parse_css_classes_property(val):
|
20
22
|
return val.split()
|
21
23
|
|
22
|
-
|
23
|
-
'
|
24
|
-
'
|
25
|
-
'
|
26
|
-
'
|
27
|
-
'
|
28
|
-
'
|
29
|
-
'
|
30
|
-
'hexpand': _parse_boolean_property,
|
31
|
-
'hexpand-set': _parse_boolean_property,
|
32
|
-
'vexpand': _parse_boolean_property,
|
33
|
-
'vexpand-set': _parse_boolean_property,
|
34
|
-
'xalign': _parse_float_property,
|
35
|
-
'yalign': _parse_float_property,
|
36
|
-
'state': _parse_boolean_property,
|
37
|
-
'managed': _parse_boolean_property
|
24
|
+
_PARSE_TYPE_PROPERTY = {
|
25
|
+
'GStrv' : _parse_css_classes_property,
|
26
|
+
'GtkOrientation' : _parse_orientation_property,
|
27
|
+
'gdouble' : _parse_float_property,
|
28
|
+
'gfloat' : _parse_float_property,
|
29
|
+
'gint' : _parse_int_property,
|
30
|
+
'gboolean' : _parse_boolean_property,
|
31
|
+
'GtkStringFilterMatchMode' : _parse_searchMode_property
|
38
32
|
}
|
39
33
|
|
40
|
-
def parse_property(
|
41
|
-
|
34
|
+
def parse_property(prop_type, val):
|
35
|
+
# print(f"Parsing property '{val}' of type '{prop_type}'", file=sys.stderr)
|
36
|
+
return _PARSE_TYPE_PROPERTY.get(prop_type, lambda x: x)(val)
|
37
|
+
def get_prop_type(klass, prop):
|
38
|
+
return klass.find_property(prop).value_type.name
|
@@ -1,11 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: gtk-stream
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.4
|
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://coiffiem.gricad-pages.univ-grenoble-alpes.fr/gtk-stream/
|
7
7
|
Classifier: Development Status :: 4 - Beta
|
8
8
|
Classifier: Intended Audience :: Developers
|
9
|
+
Classifier: Environment :: X11 Applications :: GTK
|
9
10
|
Classifier: Topic :: Software Development :: User Interfaces
|
10
11
|
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
|
11
12
|
Requires-Dist: pygobject
|
@@ -0,0 +1,24 @@
|
|
1
|
+
gtk_stream/__init__.py,sha256=pDhUSN4AYNsP8_tilU1zmDCYdiv7ak4PE1TW0qFrDlg,99
|
2
|
+
gtk_stream/application.py,sha256=e_Xvi9xG1kCD979CnZyAZlFj0F8cDUf_9_Tad2bmirs,3111
|
3
|
+
gtk_stream/command_line.py,sha256=c2ghqIQB5hYxtCszss1z84yKoeRYvaMJJMi4aiTspWg,312
|
4
|
+
gtk_stream/common.py,sha256=sEw15nVw9SVp8eLVOB5Zj1JITVhUhCF0i3PSwpd8lis,590
|
5
|
+
gtk_stream/parser.py,sha256=KRzJ8yic5GcSnHUTo7vJ7HRvY7SILLrQMCC9oXOoErc,7028
|
6
|
+
gtk_stream/properties.py,sha256=jxd7f-9Xl2cfMQpXuVEc_0VrgjfWcRjES7EzfhjQ5Rw,1392
|
7
|
+
gtk_stream/documents/__init__.py,sha256=u_TgDNy8m_aNR9TYjfgxbFn1r9zASHy3LKYGCHz6pFE,456
|
8
|
+
gtk_stream/documents/classes/Box.py,sha256=-L0OSIcPCOYedJqD9zPpe183EJJkClboX1-3yGHmnL0,661
|
9
|
+
gtk_stream/documents/classes/Button.py,sha256=HeIYBix4qLVZc_a6Fs_MofyqxHeXbuZzsk_FneGLGb4,809
|
10
|
+
gtk_stream/documents/classes/Document.py,sha256=w3DXEmEvqRO8efJ5ovre_ToGylSVjN5C1vu81LiNl1U,1379
|
11
|
+
gtk_stream/documents/classes/Dropdown.py,sha256=-H344e7PsfwlnHT7eYBC35rVFkwVPSRJL3szU6w2A8U,1706
|
12
|
+
gtk_stream/documents/classes/Frame.py,sha256=xG8Wts9xBw0Kk7VKv_YHSq-zf2coeRRtQKQkdtJMXAc,502
|
13
|
+
gtk_stream/documents/classes/Grid.py,sha256=HG7zW6i4h9MMVnmBwvDI8A1mspmRk35HOc0lwGYxPQc,529
|
14
|
+
gtk_stream/documents/classes/Label.py,sha256=3KI9JyVaBhgw0RZ7jK1NEn6mZg7GG0LrZz-Y_NSS2Kg,303
|
15
|
+
gtk_stream/documents/classes/Paned.py,sha256=4xG_BWNlOn3Esd_99953OAMGmjWkdkGSHKJhnprtzG8,672
|
16
|
+
gtk_stream/documents/classes/Picture.py,sha256=fNtM3TLkr2au92m8MCJmE3fYvyajFgw1VxMfj7dYV3s,298
|
17
|
+
gtk_stream/documents/classes/ProgressBar.py,sha256=aegonsruP3jPGA6Wguk-MdIm5e3y-4Ug3q_cGglDcAA,246
|
18
|
+
gtk_stream/documents/classes/Switch.py,sha256=AQYK8MTwiB7vzJpv1JB8RTgWpW3bZ-EGY7_8MX-29TY,640
|
19
|
+
gtk_stream/documents/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
+
gtk_stream-0.4.dist-info/METADATA,sha256=ogiVCA8s4UOOvDsDpOII5rqSLgH55NI2fSU0pzpa_SE,555
|
21
|
+
gtk_stream-0.4.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
22
|
+
gtk_stream-0.4.dist-info/entry_points.txt,sha256=PmhKTb4MMQM6dN2HJcoDSMI8L0lZIFIlFn-BgdfPDpo,60
|
23
|
+
gtk_stream-0.4.dist-info/top_level.txt,sha256=vE9zfHGe9Ke7FSe0wBK2WYJI-BpcQNu6xDC3Cu5O8rQ,11
|
24
|
+
gtk_stream-0.4.dist-info/RECORD,,
|
@@ -1,23 +0,0 @@
|
|
1
|
-
gtk_stream/__init__.py,sha256=pDhUSN4AYNsP8_tilU1zmDCYdiv7ak4PE1TW0qFrDlg,99
|
2
|
-
gtk_stream/application.py,sha256=FZe4gQm5U0NGKKpi_Pp7VqxMtlbdbNJOYhcradzeSH4,3068
|
3
|
-
gtk_stream/command_line.py,sha256=c2ghqIQB5hYxtCszss1z84yKoeRYvaMJJMi4aiTspWg,312
|
4
|
-
gtk_stream/common.py,sha256=sEw15nVw9SVp8eLVOB5Zj1JITVhUhCF0i3PSwpd8lis,590
|
5
|
-
gtk_stream/parser.py,sha256=ZyCm1WKgKH6syqyUCY7ZyTW642LMpzQ_dDSNsvcNsLY,6797
|
6
|
-
gtk_stream/properties.py,sha256=9bYzvqmUq8EidtBDZdKupLgYM9ucIGyxmahcIp9TxT8,1542
|
7
|
-
gtk_stream/documents/__init__.py,sha256=vTgKiiafqqkSOIUwOIzO40VsSdCpHFnGOGRm8rRv9mY,378
|
8
|
-
gtk_stream/documents/classes/Box.py,sha256=6l9Z3GpC0Yv34jcGNTwlNLM5DpYyQ1iDihJsu1nxcy8,259
|
9
|
-
gtk_stream/documents/classes/Button.py,sha256=_NjoOrgdSVK4RQbh0V-QiZ_hfHasaMc9LQ2bf2egbe4,747
|
10
|
-
gtk_stream/documents/classes/Document.py,sha256=scoJrdHen_1WRuqn3aN6FJUesHXPZZyKwmPuPDjjbzI,985
|
11
|
-
gtk_stream/documents/classes/Dropdown.py,sha256=0Y9Sua_0Y_1F6bq4SQe1IDdJThhh5KVpepAExcPo8bg,1675
|
12
|
-
gtk_stream/documents/classes/Frame.py,sha256=p8OcgYBki1NWe2tveZfRwb0aQzRAeHQa9wHmpjgRJoc,391
|
13
|
-
gtk_stream/documents/classes/Grid.py,sha256=SRDbMhPZHV372KN7Qr9vvamH2xwr39eojeWmI0Rf8hE,622
|
14
|
-
gtk_stream/documents/classes/Label.py,sha256=BeL3zlf9YPuBGYS_YtHI0Q-MoVVLPao7kPIzPlwpyHY,275
|
15
|
-
gtk_stream/documents/classes/Paned.py,sha256=4jZGEebhv9pNzTyYbQ8lyx_nsKd9Nmr10703V5n_kNw,644
|
16
|
-
gtk_stream/documents/classes/ProgressBar.py,sha256=2_KCboyweGsqpBck61TvVGZYIsN8QVzAyqwwTDh-pDU,212
|
17
|
-
gtk_stream/documents/classes/Switch.py,sha256=uXmd_cZPZXkM31wYE4Z5d1-wuxqdt7wvS6qoE8ubaGc,610
|
18
|
-
gtk_stream/documents/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
-
gtk_stream-0.2.2.dist-info/METADATA,sha256=YSIp8eUE3NYgYYotyx-SJ4gJlXVsdUprK0MayqS6rCE,506
|
20
|
-
gtk_stream-0.2.2.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
21
|
-
gtk_stream-0.2.2.dist-info/entry_points.txt,sha256=PmhKTb4MMQM6dN2HJcoDSMI8L0lZIFIlFn-BgdfPDpo,60
|
22
|
-
gtk_stream-0.2.2.dist-info/top_level.txt,sha256=vE9zfHGe9Ke7FSe0wBK2WYJI-BpcQNu6xDC3Cu5O8rQ,11
|
23
|
-
gtk_stream-0.2.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|