mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2025-07-13 22:24:25 +02:00
fix vTerm paste from clipboard
This commit is contained in:
8
VizApp/build/debug/README.md
Normal file
8
VizApp/build/debug/README.md
Normal file
@ -0,0 +1,8 @@
|
||||
# GraphEditor
|
||||
|
||||
Generate graph from text using dot(viz) format
|
||||
|
||||
## Change logs
|
||||
|
||||
### v0.0.1-a
|
||||
* First version
|
24
VizApp/build/debug/main.css
Normal file
24
VizApp/build/debug/main.css
Normal file
@ -0,0 +1,24 @@
|
||||
|
||||
afx-app-window[data-id="graph_editor_win"] div[data-id="preview"]
|
||||
{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: white;
|
||||
}
|
||||
afx-app-window[data-id="graph_editor_win"] afx-button button
|
||||
{
|
||||
border-radius: 0;
|
||||
padding-top:2px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
afx-app-window[data-id="graph_editor_win"] afx-resizer{
|
||||
background-color: transparent;
|
||||
}
|
||||
afx-app-window[data-id="graph_editor_win"] div[data-id="btn-container"]{
|
||||
background-color: transparent;
|
||||
position: absolute;
|
||||
bottom:10px;
|
||||
right: 10px;
|
||||
display: inline;
|
||||
}
|
1
VizApp/build/debug/main.js
Normal file
1
VizApp/build/debug/main.js
Normal file
File diff suppressed because one or more lines are too long
14
VizApp/build/debug/package.json
Normal file
14
VizApp/build/debug/package.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"app":"VizApp",
|
||||
"name":"Viz editor",
|
||||
"description":"Create graph with dot language",
|
||||
"info":{
|
||||
"author": "Xuan Sang LE",
|
||||
"email": "xsang.le@gmail.com",
|
||||
"licences": "GPLv3"
|
||||
},
|
||||
"version":"0.0.1-a",
|
||||
"category":"Office",
|
||||
"iconclass": "fa fa-sitemap",
|
||||
"mimes":["text/.*graphviz"]
|
||||
}
|
13
VizApp/build/debug/scheme.html
Normal file
13
VizApp/build/debug/scheme.html
Normal file
@ -0,0 +1,13 @@
|
||||
<afx-app-window data-id="graph_editor_win" apptitle="__(Viz editor)" width="650" height="500">
|
||||
<afx-hbox>
|
||||
<div data-id="datarea"></div>
|
||||
<afx-resizer data-width="5" ></afx-resizer>
|
||||
<div data-id="preview">
|
||||
<div data-height="25" data-id="btn-container">
|
||||
<afx-button data-id="btn-zoomin" iconclass="fa fa-search-plus"></afx-button>
|
||||
<afx-button data-id="btn-zoomout" iconclass="fa fa-search-minus"></afx-button>
|
||||
<afx-button data-id="btn-reset" iconclass="fa fa-square-o"></afx-button>
|
||||
</div>
|
||||
</div>
|
||||
</afx-hbox>
|
||||
</afx-app-window>
|
BIN
VizApp/build/release/GraphEditor.zip
Normal file
BIN
VizApp/build/release/GraphEditor.zip
Normal file
Binary file not shown.
BIN
VizApp/build/release/VizApp.zip
Normal file
BIN
VizApp/build/release/VizApp.zip
Normal file
Binary file not shown.
Reference in New Issue
Block a user