fix vTerm paste from clipboard

This commit is contained in:
lxsang
2020-11-29 23:10:42 +01:00
parent ee3cfe92bd
commit 40ff4b4f05
22 changed files with 2732 additions and 6 deletions

View File

@ -0,0 +1,8 @@
# GraphEditor
Generate graph from text using dot(viz) format
## Change logs
### v0.0.1-a
* First version

View 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;
}

File diff suppressed because one or more lines are too long

View 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"]
}

View 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>