XML unofficial Toga layout parser
Project description
togax-xml-layout-plugin
XML unofficial Toga layout parser
Installation
pip install togax-xml-layout-plugin
Reason
Give developers the ability to define layouts in XML outside code. Also giving the final users the possibility to customize app layout without changing code.
Example
layout.xml
<MainWindow>
<SplitContainer>
<ScrollContainer>
<Box style="direction: column; padding: 10;">
<!-- OptionContainer -->
<OptionContainer id="container">
<OptionItem text="1">
<Box style="direction: column; padding: 10;">
<!-- ImageView -->
<Label>ImageView</Label>
<ImageView>
<Image src="resources/srtranslator.png" />
</ImageView>
<!-- WebView -->
<Label>WebView</Label>
<WebView url="https://beeware.org" style=" height: 500;" />
<!-- Canvas -->
<Label>Canvas</Label>
<Canvas style="height: 100;" />
</Box>
</OptionItem>
<OptionItem text="2">
<Box style="direction: column; padding: 10;">
<!-- DetailedList -->
<Label>DetailedList</Label>
<DetailedList>
<accessors>
<item>title</item>
<item>subtitle</item>
<item>icon</item>
</accessors>
<data>
<item>
<title>HEY 1</title>
<subtitle>Selection Item 1</subtitle>
</item>
<item>
<title>HEY 2</title>
<subtitle>Selection Item 2</subtitle>
</item>
<item>
<title>HEY 3</title>
<subtitle>Selection Item 3</subtitle>
</item>
</data>
</DetailedList>
<!-- Table -->
<Label>Table</Label>
<Table>
<headings>
<item>name</item>
<item>Age</item>
</headings>
<data>
<item>
<name>HEY 1</name>
<age>Selection Item 1</age>
</item>
<item>
<name>HEY 2</name>
<age>Selection Item 2</age>
</item>
<item>
<name>HEY 3</name>
<age>Selection Item 3</age>
</item>
</data>
</Table>
</Box>
</OptionItem>
</OptionContainer>
</Box>
</ScrollContainer>
<ScrollContainer>
<Box style="direction: column; padding: 10;">
<!-- ActivityIndicator -->
<Label>ActivityIndicator</Label>
<ActivityIndicator running="true" />
<!-- ProgressBar -->
<Label>ProgressBar</Label>
<ProgressBar value="10" max="30" />
<!-- Divider -->
<Label>Divider</Label>
<Divider />
<!-- MultilineTextInput -->
<Label>MultilineTextInput</Label>
<MultilineTextInput
value="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." />
<!-- TextInput -->
<Label>TextInput</Label>
<TextInput value="Lorem ipsum dolor sit amet" />
<!-- NumberInput -->
<Label>NumberInput</Label>
<NumberInput value="1000" />
<!-- PasswordInput -->
<Label>PasswordInput</Label>
<PasswordInput />
<!-- Button -->
<Label>Button</Label>
<Button on_press=".test_button">Button</Button>
<!-- Slider -->
<Label>Slider</Label>
<Slider value="50" min="0" max="100" />
<!-- Switch -->
<Switch value="true">Switch</Switch>
<!-- Selection -->
<Label>Selection</Label>
<Selection>
<items>
<item>Selection Item 1</item>
<item>Selection Item 2</item>
<item>Selection Item 3</item>
</items>
</Selection>
<!-- Selection with dictionaries -->
<Label>Selection with dictionaries</Label>
<Selection>
<items>
<item>
<name>HEY 1</name>
<value>Selection Item 1</value>
</item>
<item>
<name>HEY 2</name>
<value>Selection Item 2</value>
</item>
<item>
<name>HEY 3</name>
<value>Selection Item 3</value>
</item>
</items>
</Selection>
</Box>
</ScrollContainer>
</SplitContainer>
</MainWindow>
app.py
import toga
from togax_xml_layout import parse_layout
class App(toga.App):
def startup(self):
with open(f"{self.paths.app}/resources/layout.xml", "r") as f:
self.main_window = parse_layout(self, f.read())
self.main_window.show()
def test_button(self, widget):
print("clicked")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file togax-xml-layout-plugin-0.0.3.tar.gz.
File metadata
- Download URL: togax-xml-layout-plugin-0.0.3.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
beaf0567db10a511c12b38ace87453c4dbabb2b525d5541af32f33a0fb15bf4c
|
|
| MD5 |
34d3a67099c9cb4d8dfe63d16d086dfd
|
|
| BLAKE2b-256 |
8cf61edd8e7d53eeafedeabd3e291022150f8f2f06f4aacac1626a3b41c92388
|
File details
Details for the file togax_xml_layout_plugin-0.0.3-py3-none-any.whl.
File metadata
- Download URL: togax_xml_layout_plugin-0.0.3-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea07bfbfa55423beb922c102f79aaccb6ac341533667ac2480c9ef7c15b427b1
|
|
| MD5 |
e015b0a6bd90b9a63138b08f34403bad
|
|
| BLAKE2b-256 |
e7c03515fb9ce5e0afd93fa48fdbc3b92cd6c738724030a6c25dc78b6dc637d5
|