├── LICENSE ├── README.md ├── code ├── pom.xml └── src │ ├── main │ └── java │ │ └── freeseawind │ │ └── ninepatch │ │ ├── common │ │ ├── AbstractNinePatch.java │ │ ├── NinePatchRegion.java │ │ ├── Padding.java │ │ ├── Region.java │ │ ├── RepeatType.java │ │ └── Row.java │ │ ├── javafx │ │ └── FxNinePatch.java │ │ └── swing │ │ └── SwingNinePatch.java │ └── test │ ├── java │ ├── javafx │ │ └── JavaFxTest.java │ └── swing │ │ └── SwingTest.java │ └── resource │ ├── bg_bubble@2x.9.png │ ├── bg_search.9.png │ ├── icon_qipao.9.png │ └── progressbar_cell.9.png ├── dist └── NinePatch-1.0.jar └── doc ├── allclasses-frame.html ├── allclasses-noframe.html ├── constant-values.html ├── deprecated-list.html ├── freeseawind └── ninepatch │ ├── common │ ├── AbstractNinePatch.html │ ├── NinePatchRegion.html │ ├── Padding.html │ ├── Region.html │ ├── Row.Type.html │ ├── Row.html │ ├── class-use │ │ ├── AbstractNinePatch.html │ │ ├── NinePatchRegion.html │ │ ├── Padding.html │ │ ├── Region.html │ │ ├── Row.Type.html │ │ └── Row.html │ ├── package-frame.html │ ├── package-summary.html │ ├── package-tree.html │ └── package-use.html │ ├── javafx │ ├── FxNinePatch.html │ ├── class-use │ │ └── FxNinePatch.html │ ├── package-frame.html │ ├── package-summary.html │ ├── package-tree.html │ └── package-use.html │ └── swing │ ├── SwingNinePatch.html │ ├── class-use │ └── SwingNinePatch.html │ ├── package-frame.html │ ├── package-summary.html │ ├── package-tree.html │ └── package-use.html ├── help-doc.html ├── images ├── 1.jpg ├── 3.png ├── 4.png ├── bg_bubble@2x.9.png └── icon_qipao.9.png ├── index-files ├── index-1.html ├── index-10.html ├── index-11.html ├── index-2.html ├── index-3.html ├── index-4.html ├── index-5.html ├── index-6.html ├── index-7.html ├── index-8.html └── index-9.html ├── index.html ├── overview-frame.html ├── overview-summary.html ├── overview-tree.html ├── package-list ├── script.js └── stylesheet.css /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/README.md -------------------------------------------------------------------------------- /code/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/pom.xml -------------------------------------------------------------------------------- /code/src/main/java/freeseawind/ninepatch/common/AbstractNinePatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/main/java/freeseawind/ninepatch/common/AbstractNinePatch.java -------------------------------------------------------------------------------- /code/src/main/java/freeseawind/ninepatch/common/NinePatchRegion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/main/java/freeseawind/ninepatch/common/NinePatchRegion.java -------------------------------------------------------------------------------- /code/src/main/java/freeseawind/ninepatch/common/Padding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/main/java/freeseawind/ninepatch/common/Padding.java -------------------------------------------------------------------------------- /code/src/main/java/freeseawind/ninepatch/common/Region.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/main/java/freeseawind/ninepatch/common/Region.java -------------------------------------------------------------------------------- /code/src/main/java/freeseawind/ninepatch/common/RepeatType.java: -------------------------------------------------------------------------------- 1 | package freeseawind.ninepatch.common; 2 | 3 | public enum RepeatType 4 | { 5 | HORIZONTAL, VERTICAL 6 | } 7 | -------------------------------------------------------------------------------- /code/src/main/java/freeseawind/ninepatch/common/Row.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/main/java/freeseawind/ninepatch/common/Row.java -------------------------------------------------------------------------------- /code/src/main/java/freeseawind/ninepatch/javafx/FxNinePatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/main/java/freeseawind/ninepatch/javafx/FxNinePatch.java -------------------------------------------------------------------------------- /code/src/main/java/freeseawind/ninepatch/swing/SwingNinePatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/main/java/freeseawind/ninepatch/swing/SwingNinePatch.java -------------------------------------------------------------------------------- /code/src/test/java/javafx/JavaFxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/test/java/javafx/JavaFxTest.java -------------------------------------------------------------------------------- /code/src/test/java/swing/SwingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/test/java/swing/SwingTest.java -------------------------------------------------------------------------------- /code/src/test/resource/bg_bubble@2x.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/test/resource/bg_bubble@2x.9.png -------------------------------------------------------------------------------- /code/src/test/resource/bg_search.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/test/resource/bg_search.9.png -------------------------------------------------------------------------------- /code/src/test/resource/icon_qipao.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/test/resource/icon_qipao.9.png -------------------------------------------------------------------------------- /code/src/test/resource/progressbar_cell.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/code/src/test/resource/progressbar_cell.9.png -------------------------------------------------------------------------------- /dist/NinePatch-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/dist/NinePatch-1.0.jar -------------------------------------------------------------------------------- /doc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/allclasses-frame.html -------------------------------------------------------------------------------- /doc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/allclasses-noframe.html -------------------------------------------------------------------------------- /doc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/constant-values.html -------------------------------------------------------------------------------- /doc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/deprecated-list.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/AbstractNinePatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/AbstractNinePatch.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/NinePatchRegion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/NinePatchRegion.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/Padding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/Padding.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/Region.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/Region.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/Row.Type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/Row.Type.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/Row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/Row.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/class-use/AbstractNinePatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/class-use/AbstractNinePatch.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/class-use/NinePatchRegion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/class-use/NinePatchRegion.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/class-use/Padding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/class-use/Padding.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/class-use/Region.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/class-use/Region.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/class-use/Row.Type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/class-use/Row.Type.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/class-use/Row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/class-use/Row.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/package-frame.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/package-summary.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/package-tree.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/common/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/common/package-use.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/javafx/FxNinePatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/javafx/FxNinePatch.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/javafx/class-use/FxNinePatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/javafx/class-use/FxNinePatch.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/javafx/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/javafx/package-frame.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/javafx/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/javafx/package-summary.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/javafx/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/javafx/package-tree.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/javafx/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/javafx/package-use.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/swing/SwingNinePatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/swing/SwingNinePatch.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/swing/class-use/SwingNinePatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/swing/class-use/SwingNinePatch.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/swing/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/swing/package-frame.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/swing/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/swing/package-summary.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/swing/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/swing/package-tree.html -------------------------------------------------------------------------------- /doc/freeseawind/ninepatch/swing/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/freeseawind/ninepatch/swing/package-use.html -------------------------------------------------------------------------------- /doc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/help-doc.html -------------------------------------------------------------------------------- /doc/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/images/1.jpg -------------------------------------------------------------------------------- /doc/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/images/3.png -------------------------------------------------------------------------------- /doc/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/images/4.png -------------------------------------------------------------------------------- /doc/images/bg_bubble@2x.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/images/bg_bubble@2x.9.png -------------------------------------------------------------------------------- /doc/images/icon_qipao.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/images/icon_qipao.9.png -------------------------------------------------------------------------------- /doc/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-1.html -------------------------------------------------------------------------------- /doc/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-10.html -------------------------------------------------------------------------------- /doc/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-11.html -------------------------------------------------------------------------------- /doc/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-2.html -------------------------------------------------------------------------------- /doc/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-3.html -------------------------------------------------------------------------------- /doc/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-4.html -------------------------------------------------------------------------------- /doc/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-5.html -------------------------------------------------------------------------------- /doc/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-6.html -------------------------------------------------------------------------------- /doc/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-7.html -------------------------------------------------------------------------------- /doc/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-8.html -------------------------------------------------------------------------------- /doc/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index-files/index-9.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/overview-frame.html -------------------------------------------------------------------------------- /doc/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/overview-summary.html -------------------------------------------------------------------------------- /doc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/overview-tree.html -------------------------------------------------------------------------------- /doc/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/package-list -------------------------------------------------------------------------------- /doc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/script.js -------------------------------------------------------------------------------- /doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeseawind/NinePatch/HEAD/doc/stylesheet.css --------------------------------------------------------------------------------