├── .builds └── linux.yml ├── .gitignore ├── LICENSE ├── README.md ├── colorpicker ├── README.md ├── color.go └── img │ └── screenshot.jpg ├── component ├── README.md ├── animation.go ├── app_bar.go ├── color.go ├── color_test.go ├── context-area.go ├── discloser.go ├── doc.go ├── grid.go ├── img │ ├── app-bar-top-contextual.png │ ├── app-bar-top.png │ ├── menu1.png │ ├── menu2.png │ ├── modal-nav.png │ └── tooltip.png ├── materials.go ├── menu.go ├── modal_layer.go ├── nav_drawer.go ├── resizer.go ├── scrim.go ├── shadow.go ├── sheet.go ├── text_field.go ├── tooltip.go ├── tooltip_desktop.go ├── tooltip_mobile.go └── truncating_label.go ├── debug └── debug.go ├── explorer ├── README.md ├── explorer.go ├── explorer_android.go ├── explorer_android.jar ├── explorer_android.java ├── explorer_ios.go ├── explorer_ios.m ├── explorer_js.go ├── explorer_linux.go ├── explorer_macos.go ├── explorer_macos.m ├── explorer_unsupported.go ├── explorer_windows.go ├── file_android.go ├── file_android.jar ├── file_android.java ├── file_darwin.go └── file_darwin.m ├── go.mod ├── go.sum ├── haptic ├── README.md ├── doc.go ├── haptic_android.go ├── haptic_default.go └── haptic_ios.go ├── markdown └── markdown.go ├── notify ├── README.md ├── android │ ├── NotificationHelper.jar │ ├── NotificationHelper.java │ └── notify_android.go ├── cmd │ └── png2bmp │ │ └── main.go ├── macos │ ├── niotify_test.go │ └── notify_macos.go ├── notification_manager.go ├── notify_android.go ├── notify_darwin.go ├── notify_dbus.go ├── notify_unsupported.go └── notify_windows.go ├── outlay ├── README.md ├── anim.go ├── doc.go ├── fan.go ├── flow.go ├── grid.go ├── grid_test.go ├── if.go ├── localeflex.go ├── localeinset.go ├── multi-list.go ├── rigid-rows.go └── spacer.go ├── pref ├── README.md ├── battery │ ├── battery.go │ ├── battery_android.go │ ├── battery_android.jar │ ├── battery_android.java │ ├── battery_js.go │ ├── battery_linux.go │ ├── battery_unsupported.go │ └── battery_windows.go ├── internal │ └── xjni │ │ └── jni_android.go ├── locale │ ├── locale.go │ ├── locale_android.go │ ├── locale_android.jar │ ├── locale_android.java │ ├── locale_js.go │ ├── locale_linux.go │ ├── locale_unsupported.go │ └── locale_windows.go └── theme │ ├── theme.go │ ├── theme_android.go │ ├── theme_android.jar │ ├── theme_android.java │ ├── theme_js.go │ ├── theme_unsupported.go │ └── theme_windows.go ├── richtext ├── README.md ├── example_richtext_test.go ├── richtext.go └── richtext_test.go ├── stroke ├── clip_test.go ├── refs │ ├── TestDashedPathFlatCapEllipse.png │ ├── TestDashedPathFlatCapZ.png │ ├── TestDashedPathFlatCapZNoDash.png │ ├── TestStrokedPathArc.png │ ├── TestStrokedPathBalloon.png │ ├── TestStrokedPathBevelFlat.png │ ├── TestStrokedPathBevelRound.png │ ├── TestStrokedPathBevelSquare.png │ ├── TestStrokedPathCoincidentControlPoint.png │ ├── TestStrokedPathFlatMiter.png │ ├── TestStrokedPathFlatMiterInf.png │ └── TestStrokedPathZeroWidth.png ├── stroke.go └── util_test.go └── styledtext ├── README.md ├── iterator.go ├── styledtext.go └── styledtext_test.go /.builds/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/.builds/linux.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/README.md -------------------------------------------------------------------------------- /colorpicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/colorpicker/README.md -------------------------------------------------------------------------------- /colorpicker/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/colorpicker/color.go -------------------------------------------------------------------------------- /colorpicker/img/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/colorpicker/img/screenshot.jpg -------------------------------------------------------------------------------- /component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/README.md -------------------------------------------------------------------------------- /component/animation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/animation.go -------------------------------------------------------------------------------- /component/app_bar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/app_bar.go -------------------------------------------------------------------------------- /component/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/color.go -------------------------------------------------------------------------------- /component/color_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/color_test.go -------------------------------------------------------------------------------- /component/context-area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/context-area.go -------------------------------------------------------------------------------- /component/discloser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/discloser.go -------------------------------------------------------------------------------- /component/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/doc.go -------------------------------------------------------------------------------- /component/grid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/grid.go -------------------------------------------------------------------------------- /component/img/app-bar-top-contextual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/img/app-bar-top-contextual.png -------------------------------------------------------------------------------- /component/img/app-bar-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/img/app-bar-top.png -------------------------------------------------------------------------------- /component/img/menu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/img/menu1.png -------------------------------------------------------------------------------- /component/img/menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/img/menu2.png -------------------------------------------------------------------------------- /component/img/modal-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/img/modal-nav.png -------------------------------------------------------------------------------- /component/img/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/img/tooltip.png -------------------------------------------------------------------------------- /component/materials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/materials.go -------------------------------------------------------------------------------- /component/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/menu.go -------------------------------------------------------------------------------- /component/modal_layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/modal_layer.go -------------------------------------------------------------------------------- /component/nav_drawer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/nav_drawer.go -------------------------------------------------------------------------------- /component/resizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/resizer.go -------------------------------------------------------------------------------- /component/scrim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/scrim.go -------------------------------------------------------------------------------- /component/shadow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/shadow.go -------------------------------------------------------------------------------- /component/sheet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/sheet.go -------------------------------------------------------------------------------- /component/text_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/text_field.go -------------------------------------------------------------------------------- /component/tooltip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/tooltip.go -------------------------------------------------------------------------------- /component/tooltip_desktop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/tooltip_desktop.go -------------------------------------------------------------------------------- /component/tooltip_mobile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/tooltip_mobile.go -------------------------------------------------------------------------------- /component/truncating_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/component/truncating_label.go -------------------------------------------------------------------------------- /debug/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/debug/debug.go -------------------------------------------------------------------------------- /explorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/README.md -------------------------------------------------------------------------------- /explorer/explorer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer.go -------------------------------------------------------------------------------- /explorer/explorer_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_android.go -------------------------------------------------------------------------------- /explorer/explorer_android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_android.jar -------------------------------------------------------------------------------- /explorer/explorer_android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_android.java -------------------------------------------------------------------------------- /explorer/explorer_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_ios.go -------------------------------------------------------------------------------- /explorer/explorer_ios.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_ios.m -------------------------------------------------------------------------------- /explorer/explorer_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_js.go -------------------------------------------------------------------------------- /explorer/explorer_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_linux.go -------------------------------------------------------------------------------- /explorer/explorer_macos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_macos.go -------------------------------------------------------------------------------- /explorer/explorer_macos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_macos.m -------------------------------------------------------------------------------- /explorer/explorer_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_unsupported.go -------------------------------------------------------------------------------- /explorer/explorer_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/explorer_windows.go -------------------------------------------------------------------------------- /explorer/file_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/file_android.go -------------------------------------------------------------------------------- /explorer/file_android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/file_android.jar -------------------------------------------------------------------------------- /explorer/file_android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/file_android.java -------------------------------------------------------------------------------- /explorer/file_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/file_darwin.go -------------------------------------------------------------------------------- /explorer/file_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/explorer/file_darwin.m -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/go.sum -------------------------------------------------------------------------------- /haptic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/haptic/README.md -------------------------------------------------------------------------------- /haptic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/haptic/doc.go -------------------------------------------------------------------------------- /haptic/haptic_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/haptic/haptic_android.go -------------------------------------------------------------------------------- /haptic/haptic_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/haptic/haptic_default.go -------------------------------------------------------------------------------- /haptic/haptic_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/haptic/haptic_ios.go -------------------------------------------------------------------------------- /markdown/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/markdown/markdown.go -------------------------------------------------------------------------------- /notify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/README.md -------------------------------------------------------------------------------- /notify/android/NotificationHelper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/android/NotificationHelper.jar -------------------------------------------------------------------------------- /notify/android/NotificationHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/android/NotificationHelper.java -------------------------------------------------------------------------------- /notify/android/notify_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/android/notify_android.go -------------------------------------------------------------------------------- /notify/cmd/png2bmp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/cmd/png2bmp/main.go -------------------------------------------------------------------------------- /notify/macos/niotify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/macos/niotify_test.go -------------------------------------------------------------------------------- /notify/macos/notify_macos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/macos/notify_macos.go -------------------------------------------------------------------------------- /notify/notification_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/notification_manager.go -------------------------------------------------------------------------------- /notify/notify_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/notify_android.go -------------------------------------------------------------------------------- /notify/notify_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/notify_darwin.go -------------------------------------------------------------------------------- /notify/notify_dbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/notify_dbus.go -------------------------------------------------------------------------------- /notify/notify_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/notify_unsupported.go -------------------------------------------------------------------------------- /notify/notify_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/notify/notify_windows.go -------------------------------------------------------------------------------- /outlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/README.md -------------------------------------------------------------------------------- /outlay/anim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/anim.go -------------------------------------------------------------------------------- /outlay/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/doc.go -------------------------------------------------------------------------------- /outlay/fan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/fan.go -------------------------------------------------------------------------------- /outlay/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/flow.go -------------------------------------------------------------------------------- /outlay/grid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/grid.go -------------------------------------------------------------------------------- /outlay/grid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/grid_test.go -------------------------------------------------------------------------------- /outlay/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/if.go -------------------------------------------------------------------------------- /outlay/localeflex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/localeflex.go -------------------------------------------------------------------------------- /outlay/localeinset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/localeinset.go -------------------------------------------------------------------------------- /outlay/multi-list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/multi-list.go -------------------------------------------------------------------------------- /outlay/rigid-rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/rigid-rows.go -------------------------------------------------------------------------------- /outlay/spacer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/outlay/spacer.go -------------------------------------------------------------------------------- /pref/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/README.md -------------------------------------------------------------------------------- /pref/battery/battery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/battery/battery.go -------------------------------------------------------------------------------- /pref/battery/battery_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/battery/battery_android.go -------------------------------------------------------------------------------- /pref/battery/battery_android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/battery/battery_android.jar -------------------------------------------------------------------------------- /pref/battery/battery_android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/battery/battery_android.java -------------------------------------------------------------------------------- /pref/battery/battery_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/battery/battery_js.go -------------------------------------------------------------------------------- /pref/battery/battery_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/battery/battery_linux.go -------------------------------------------------------------------------------- /pref/battery/battery_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/battery/battery_unsupported.go -------------------------------------------------------------------------------- /pref/battery/battery_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/battery/battery_windows.go -------------------------------------------------------------------------------- /pref/internal/xjni/jni_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/internal/xjni/jni_android.go -------------------------------------------------------------------------------- /pref/locale/locale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/locale/locale.go -------------------------------------------------------------------------------- /pref/locale/locale_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/locale/locale_android.go -------------------------------------------------------------------------------- /pref/locale/locale_android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/locale/locale_android.jar -------------------------------------------------------------------------------- /pref/locale/locale_android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/locale/locale_android.java -------------------------------------------------------------------------------- /pref/locale/locale_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/locale/locale_js.go -------------------------------------------------------------------------------- /pref/locale/locale_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/locale/locale_linux.go -------------------------------------------------------------------------------- /pref/locale/locale_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/locale/locale_unsupported.go -------------------------------------------------------------------------------- /pref/locale/locale_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/locale/locale_windows.go -------------------------------------------------------------------------------- /pref/theme/theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/theme/theme.go -------------------------------------------------------------------------------- /pref/theme/theme_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/theme/theme_android.go -------------------------------------------------------------------------------- /pref/theme/theme_android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/theme/theme_android.jar -------------------------------------------------------------------------------- /pref/theme/theme_android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/theme/theme_android.java -------------------------------------------------------------------------------- /pref/theme/theme_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/theme/theme_js.go -------------------------------------------------------------------------------- /pref/theme/theme_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/theme/theme_unsupported.go -------------------------------------------------------------------------------- /pref/theme/theme_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/pref/theme/theme_windows.go -------------------------------------------------------------------------------- /richtext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/richtext/README.md -------------------------------------------------------------------------------- /richtext/example_richtext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/richtext/example_richtext_test.go -------------------------------------------------------------------------------- /richtext/richtext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/richtext/richtext.go -------------------------------------------------------------------------------- /richtext/richtext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/richtext/richtext_test.go -------------------------------------------------------------------------------- /stroke/clip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/clip_test.go -------------------------------------------------------------------------------- /stroke/refs/TestDashedPathFlatCapEllipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestDashedPathFlatCapEllipse.png -------------------------------------------------------------------------------- /stroke/refs/TestDashedPathFlatCapZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestDashedPathFlatCapZ.png -------------------------------------------------------------------------------- /stroke/refs/TestDashedPathFlatCapZNoDash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestDashedPathFlatCapZNoDash.png -------------------------------------------------------------------------------- /stroke/refs/TestStrokedPathArc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestStrokedPathArc.png -------------------------------------------------------------------------------- /stroke/refs/TestStrokedPathBalloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestStrokedPathBalloon.png -------------------------------------------------------------------------------- /stroke/refs/TestStrokedPathBevelFlat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestStrokedPathBevelFlat.png -------------------------------------------------------------------------------- /stroke/refs/TestStrokedPathBevelRound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestStrokedPathBevelRound.png -------------------------------------------------------------------------------- /stroke/refs/TestStrokedPathBevelSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestStrokedPathBevelSquare.png -------------------------------------------------------------------------------- /stroke/refs/TestStrokedPathCoincidentControlPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestStrokedPathCoincidentControlPoint.png -------------------------------------------------------------------------------- /stroke/refs/TestStrokedPathFlatMiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestStrokedPathFlatMiter.png -------------------------------------------------------------------------------- /stroke/refs/TestStrokedPathFlatMiterInf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestStrokedPathFlatMiterInf.png -------------------------------------------------------------------------------- /stroke/refs/TestStrokedPathZeroWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/refs/TestStrokedPathZeroWidth.png -------------------------------------------------------------------------------- /stroke/stroke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/stroke.go -------------------------------------------------------------------------------- /stroke/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/stroke/util_test.go -------------------------------------------------------------------------------- /styledtext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/styledtext/README.md -------------------------------------------------------------------------------- /styledtext/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/styledtext/iterator.go -------------------------------------------------------------------------------- /styledtext/styledtext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/styledtext/styledtext.go -------------------------------------------------------------------------------- /styledtext/styledtext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gioui/gio-x/HEAD/styledtext/styledtext_test.go --------------------------------------------------------------------------------