Initial upload
114
.gitignore
vendored
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
## Java
|
||||||
|
|
||||||
|
*.class
|
||||||
|
*.war
|
||||||
|
*.ear
|
||||||
|
hs_err_pid*
|
||||||
|
|
||||||
|
## Robovm
|
||||||
|
/ios/robovm-build/
|
||||||
|
|
||||||
|
## GWT
|
||||||
|
/html/war/
|
||||||
|
/html/gwt-unitCache/
|
||||||
|
.apt_generated/
|
||||||
|
.gwt/
|
||||||
|
gwt-unitCache/
|
||||||
|
www-test/
|
||||||
|
.gwt-tmp/
|
||||||
|
|
||||||
|
## Android Studio and Intellij and Android in general
|
||||||
|
/android/libs/armeabi/
|
||||||
|
/android/libs/armeabi-v7a/
|
||||||
|
/android/libs/arm64-v8a/
|
||||||
|
/android/libs/x86/
|
||||||
|
/android/libs/x86_64/
|
||||||
|
/android/gen/
|
||||||
|
.idea/
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
/android/out/
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
|
||||||
|
## Eclipse
|
||||||
|
|
||||||
|
.classpath
|
||||||
|
.project
|
||||||
|
.metadata/
|
||||||
|
/android/bin/
|
||||||
|
/core/bin/
|
||||||
|
/desktop/bin/
|
||||||
|
/html/bin/
|
||||||
|
/ios/bin/
|
||||||
|
/ios-moe/bin/
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*~.nib
|
||||||
|
.settings/
|
||||||
|
.loadpath
|
||||||
|
.externalToolBuilders/
|
||||||
|
*.launch
|
||||||
|
|
||||||
|
## NetBeans
|
||||||
|
|
||||||
|
/nbproject/private/
|
||||||
|
/android/nbproject/private/
|
||||||
|
/core/nbproject/private/
|
||||||
|
/desktop/nbproject/private/
|
||||||
|
/html/nbproject/private/
|
||||||
|
/ios/nbproject/private/
|
||||||
|
/ios-moe/nbproject/private/
|
||||||
|
|
||||||
|
/build/
|
||||||
|
/android/build/
|
||||||
|
/core/build/
|
||||||
|
/desktop/build/
|
||||||
|
/html/build/
|
||||||
|
/ios/build/
|
||||||
|
/ios-moe/build/
|
||||||
|
|
||||||
|
/nbbuild/
|
||||||
|
/android/nbbuild/
|
||||||
|
/core/nbbuild/
|
||||||
|
/desktop/nbbuild/
|
||||||
|
/html/nbbuild/
|
||||||
|
/ios/nbbuild/
|
||||||
|
/ios-moe/nbbuild/
|
||||||
|
|
||||||
|
/dist/
|
||||||
|
/android/dist/
|
||||||
|
/core/dist/
|
||||||
|
/desktop/dist/
|
||||||
|
/html/dist/
|
||||||
|
/ios/dist/
|
||||||
|
/ios-moe/dist/
|
||||||
|
|
||||||
|
/nbdist/
|
||||||
|
/android/nbdist/
|
||||||
|
/core/nbdist/
|
||||||
|
/desktop/nbdist/
|
||||||
|
/html/nbdist/
|
||||||
|
/ios/nbdist/
|
||||||
|
/ios-moe/nbdist/
|
||||||
|
|
||||||
|
nbactions.xml
|
||||||
|
nb-configuration.xml
|
||||||
|
|
||||||
|
## Gradle
|
||||||
|
|
||||||
|
/local.properties
|
||||||
|
.gradle/
|
||||||
|
gradle-app.setting
|
||||||
|
/build/
|
||||||
|
/android/build/
|
||||||
|
/core/build/
|
||||||
|
/desktop/build/
|
||||||
|
/html/build/
|
||||||
|
/ios/build/
|
||||||
|
/ios-moe/build/
|
||||||
|
|
||||||
|
## OS Specific
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
68
build.gradle
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
mavenLocal()
|
||||||
|
mavenCentral()
|
||||||
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
||||||
|
jcenter()
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.6'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
allprojects {
|
||||||
|
apply plugin: "eclipse"
|
||||||
|
apply plugin: "idea"
|
||||||
|
|
||||||
|
version = '1.0'
|
||||||
|
ext {
|
||||||
|
appName = "Moment"
|
||||||
|
gdxVersion = '1.9.6'
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenLocal()
|
||||||
|
mavenCentral()
|
||||||
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
||||||
|
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
project(":desktop") {
|
||||||
|
apply plugin: "java"
|
||||||
|
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile project(":core")
|
||||||
|
compile "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
|
||||||
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
project(":html") {
|
||||||
|
apply plugin: "gwt"
|
||||||
|
apply plugin: "war"
|
||||||
|
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile project(":core")
|
||||||
|
compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
|
||||||
|
compile "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
|
||||||
|
compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
project(":core") {
|
||||||
|
apply plugin: "java"
|
||||||
|
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
||||||
|
compile "com.badlogicgames.gdx:gdx-ai:1.8.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.eclipse.doLast {
|
||||||
|
delete ".project"
|
||||||
|
}
|
||||||
BIN
core/assets/maps/map.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
328
core/assets/sprites/moment.atlas
Normal file
@@ -0,0 +1,328 @@
|
|||||||
|
|
||||||
|
moment.png
|
||||||
|
size: 256,32
|
||||||
|
format: RGBA8888
|
||||||
|
filter: Nearest,Nearest
|
||||||
|
repeat: none
|
||||||
|
block
|
||||||
|
rotate: false
|
||||||
|
xy: 57, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
bullet
|
||||||
|
rotate: false
|
||||||
|
xy: 67, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
coal1
|
||||||
|
rotate: false
|
||||||
|
xy: 77, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
coal2
|
||||||
|
rotate: false
|
||||||
|
xy: 87, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
coal3
|
||||||
|
rotate: false
|
||||||
|
xy: 97, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
coaldrill
|
||||||
|
rotate: false
|
||||||
|
xy: 107, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
conveyor
|
||||||
|
rotate: false
|
||||||
|
xy: 117, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
conveyormove
|
||||||
|
rotate: false
|
||||||
|
xy: 127, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
core
|
||||||
|
rotate: false
|
||||||
|
xy: 137, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
dirt1
|
||||||
|
rotate: false
|
||||||
|
xy: 147, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
dirt2
|
||||||
|
rotate: false
|
||||||
|
xy: 157, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
dirt3
|
||||||
|
rotate: false
|
||||||
|
xy: 167, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
dirtblock
|
||||||
|
rotate: false
|
||||||
|
xy: 177, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
doubleturret
|
||||||
|
rotate: false
|
||||||
|
xy: 1, 1
|
||||||
|
size: 10, 10
|
||||||
|
orig: 10, 10
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
drill
|
||||||
|
rotate: false
|
||||||
|
xy: 187, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
furnace
|
||||||
|
rotate: false
|
||||||
|
xy: 197, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
smelter
|
||||||
|
rotate: false
|
||||||
|
xy: 197, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
grass
|
||||||
|
rotate: false
|
||||||
|
xy: 207, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
healturret
|
||||||
|
rotate: false
|
||||||
|
xy: 13, 1
|
||||||
|
size: 10, 10
|
||||||
|
orig: 10, 10
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
icon-coal
|
||||||
|
rotate: false
|
||||||
|
xy: 217, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
icon-iron
|
||||||
|
rotate: false
|
||||||
|
xy: 227, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
icon-steel
|
||||||
|
rotate: false
|
||||||
|
xy: 237, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
icon-stone
|
||||||
|
rotate: false
|
||||||
|
xy: 247, 23
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
iron1
|
||||||
|
rotate: false
|
||||||
|
xy: 25, 11
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
iron2
|
||||||
|
rotate: false
|
||||||
|
xy: 25, 1
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
iron3
|
||||||
|
rotate: false
|
||||||
|
xy: 35, 11
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
irondrill
|
||||||
|
rotate: false
|
||||||
|
xy: 35, 1
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
ironwall
|
||||||
|
rotate: false
|
||||||
|
xy: 45, 11
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
laser
|
||||||
|
rotate: false
|
||||||
|
xy: 55, 7
|
||||||
|
size: 1, 12
|
||||||
|
orig: 1, 12
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
laserend
|
||||||
|
rotate: false
|
||||||
|
xy: 1, 13
|
||||||
|
size: 18, 18
|
||||||
|
orig: 18, 18
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
machineturret
|
||||||
|
rotate: false
|
||||||
|
xy: 21, 21
|
||||||
|
size: 10, 10
|
||||||
|
orig: 10, 10
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
mech1
|
||||||
|
rotate: false
|
||||||
|
xy: 45, 1
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
player
|
||||||
|
rotate: false
|
||||||
|
xy: 58, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
router
|
||||||
|
rotate: false
|
||||||
|
xy: 68, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
shadow
|
||||||
|
rotate: false
|
||||||
|
xy: 33, 21
|
||||||
|
size: 10, 10
|
||||||
|
orig: 10, 10
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
steelconveyor
|
||||||
|
rotate: false
|
||||||
|
xy: 78, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
steelconveyormove
|
||||||
|
rotate: false
|
||||||
|
xy: 88, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
stone
|
||||||
|
rotate: false
|
||||||
|
xy: 98, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
stone1
|
||||||
|
rotate: false
|
||||||
|
xy: 108, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
stone2
|
||||||
|
rotate: false
|
||||||
|
xy: 118, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
stone3
|
||||||
|
rotate: false
|
||||||
|
xy: 128, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
stoneblock
|
||||||
|
rotate: false
|
||||||
|
xy: 138, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
stonedrill
|
||||||
|
rotate: false
|
||||||
|
xy: 148, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
stonedrillhead
|
||||||
|
rotate: false
|
||||||
|
xy: 148, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
stonewall
|
||||||
|
rotate: false
|
||||||
|
xy: 158, 13
|
||||||
|
size: 8, 8
|
||||||
|
orig: 8, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
turret
|
||||||
|
rotate: false
|
||||||
|
xy: 45, 21
|
||||||
|
size: 10, 10
|
||||||
|
orig: 10, 10
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
BIN
core/assets/sprites/moment.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
745
core/assets/ui/backup/uiskin.atlas
Normal file
@@ -0,0 +1,745 @@
|
|||||||
|
|
||||||
|
uiskin.png
|
||||||
|
size: 512,512
|
||||||
|
format: RGBA8888
|
||||||
|
filter: Nearest,Nearest
|
||||||
|
repeat: none
|
||||||
|
border
|
||||||
|
rotate: false
|
||||||
|
xy: 90, 65
|
||||||
|
size: 3, 3
|
||||||
|
split: 1, 1, 1, 1
|
||||||
|
orig: 3, 3
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
border-circle
|
||||||
|
rotate: false
|
||||||
|
xy: 256, 85
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
border-circle-error
|
||||||
|
rotate: false
|
||||||
|
xy: 285, 85
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
border-dark-blue
|
||||||
|
rotate: false
|
||||||
|
xy: 407, 85
|
||||||
|
size: 3, 3
|
||||||
|
split: 1, 1, 1, 1
|
||||||
|
orig: 3, 3
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
border-error
|
||||||
|
rotate: false
|
||||||
|
xy: 130, 3
|
||||||
|
size: 3, 3
|
||||||
|
split: 1, 1, 1, 1
|
||||||
|
orig: 3, 3
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
button
|
||||||
|
rotate: false
|
||||||
|
xy: 372, 41
|
||||||
|
size: 24, 40
|
||||||
|
split: 10, 10, 10, 8
|
||||||
|
pad: 8, 8, 2, 2
|
||||||
|
orig: 24, 40
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
button-blue
|
||||||
|
rotate: false
|
||||||
|
xy: 272, 14
|
||||||
|
size: 24, 40
|
||||||
|
split: 10, 10, 10, 8
|
||||||
|
pad: 8, 8, 2, 2
|
||||||
|
orig: 24, 40
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
button-down
|
||||||
|
rotate: false
|
||||||
|
xy: 272, 14
|
||||||
|
size: 24, 40
|
||||||
|
split: 10, 10, 10, 8
|
||||||
|
pad: 8, 8, 2, 2
|
||||||
|
orig: 24, 40
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
button-blue-down
|
||||||
|
rotate: false
|
||||||
|
xy: 222, 14
|
||||||
|
size: 24, 40
|
||||||
|
split: 10, 10, 10, 8
|
||||||
|
pad: 8, 8, 2, 2
|
||||||
|
orig: 24, 40
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
button-blue-over
|
||||||
|
rotate: false
|
||||||
|
xy: 247, 14
|
||||||
|
size: 24, 40
|
||||||
|
split: 10, 10, 10, 8
|
||||||
|
pad: 8, 8, 2, 2
|
||||||
|
orig: 24, 40
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
button-over
|
||||||
|
rotate: false
|
||||||
|
xy: 297, 15
|
||||||
|
size: 24, 40
|
||||||
|
split: 10, 10, 10, 8
|
||||||
|
pad: 8, 8, 2, 2
|
||||||
|
orig: 24, 40
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
button-red
|
||||||
|
rotate: false
|
||||||
|
xy: 322, 15
|
||||||
|
size: 24, 40
|
||||||
|
split: 10, 10, 10, 8
|
||||||
|
pad: 8, 8, 2, 2
|
||||||
|
orig: 24, 40
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
button-window-bg
|
||||||
|
rotate: false
|
||||||
|
xy: 347, 15
|
||||||
|
size: 24, 40
|
||||||
|
split: 10, 10, 10, 8
|
||||||
|
pad: 8, 8, 2, 2
|
||||||
|
orig: 24, 40
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
check-off
|
||||||
|
rotate: false
|
||||||
|
xy: 314, 85
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
textfield
|
||||||
|
rotate: false
|
||||||
|
xy: 314, 85
|
||||||
|
size: 28, 28
|
||||||
|
split: 2, 2, 2, 2
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
vis-check
|
||||||
|
rotate: false
|
||||||
|
xy: 314, 85
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
check-on
|
||||||
|
rotate: false
|
||||||
|
xy: 343, 85
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
color-picker-bar-selector
|
||||||
|
rotate: false
|
||||||
|
xy: 496, 85
|
||||||
|
size: 14, 28
|
||||||
|
orig: 14, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
color-picker-cross
|
||||||
|
rotate: false
|
||||||
|
xy: 411, 47
|
||||||
|
size: 10, 10
|
||||||
|
orig: 10, 10
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
color-picker-selector-horizontal
|
||||||
|
rotate: false
|
||||||
|
xy: 22, 27
|
||||||
|
size: 6, 1
|
||||||
|
orig: 6, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
color-picker-selector-vertical
|
||||||
|
rotate: false
|
||||||
|
xy: 1, 1
|
||||||
|
size: 1, 6
|
||||||
|
orig: 1, 6
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
cursor
|
||||||
|
rotate: false
|
||||||
|
xy: 97, 30
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
default
|
||||||
|
rotate: false
|
||||||
|
xy: 1, 279
|
||||||
|
size: 510, 232
|
||||||
|
orig: 512, 256
|
||||||
|
offset: 0, 24
|
||||||
|
index: -1
|
||||||
|
default-pane
|
||||||
|
rotate: false
|
||||||
|
xy: 84, 65
|
||||||
|
size: 5, 3
|
||||||
|
split: 1, 1, 1, 1
|
||||||
|
orig: 5, 3
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
default-pane-no-border
|
||||||
|
rotate: false
|
||||||
|
xy: 397, 45
|
||||||
|
size: 1, 1
|
||||||
|
split: 0, 0, 0, 0
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
default-select
|
||||||
|
rotate: false
|
||||||
|
xy: 29, 65
|
||||||
|
size: 54, 48
|
||||||
|
split: 8, 32, 0, 48
|
||||||
|
orig: 54, 48
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
default-select-selection
|
||||||
|
rotate: false
|
||||||
|
xy: 134, 3
|
||||||
|
size: 3, 3
|
||||||
|
split: 1, 1, 1, 1
|
||||||
|
orig: 3, 3
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
font-small
|
||||||
|
rotate: false
|
||||||
|
xy: 1, 114
|
||||||
|
size: 509, 164
|
||||||
|
orig: 512, 256
|
||||||
|
offset: 0, 91
|
||||||
|
index: -1
|
||||||
|
grey
|
||||||
|
rotate: false
|
||||||
|
xy: 196, 52
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
menu-bg
|
||||||
|
rotate: false
|
||||||
|
xy: 196, 52
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
icon-arrow-left
|
||||||
|
rotate: false
|
||||||
|
xy: 29, 1
|
||||||
|
size: 36, 28
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 4, 8
|
||||||
|
index: -1
|
||||||
|
icon-arrow-right
|
||||||
|
rotate: false
|
||||||
|
xy: 66, 1
|
||||||
|
size: 36, 28
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 4, 8
|
||||||
|
index: -1
|
||||||
|
icon-close
|
||||||
|
rotate: false
|
||||||
|
xy: 1, 8
|
||||||
|
size: 20, 20
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 12, 12
|
||||||
|
index: -1
|
||||||
|
icon-drive
|
||||||
|
rotate: false
|
||||||
|
xy: 222, 3
|
||||||
|
size: 36, 10
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 4, 18
|
||||||
|
index: -1
|
||||||
|
icon-file-audio
|
||||||
|
rotate: false
|
||||||
|
xy: 97, 32
|
||||||
|
size: 28, 36
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 8, 4
|
||||||
|
index: -1
|
||||||
|
icon-file-image
|
||||||
|
rotate: false
|
||||||
|
xy: 103, 1
|
||||||
|
size: 26, 30
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 9, 7
|
||||||
|
index: -1
|
||||||
|
icon-file-pdf
|
||||||
|
rotate: false
|
||||||
|
xy: 68, 30
|
||||||
|
size: 28, 34
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 8, 5
|
||||||
|
index: -1
|
||||||
|
icon-file-text
|
||||||
|
rotate: false
|
||||||
|
xy: 372, 10
|
||||||
|
size: 26, 30
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 9, 7
|
||||||
|
index: -1
|
||||||
|
icon-folder
|
||||||
|
rotate: false
|
||||||
|
xy: 372, 89
|
||||||
|
size: 32, 24
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 6, 12
|
||||||
|
index: -1
|
||||||
|
icon-folder-new
|
||||||
|
rotate: false
|
||||||
|
xy: 220, 84
|
||||||
|
size: 35, 29
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 5, 7
|
||||||
|
index: -1
|
||||||
|
icon-folder-parent
|
||||||
|
rotate: false
|
||||||
|
xy: 405, 89
|
||||||
|
size: 32, 24
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 6, 12
|
||||||
|
index: -1
|
||||||
|
icon-folder-star
|
||||||
|
rotate: false
|
||||||
|
xy: 185, 54
|
||||||
|
size: 34, 26
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 5, 9
|
||||||
|
index: -1
|
||||||
|
icon-list-settings
|
||||||
|
rotate: false
|
||||||
|
xy: 29, 30
|
||||||
|
size: 38, 34
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 5, 3
|
||||||
|
index: -1
|
||||||
|
icon-refresh
|
||||||
|
rotate: false
|
||||||
|
xy: 411, 58
|
||||||
|
size: 26, 30
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 9, 7
|
||||||
|
index: -1
|
||||||
|
icon-star
|
||||||
|
rotate: false
|
||||||
|
xy: 220, 55
|
||||||
|
size: 30, 28
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 7, 8
|
||||||
|
index: -1
|
||||||
|
icon-star-outline
|
||||||
|
rotate: false
|
||||||
|
xy: 185, 81
|
||||||
|
size: 34, 32
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 5, 6
|
||||||
|
index: -1
|
||||||
|
icon-trash
|
||||||
|
rotate: false
|
||||||
|
xy: 438, 54
|
||||||
|
size: 24, 30
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 10, 7
|
||||||
|
index: -1
|
||||||
|
list-selection
|
||||||
|
rotate: false
|
||||||
|
xy: 126, 34
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
vis-blue
|
||||||
|
rotate: false
|
||||||
|
xy: 126, 34
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
padded-list-selection
|
||||||
|
rotate: false
|
||||||
|
xy: 185, 52
|
||||||
|
size: 10, 1
|
||||||
|
split: 4, 4, 0, 1
|
||||||
|
orig: 10, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
progressbar
|
||||||
|
rotate: false
|
||||||
|
xy: 126, 36
|
||||||
|
size: 1, 32
|
||||||
|
orig: 1, 32
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
progressbar-filled
|
||||||
|
rotate: false
|
||||||
|
xy: 399, 14
|
||||||
|
size: 1, 32
|
||||||
|
orig: 1, 32
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
progressbar-filled-vertical
|
||||||
|
rotate: false
|
||||||
|
xy: 130, 1
|
||||||
|
size: 32, 1
|
||||||
|
orig: 32, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
progressbar-vertical
|
||||||
|
rotate: false
|
||||||
|
xy: 259, 5
|
||||||
|
size: 32, 1
|
||||||
|
orig: 32, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
radio-off
|
||||||
|
rotate: false
|
||||||
|
xy: 438, 85
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
vis-radio
|
||||||
|
rotate: false
|
||||||
|
xy: 438, 85
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
radio-on
|
||||||
|
rotate: false
|
||||||
|
xy: 467, 85
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
scroll
|
||||||
|
rotate: false
|
||||||
|
xy: 372, 82
|
||||||
|
size: 34, 6
|
||||||
|
split: 4, 4, 2, 2
|
||||||
|
orig: 34, 6
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
scroll-horizontal
|
||||||
|
rotate: false
|
||||||
|
xy: 397, 47
|
||||||
|
size: 6, 34
|
||||||
|
split: 2, 2, 0, 34
|
||||||
|
pad: -1, -1, 5, 4
|
||||||
|
orig: 6, 34
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
scroll-knob-horizontal
|
||||||
|
rotate: false
|
||||||
|
xy: 404, 47
|
||||||
|
size: 6, 34
|
||||||
|
split: 2, 2, 0, 34
|
||||||
|
pad: -1, -1, 13, 12
|
||||||
|
orig: 6, 34
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
scroll-knob-vertical
|
||||||
|
rotate: false
|
||||||
|
xy: 259, 7
|
||||||
|
size: 34, 6
|
||||||
|
split: 12, 12, 2, 2
|
||||||
|
orig: 34, 6
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
select-box-list-bg
|
||||||
|
rotate: false
|
||||||
|
xy: 126, 32
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
window-bg
|
||||||
|
rotate: false
|
||||||
|
xy: 126, 32
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
select-down
|
||||||
|
rotate: false
|
||||||
|
xy: 478, 56
|
||||||
|
size: 14, 8
|
||||||
|
orig: 14, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
select-up
|
||||||
|
rotate: false
|
||||||
|
xy: 422, 49
|
||||||
|
size: 14, 8
|
||||||
|
orig: 14, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
selection
|
||||||
|
rotate: false
|
||||||
|
xy: 128, 32
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
separator
|
||||||
|
rotate: false
|
||||||
|
xy: 99, 30
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
tree-over
|
||||||
|
rotate: false
|
||||||
|
xy: 99, 30
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
separator-menu
|
||||||
|
rotate: false
|
||||||
|
xy: 101, 30
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
slider
|
||||||
|
rotate: false
|
||||||
|
xy: 128, 43
|
||||||
|
size: 1, 8
|
||||||
|
orig: 1, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
slider-knob
|
||||||
|
rotate: false
|
||||||
|
xy: 130, 7
|
||||||
|
size: 22, 44
|
||||||
|
orig: 22, 44
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
slider-knob-disabled
|
||||||
|
rotate: false
|
||||||
|
xy: 153, 7
|
||||||
|
size: 22, 44
|
||||||
|
orig: 22, 44
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
slider-knob-down
|
||||||
|
rotate: false
|
||||||
|
xy: 176, 7
|
||||||
|
size: 22, 44
|
||||||
|
orig: 22, 44
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
slider-knob-over
|
||||||
|
rotate: false
|
||||||
|
xy: 199, 9
|
||||||
|
size: 22, 44
|
||||||
|
orig: 22, 44
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
slider-vertical
|
||||||
|
rotate: false
|
||||||
|
xy: 422, 47
|
||||||
|
size: 8, 1
|
||||||
|
orig: 8, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
splitpane
|
||||||
|
rotate: false
|
||||||
|
xy: 503, 68
|
||||||
|
size: 8, 1
|
||||||
|
orig: 8, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
splitpane-over
|
||||||
|
rotate: false
|
||||||
|
xy: 503, 66
|
||||||
|
size: 8, 1
|
||||||
|
orig: 8, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
splitpane-vertical
|
||||||
|
rotate: false
|
||||||
|
xy: 128, 34
|
||||||
|
size: 1, 8
|
||||||
|
orig: 1, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
splitpane-vertical-over
|
||||||
|
rotate: false
|
||||||
|
xy: 367, 76
|
||||||
|
size: 1, 8
|
||||||
|
orig: 1, 8
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
sub-menu
|
||||||
|
rotate: false
|
||||||
|
xy: 503, 70
|
||||||
|
size: 8, 14
|
||||||
|
orig: 8, 14
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
textfield-over
|
||||||
|
rotate: false
|
||||||
|
xy: 251, 55
|
||||||
|
size: 28, 28
|
||||||
|
split: 2, 2, 2, 2
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
vis-check-over
|
||||||
|
rotate: false
|
||||||
|
xy: 251, 55
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
tooltip-bg
|
||||||
|
rotate: false
|
||||||
|
xy: 138, 3
|
||||||
|
size: 3, 3
|
||||||
|
split: 1, 1, 1, 1
|
||||||
|
orig: 3, 3
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
touchpad-knob
|
||||||
|
rotate: false
|
||||||
|
xy: 84, 69
|
||||||
|
size: 44, 44
|
||||||
|
orig: 44, 44
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
tree-minus
|
||||||
|
rotate: false
|
||||||
|
xy: 414, 36
|
||||||
|
size: 10, 10
|
||||||
|
orig: 16, 16
|
||||||
|
offset: 2, 4
|
||||||
|
index: -1
|
||||||
|
tree-plus
|
||||||
|
rotate: false
|
||||||
|
xy: 401, 30
|
||||||
|
size: 12, 16
|
||||||
|
orig: 16, 16
|
||||||
|
offset: 2, 0
|
||||||
|
index: -1
|
||||||
|
tree-selection
|
||||||
|
rotate: false
|
||||||
|
xy: 142, 3
|
||||||
|
size: 3, 3
|
||||||
|
split: 1, 1, 1, 1
|
||||||
|
orig: 3, 3
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
vis-check-down
|
||||||
|
rotate: false
|
||||||
|
xy: 280, 56
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
vis-check-tick
|
||||||
|
rotate: false
|
||||||
|
xy: 463, 65
|
||||||
|
size: 19, 19
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 5, 4
|
||||||
|
index: -1
|
||||||
|
vis-check-tick-disabled
|
||||||
|
rotate: false
|
||||||
|
xy: 483, 65
|
||||||
|
size: 19, 19
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 5, 4
|
||||||
|
index: -1
|
||||||
|
vis-radio-down
|
||||||
|
rotate: false
|
||||||
|
xy: 309, 56
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
vis-radio-over
|
||||||
|
rotate: false
|
||||||
|
xy: 338, 56
|
||||||
|
size: 28, 28
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
vis-radio-tick
|
||||||
|
rotate: false
|
||||||
|
xy: 401, 15
|
||||||
|
size: 14, 14
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 7, 7
|
||||||
|
index: -1
|
||||||
|
vis-radio-tick-disabled
|
||||||
|
rotate: false
|
||||||
|
xy: 463, 50
|
||||||
|
size: 14, 14
|
||||||
|
orig: 28, 28
|
||||||
|
offset: 7, 7
|
||||||
|
index: -1
|
||||||
|
vis-red
|
||||||
|
rotate: false
|
||||||
|
xy: 397, 43
|
||||||
|
size: 1, 1
|
||||||
|
orig: 1, 1
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
white
|
||||||
|
rotate: false
|
||||||
|
xy: 146, 3
|
||||||
|
size: 3, 3
|
||||||
|
orig: 3, 3
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
window
|
||||||
|
rotate: false
|
||||||
|
xy: 157, 52
|
||||||
|
size: 27, 61
|
||||||
|
split: 5, 4, 53, 3
|
||||||
|
orig: 27, 61
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
window-border-bg
|
||||||
|
rotate: false
|
||||||
|
xy: 150, 3
|
||||||
|
size: 3, 3
|
||||||
|
split: 1, 1, 1, 1
|
||||||
|
orig: 3, 3
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
window-noborder
|
||||||
|
rotate: false
|
||||||
|
xy: 129, 52
|
||||||
|
size: 27, 61
|
||||||
|
split: 5, 4, 53, 3
|
||||||
|
orig: 27, 61
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
|
window-resizable
|
||||||
|
rotate: false
|
||||||
|
xy: 1, 29
|
||||||
|
size: 27, 84
|
||||||
|
split: 3, 19, 2, 20
|
||||||
|
pad: 5, 5, 50, 7
|
||||||
|
orig: 27, 84
|
||||||
|
offset: 0, 0
|
||||||
|
index: -1
|
||||||
BIN
core/assets/ui/backup/uiskin.png
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
core/assets/ui/out/blank.png
Normal file
|
After Width: | Height: | Size: 85 B |
BIN
core/assets/ui/out/border-circle-error.png
Normal file
|
After Width: | Height: | Size: 995 B |
BIN
core/assets/ui/out/border-circle.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
core/assets/ui/out/border-dark-blue.9.png
Normal file
|
After Width: | Height: | Size: 86 B |
BIN
core/assets/ui/out/border-error.9.png
Normal file
|
After Width: | Height: | Size: 87 B |
BIN
core/assets/ui/out/border-white.9.png
Normal file
|
After Width: | Height: | Size: 176 B |
BIN
core/assets/ui/out/border.9.png
Normal file
|
After Width: | Height: | Size: 178 B |
BIN
core/assets/ui/out/bump.9.png
Normal file
|
After Width: | Height: | Size: 381 B |
BIN
core/assets/ui/out/button-blue-down.9.png
Normal file
|
After Width: | Height: | Size: 124 B |
BIN
core/assets/ui/out/button-blue-over.9.png
Normal file
|
After Width: | Height: | Size: 125 B |
BIN
core/assets/ui/out/button-blue.9.png
Normal file
|
After Width: | Height: | Size: 127 B |
BIN
core/assets/ui/out/button-down.9.png
Normal file
|
After Width: | Height: | Size: 227 B |
BIN
core/assets/ui/out/button-gray-over.9.png
Normal file
|
After Width: | Height: | Size: 200 B |
BIN
core/assets/ui/out/button-gray.9.png
Normal file
|
After Width: | Height: | Size: 222 B |
BIN
core/assets/ui/out/button-over.9.png
Normal file
|
After Width: | Height: | Size: 224 B |
BIN
core/assets/ui/out/button-red.9.png
Normal file
|
After Width: | Height: | Size: 126 B |
BIN
core/assets/ui/out/button-window-bg.9.png
Normal file
|
After Width: | Height: | Size: 200 B |
BIN
core/assets/ui/out/button-window-over.9.png
Normal file
|
After Width: | Height: | Size: 199 B |
BIN
core/assets/ui/out/button.9.png
Normal file
|
After Width: | Height: | Size: 224 B |
BIN
core/assets/ui/out/check-off.png
Normal file
|
After Width: | Height: | Size: 100 B |
BIN
core/assets/ui/out/check-on.png
Normal file
|
After Width: | Height: | Size: 108 B |
BIN
core/assets/ui/out/color-picker-bar-selector.png
Normal file
|
After Width: | Height: | Size: 309 B |
BIN
core/assets/ui/out/color-picker-cross.png
Normal file
|
After Width: | Height: | Size: 104 B |
BIN
core/assets/ui/out/color-picker-selector-horizontal.png
Normal file
|
After Width: | Height: | Size: 74 B |
BIN
core/assets/ui/out/color-picker-selector-vertical.png
Normal file
|
After Width: | Height: | Size: 76 B |
BIN
core/assets/ui/out/cursor-normal.png
Normal file
|
After Width: | Height: | Size: 103 B |
BIN
core/assets/ui/out/cursor.png
Normal file
|
After Width: | Height: | Size: 143 B |
BIN
core/assets/ui/out/default-pane-no-border.9.png
Normal file
|
After Width: | Height: | Size: 78 B |
BIN
core/assets/ui/out/default-pane.9.png
Normal file
|
After Width: | Height: | Size: 88 B |
BIN
core/assets/ui/out/default-select-selection.9.png
Normal file
|
After Width: | Height: | Size: 86 B |
BIN
core/assets/ui/out/default-select.9.png
Normal file
|
After Width: | Height: | Size: 303 B |
BIN
core/assets/ui/out/grey.png
Normal file
|
After Width: | Height: | Size: 70 B |
BIN
core/assets/ui/out/icon-arrow-down.png
Normal file
|
After Width: | Height: | Size: 115 B |
BIN
core/assets/ui/out/icon-arrow-left.png
Normal file
|
After Width: | Height: | Size: 130 B |
BIN
core/assets/ui/out/icon-arrow-right.png
Normal file
|
After Width: | Height: | Size: 129 B |
BIN
core/assets/ui/out/icon-arrow-up.png
Normal file
|
After Width: | Height: | Size: 113 B |
BIN
core/assets/ui/out/icon-close-down.png
Normal file
|
After Width: | Height: | Size: 328 B |
BIN
core/assets/ui/out/icon-close-over.png
Normal file
|
After Width: | Height: | Size: 328 B |
BIN
core/assets/ui/out/icon-close.png
Normal file
|
After Width: | Height: | Size: 319 B |
BIN
core/assets/ui/out/icon-copy.png
Normal file
|
After Width: | Height: | Size: 91 B |
BIN
core/assets/ui/out/icon-cursor.png
Normal file
|
After Width: | Height: | Size: 101 B |
BIN
core/assets/ui/out/icon-dots-down.png
Normal file
|
After Width: | Height: | Size: 91 B |
BIN
core/assets/ui/out/icon-dots.png
Normal file
|
After Width: | Height: | Size: 82 B |
BIN
core/assets/ui/out/icon-down.png
Normal file
|
After Width: | Height: | Size: 114 B |
BIN
core/assets/ui/out/icon-drive.png
Normal file
|
After Width: | Height: | Size: 95 B |
BIN
core/assets/ui/out/icon-eraser.png
Normal file
|
After Width: | Height: | Size: 102 B |
BIN
core/assets/ui/out/icon-file-audio.png
Normal file
|
After Width: | Height: | Size: 534 B |
BIN
core/assets/ui/out/icon-file-image.png
Normal file
|
After Width: | Height: | Size: 387 B |
BIN
core/assets/ui/out/icon-file-pdf.png
Normal file
|
After Width: | Height: | Size: 635 B |
BIN
core/assets/ui/out/icon-file-text.png
Normal file
|
After Width: | Height: | Size: 99 B |
BIN
core/assets/ui/out/icon-fill.png
Normal file
|
After Width: | Height: | Size: 100 B |
BIN
core/assets/ui/out/icon-folder-new.png
Normal file
|
After Width: | Height: | Size: 573 B |
BIN
core/assets/ui/out/icon-folder-parent.png
Normal file
|
After Width: | Height: | Size: 103 B |
BIN
core/assets/ui/out/icon-folder-star.png
Normal file
|
After Width: | Height: | Size: 441 B |
BIN
core/assets/ui/out/icon-folder.png
Normal file
|
After Width: | Height: | Size: 90 B |
BIN
core/assets/ui/out/icon-grid.png
Normal file
|
After Width: | Height: | Size: 88 B |
BIN
core/assets/ui/out/icon-home.png
Normal file
|
After Width: | Height: | Size: 105 B |
BIN
core/assets/ui/out/icon-list-settings.png
Normal file
|
After Width: | Height: | Size: 677 B |
BIN
core/assets/ui/out/icon-load-1.png
Normal file
|
After Width: | Height: | Size: 93 B |
BIN
core/assets/ui/out/icon-load-2.png
Normal file
|
After Width: | Height: | Size: 95 B |
BIN
core/assets/ui/out/icon-load-3.png
Normal file
|
After Width: | Height: | Size: 95 B |
BIN
core/assets/ui/out/icon-lock-open.png
Normal file
|
After Width: | Height: | Size: 110 B |
BIN
core/assets/ui/out/icon-lock.png
Normal file
|
After Width: | Height: | Size: 104 B |
BIN
core/assets/ui/out/icon-minus.png
Normal file
|
After Width: | Height: | Size: 96 B |
BIN
core/assets/ui/out/icon-open-gray.png
Normal file
|
After Width: | Height: | Size: 117 B |
BIN
core/assets/ui/out/icon-open.png
Normal file
|
After Width: | Height: | Size: 98 B |
BIN
core/assets/ui/out/icon-pencil.png
Normal file
|
After Width: | Height: | Size: 108 B |
BIN
core/assets/ui/out/icon-pick.png
Normal file
|
After Width: | Height: | Size: 101 B |
BIN
core/assets/ui/out/icon-plus.png
Normal file
|
After Width: | Height: | Size: 116 B |
BIN
core/assets/ui/out/icon-redo.png
Normal file
|
After Width: | Height: | Size: 104 B |
BIN
core/assets/ui/out/icon-refresh.png
Normal file
|
After Width: | Height: | Size: 580 B |
BIN
core/assets/ui/out/icon-rename.png
Normal file
|
After Width: | Height: | Size: 83 B |
BIN
core/assets/ui/out/icon-star-outline.png
Normal file
|
After Width: | Height: | Size: 670 B |
BIN
core/assets/ui/out/icon-star.png
Normal file
|
After Width: | Height: | Size: 486 B |
BIN
core/assets/ui/out/icon-tap.png
Normal file
|
After Width: | Height: | Size: 99 B |
BIN
core/assets/ui/out/icon-trash.png
Normal file
|
After Width: | Height: | Size: 108 B |
BIN
core/assets/ui/out/icon-undo.png
Normal file
|
After Width: | Height: | Size: 106 B |
BIN
core/assets/ui/out/icon-up.png
Normal file
|
After Width: | Height: | Size: 107 B |
BIN
core/assets/ui/out/icon-zoom.png
Normal file
|
After Width: | Height: | Size: 109 B |
BIN
core/assets/ui/out/list-selection.png
Normal file
|
After Width: | Height: | Size: 70 B |
BIN
core/assets/ui/out/menu-bg.png
Normal file
|
After Width: | Height: | Size: 70 B |
BIN
core/assets/ui/out/padded-list-selection.9.png
Normal file
|
After Width: | Height: | Size: 82 B |
BIN
core/assets/ui/out/progressbar-filled-vertical.png
Normal file
|
After Width: | Height: | Size: 72 B |
BIN
core/assets/ui/out/progressbar-filled.png
Normal file
|
After Width: | Height: | Size: 73 B |
BIN
core/assets/ui/out/progressbar-vertical.png
Normal file
|
After Width: | Height: | Size: 72 B |
BIN
core/assets/ui/out/progressbar.png
Normal file
|
After Width: | Height: | Size: 73 B |
BIN
core/assets/ui/out/radio-off.png
Normal file
|
After Width: | Height: | Size: 591 B |
BIN
core/assets/ui/out/radio-on.png
Normal file
|
After Width: | Height: | Size: 743 B |
BIN
core/assets/ui/out/scroll-horizontal.9.png
Normal file
|
After Width: | Height: | Size: 98 B |
BIN
core/assets/ui/out/scroll-knob-horizontal.9.png
Normal file
|
After Width: | Height: | Size: 122 B |
BIN
core/assets/ui/out/scroll-knob-vertical.9.png
Normal file
|
After Width: | Height: | Size: 102 B |
BIN
core/assets/ui/out/scroll.9.png
Normal file
|
After Width: | Height: | Size: 95 B |
BIN
core/assets/ui/out/select-box-list-bg.png
Normal file
|
After Width: | Height: | Size: 70 B |