update LuaPlayground + add Docify

This commit is contained in:
lxsang
2020-11-19 20:07:28 +00:00
parent e3862fb0f5
commit dbe567aad9
20 changed files with 160 additions and 357 deletions

View File

@ -0,0 +1,15 @@
# Docify
This is an example project, generated by AntOS Development Kit
## Howto
Use the CodePad command palette to access to the SDK functionalities:
1. Create new project
2. Init the project from the current folder located in side bar
3. Build and run the project
4. Release the project in zip package
## Set up build target
Open the `project.json` file from the current project tree and add/remove
build target entries. Save the file

View File

@ -0,0 +1,5 @@
afx-app-window[data-id = "Docify"] .header .label-text
{
font-weight: bold !important;
}

View File

@ -0,0 +1,15 @@
(function() {
var Docify;
Docify = class Docify extends this.OS.application.BaseApplication {
constructor(args) {
super("Docify", args);
}
main() {}
};
this.OS.register("Docify", Docify);
}).call(this);

View File

@ -0,0 +1,15 @@
{
"pkgname": "Docify",
"app":"Docify",
"name":"Docify",
"description":"Docify",
"info":{
"author": "",
"email": ""
},
"version":"0.0.1-a",
"category":"Other",
"iconclass":"fa fa-adn",
"mimes":["none"],
"locale": {}
}

View File

@ -0,0 +1,22 @@
<afx-app-window apptitle="Docify" width="700" height="400" data-id="Docify">
<afx-hbox >
<div data-width="5"></div>
<afx-vbox data-width="150">
<afx-label class="header" iconclass = "fa fa-bars" text="__(Categories)" data-height="22"></afx-label>
<afx-tree-view data-id="catview"></afx-tree-view>
<afx-hbox data-height="30">
<div data-width="5"></div>
<afx-button data-width = "25" text = "" iconclass = "fa fa-plus-circle"></afx-button>
<afx-button data-width = "25" text = "" iconclass = "fa fa-minus-circle"></afx-button>
<afx-button data-width = "25" text = "" iconclass = "fa fa-pencil-square-o"></afx-button>
</afx-hbox>
</afx-vbox>
<afx-resizer data-width="4"></afx-resizer>
<afx-vbox data-width = "300">
<afx-grid-view data-id="gridview"></afx-grid-view>
</afx-vbox>
<afx-resizer data-width="4"></afx-resizer>
<afx-vbox></afx-vbox>
</afx-hbox>
</afx-app-window>