├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── docs ├── add_doc_logo.zig ├── favicon.svg ├── image_gen_test_runner.zig ├── index.html ├── logo.svg └── readme-docs.md ├── examples ├── app.zig ├── dx11-ontop.zig ├── dx11-standalone.zig ├── raylib-ontop.zig ├── raylib-standalone.zig ├── raylib-zig-ontop.zig ├── raylib-zig-standalone.zig ├── sdl-ontop.zig ├── sdl-standalone.zig ├── sdl3gpu-ontop.zig ├── sdl3gpu-standalone.zig ├── web-test.zig └── zig-favicon.png ├── readme-accessibility.md ├── readme-implementation.md ├── screenshot_demo.png ├── src ├── AccessKit.zig ├── App.zig ├── Backend.zig ├── Color.zig ├── Data.zig ├── Debug.zig ├── Dialogs.zig ├── Dragging.zig ├── Event.zig ├── Examples.zig ├── Examples │ ├── StrokeTest.zig │ ├── animations.zig │ ├── basic_widgets.zig │ ├── calculator.zig │ ├── debugging.zig │ ├── dialogs.zig │ ├── grid.zig │ ├── icon_browser.zig │ ├── layout.zig │ ├── menus.zig │ ├── plots.zig │ ├── reorder_tree.zig │ ├── scroll_canvas.zig │ ├── scrolling.zig │ ├── struct_ui.zig │ ├── styling.zig │ ├── text_entry.zig │ ├── text_layout.zig │ └── theming.zig ├── Font.zig ├── JPGEncoder.zig ├── Options.zig ├── PNGEncoder.zig ├── Path.zig ├── Point.zig ├── Rect.zig ├── RectScale.zig ├── ScrollInfo.zig ├── Size.zig ├── Subwindows.zig ├── Texture.zig ├── Theme.zig ├── Triangles.zig ├── Vertex.zig ├── Widget.zig ├── WidgetData.zig ├── Window.zig ├── backends │ ├── common.zig │ ├── dx11.zig │ ├── index.html │ ├── raylib-c.zig │ ├── raylib-zig.zig │ ├── sdl.zig │ ├── sdl3gpu.zig │ ├── sdl3gpu │ │ ├── buildShaders.py │ │ ├── compiled │ │ │ ├── dxil │ │ │ │ ├── default.fragment.dxil │ │ │ │ └── default.vertex.dxil │ │ │ ├── msl │ │ │ │ ├── default.fragment.msl │ │ │ │ └── default.vertex.msl │ │ │ └── spv │ │ │ │ ├── default.fragment.spv │ │ │ │ └── default.vertex.spv │ │ ├── default.fragment.hlsl │ │ ├── default.vertex.hlsl │ │ ├── getting-shadercross.md │ │ └── shared.hlsl │ ├── testing.zig │ ├── web.js │ └── web.zig ├── cacheBuster.zig ├── dvui.zig ├── easing.zig ├── enums.zig ├── enums_backend.zig ├── fonts │ ├── Aleo │ │ ├── Aleo-Italic-VariableFont_wght.ttf │ │ ├── Aleo-VariableFont_wght.ttf │ │ ├── OFL.txt │ │ ├── README.txt │ │ └── static │ │ │ ├── Aleo-Black.ttf │ │ │ ├── Aleo-BlackItalic.ttf │ │ │ ├── Aleo-Bold.ttf │ │ │ ├── Aleo-BoldItalic.ttf │ │ │ ├── Aleo-ExtraBold.ttf │ │ │ ├── Aleo-ExtraBoldItalic.ttf │ │ │ ├── Aleo-ExtraLight.ttf │ │ │ ├── Aleo-ExtraLightItalic.ttf │ │ │ ├── Aleo-Italic.ttf │ │ │ ├── Aleo-Light.ttf │ │ │ ├── Aleo-LightItalic.ttf │ │ │ ├── Aleo-Medium.ttf │ │ │ ├── Aleo-MediumItalic.ttf │ │ │ ├── Aleo-Regular.ttf │ │ │ ├── Aleo-SemiBold.ttf │ │ │ ├── Aleo-SemiBoldItalic.ttf │ │ │ ├── Aleo-Thin.ttf │ │ │ └── Aleo-ThinItalic.ttf │ ├── NotoSansKR-Regular.ttf │ ├── OpenDyslexic │ │ ├── FONTLOG.txt │ │ ├── OFL-FAQ.txt │ │ ├── OFL.txt │ │ ├── README.md │ │ └── compiled │ │ │ ├── OpenDyslexic-Bold-Italic.otf │ │ │ ├── OpenDyslexic-Bold.otf │ │ │ ├── OpenDyslexic-Italic.otf │ │ │ └── OpenDyslexic-Regular.otf │ ├── Pixelify_Sans │ │ ├── OFL.txt │ │ ├── PixelifySans-VariableFont_wght.ttf │ │ ├── README.txt │ │ └── static │ │ │ ├── PixelifySans-Bold.ttf │ │ │ ├── PixelifySans-Medium.ttf │ │ │ ├── PixelifySans-Regular.ttf │ │ │ └── PixelifySans-SemiBold.ttf │ ├── bitstream-vera │ │ ├── COPYRIGHT.TXT │ │ ├── README.TXT │ │ ├── RELEASENOTES.TXT │ │ ├── Vera.ttf │ │ ├── VeraBI.ttf │ │ ├── VeraBd.ttf │ │ ├── VeraIt.ttf │ │ ├── VeraMoBI.ttf │ │ ├── VeraMoBd.ttf │ │ ├── VeraMoIt.ttf │ │ ├── VeraMono.ttf │ │ ├── VeraSe.ttf │ │ ├── VeraSeBd.ttf │ │ └── local.conf │ └── hack │ │ ├── Hack-Bold.ttf │ │ ├── Hack-BoldItalic.ttf │ │ ├── Hack-Italic.ttf │ │ ├── Hack-Regular.ttf │ │ └── LICENSE ├── hsluv.zig ├── icons │ ├── entypo.zig │ └── entypo │ │ ├── add-to-list.tvg │ │ ├── add-user.tvg │ │ ├── address.tvg │ │ ├── adjust.tvg │ │ ├── air.tvg │ │ ├── aircraft-landing.tvg │ │ ├── aircraft-take-off.tvg │ │ ├── aircraft.tvg │ │ ├── align-bottom.tvg │ │ ├── align-horizontal-middle.tvg │ │ ├── align-left.tvg │ │ ├── align-right.tvg │ │ ├── align-top.tvg │ │ ├── align-vertical-middle.tvg │ │ ├── archive.tvg │ │ ├── area-graph.tvg │ │ ├── arrow-bold-down.tvg │ │ ├── arrow-bold-left.tvg │ │ ├── arrow-bold-right.tvg │ │ ├── arrow-bold-up.tvg │ │ ├── arrow-down.tvg │ │ ├── arrow-left.tvg │ │ ├── arrow-long-down.tvg │ │ ├── arrow-long-left.tvg │ │ ├── arrow-long-right.tvg │ │ ├── arrow-long-up.tvg │ │ ├── arrow-right.tvg │ │ ├── arrow-up.tvg │ │ ├── arrow-with-circle-down.tvg │ │ ├── arrow-with-circle-left.tvg │ │ ├── arrow-with-circle-right.tvg │ │ ├── arrow-with-circle-up.tvg │ │ ├── attachment.tvg │ │ ├── awareness-ribbon.tvg │ │ ├── back-in-time.tvg │ │ ├── back.tvg │ │ ├── bar-graph.tvg │ │ ├── battery.tvg │ │ ├── beamed-note.tvg │ │ ├── bell.tvg │ │ ├── blackboard.tvg │ │ ├── block.tvg │ │ ├── book.tvg │ │ ├── bookmark.tvg │ │ ├── bookmarks.tvg │ │ ├── bowl.tvg │ │ ├── box.tvg │ │ ├── briefcase.tvg │ │ ├── browser.tvg │ │ ├── brush.tvg │ │ ├── bucket.tvg │ │ ├── bug.tvg │ │ ├── cake.tvg │ │ ├── calculator.tvg │ │ ├── calendar.tvg │ │ ├── camera.tvg │ │ ├── ccw.tvg │ │ ├── chat.tvg │ │ ├── check.tvg │ │ ├── chevron-down.tvg │ │ ├── chevron-left.tvg │ │ ├── chevron-right.tvg │ │ ├── chevron-small-down.tvg │ │ ├── chevron-small-left.tvg │ │ ├── chevron-small-right.tvg │ │ ├── chevron-small-up.tvg │ │ ├── chevron-thin-down.tvg │ │ ├── chevron-thin-left.tvg │ │ ├── chevron-thin-right.tvg │ │ ├── chevron-thin-up.tvg │ │ ├── chevron-up.tvg │ │ ├── chevron-with-circle-down.tvg │ │ ├── chevron-with-circle-left.tvg │ │ ├── chevron-with-circle-right.tvg │ │ ├── chevron-with-circle-up.tvg │ │ ├── circle-with-cross.tvg │ │ ├── circle-with-minus.tvg │ │ ├── circle-with-plus.tvg │ │ ├── circle.tvg │ │ ├── circular-graph.tvg │ │ ├── clapperboard.tvg │ │ ├── classic-computer.tvg │ │ ├── clipboard.tvg │ │ ├── clock.tvg │ │ ├── cloud.tvg │ │ ├── code.tvg │ │ ├── cog.tvg │ │ ├── colours.tvg │ │ ├── compass.tvg │ │ ├── controller-fast-backward.tvg │ │ ├── controller-fast-forward.tvg │ │ ├── controller-jump-to-start.tvg │ │ ├── controller-next.tvg │ │ ├── controller-pause.tvg │ │ ├── controller-play.tvg │ │ ├── controller-record.tvg │ │ ├── controller-stop.tvg │ │ ├── controller-volume.tvg │ │ ├── copy.tvg │ │ ├── creative-commons-attribution.tvg │ │ ├── creative-commons-noderivs.tvg │ │ ├── creative-commons-noncommercial-eu.tvg │ │ ├── creative-commons-noncommercial-us.tvg │ │ ├── creative-commons-public-domain.tvg │ │ ├── creative-commons-remix.tvg │ │ ├── creative-commons-share.tvg │ │ ├── creative-commons-sharealike.tvg │ │ ├── creative-commons.tvg │ │ ├── credit-card.tvg │ │ ├── credit.tvg │ │ ├── crop.tvg │ │ ├── cross.tvg │ │ ├── cup.tvg │ │ ├── cw.tvg │ │ ├── cycle.tvg │ │ ├── database.tvg │ │ ├── dial-pad.tvg │ │ ├── direction.tvg │ │ ├── document-landscape.tvg │ │ ├── document.tvg │ │ ├── documents.tvg │ │ ├── dot-single.tvg │ │ ├── dots-three-horizontal.tvg │ │ ├── dots-three-vertical.tvg │ │ ├── dots-two-horizontal.tvg │ │ ├── dots-two-vertical.tvg │ │ ├── download.tvg │ │ ├── drink.tvg │ │ ├── drive.tvg │ │ ├── drop.tvg │ │ ├── dropbox.tvg │ │ ├── edit.tvg │ │ ├── email.tvg │ │ ├── emoji-flirt.tvg │ │ ├── emoji-happy.tvg │ │ ├── emoji-neutral.tvg │ │ ├── emoji-sad.tvg │ │ ├── erase.tvg │ │ ├── eraser.tvg │ │ ├── export.tvg │ │ ├── eye-with-line.tvg │ │ ├── eye.tvg │ │ ├── feather.tvg │ │ ├── fingerprint.tvg │ │ ├── flag.tvg │ │ ├── flash.tvg │ │ ├── flashlight.tvg │ │ ├── flat-brush.tvg │ │ ├── flow-branch.tvg │ │ ├── flow-cascade.tvg │ │ ├── flow-line.tvg │ │ ├── flow-parallel.tvg │ │ ├── flow-tree.tvg │ │ ├── flower.tvg │ │ ├── folder-images.tvg │ │ ├── folder-music.tvg │ │ ├── folder-video.tvg │ │ ├── folder.tvg │ │ ├── forward.tvg │ │ ├── funnel.tvg │ │ ├── game-controller.tvg │ │ ├── gauge.tvg │ │ ├── globe.tvg │ │ ├── graduation-cap.tvg │ │ ├── grid.tvg │ │ ├── hair-cross.tvg │ │ ├── hand.tvg │ │ ├── heart-outlined.tvg │ │ ├── heart.tvg │ │ ├── help-with-circle.tvg │ │ ├── help.tvg │ │ ├── home.tvg │ │ ├── hour-glass.tvg │ │ ├── image-inverted.tvg │ │ ├── image.tvg │ │ ├── images.tvg │ │ ├── inbox.tvg │ │ ├── infinity.tvg │ │ ├── info-with-circle.tvg │ │ ├── info.tvg │ │ ├── install.tvg │ │ ├── key.tvg │ │ ├── keyboard.tvg │ │ ├── lab-flask.tvg │ │ ├── landline.tvg │ │ ├── language.tvg │ │ ├── laptop.tvg │ │ ├── layers.tvg │ │ ├── leaf.tvg │ │ ├── level-down.tvg │ │ ├── level-up.tvg │ │ ├── lifebuoy.tvg │ │ ├── light-bulb.tvg │ │ ├── light-down.tvg │ │ ├── light-up.tvg │ │ ├── line-graph.tvg │ │ ├── link.tvg │ │ ├── list.tvg │ │ ├── location-pin.tvg │ │ ├── location.tvg │ │ ├── lock-open.tvg │ │ ├── lock.tvg │ │ ├── log-out.tvg │ │ ├── login.tvg │ │ ├── loop.tvg │ │ ├── magnet.tvg │ │ ├── magnifying-glass.tvg │ │ ├── mail-with-circle.tvg │ │ ├── mail.tvg │ │ ├── man.tvg │ │ ├── map.tvg │ │ ├── mask.tvg │ │ ├── medal.tvg │ │ ├── megaphone.tvg │ │ ├── menu.tvg │ │ ├── merge.tvg │ │ ├── message.tvg │ │ ├── mic.tvg │ │ ├── minus.tvg │ │ ├── mobile.tvg │ │ ├── modern-mic.tvg │ │ ├── moon.tvg │ │ ├── mouse-pointer.tvg │ │ ├── mouse.tvg │ │ ├── music.tvg │ │ ├── network.tvg │ │ ├── new-message.tvg │ │ ├── new.tvg │ │ ├── news.tvg │ │ ├── newsletter.tvg │ │ ├── note.tvg │ │ ├── notification.tvg │ │ ├── notifications-off.tvg │ │ ├── old-mobile.tvg │ │ ├── old-phone.tvg │ │ ├── open-book.tvg │ │ ├── palette.tvg │ │ ├── paper-plane.tvg │ │ ├── pencil.tvg │ │ ├── phone.tvg │ │ ├── pie-chart.tvg │ │ ├── pin.tvg │ │ ├── plus.tvg │ │ ├── popup.tvg │ │ ├── power-plug.tvg │ │ ├── price-ribbon.tvg │ │ ├── price-tag.tvg │ │ ├── print.tvg │ │ ├── progress-empty.tvg │ │ ├── progress-full.tvg │ │ ├── progress-one.tvg │ │ ├── progress-two.tvg │ │ ├── publish.tvg │ │ ├── quote.tvg │ │ ├── radio.tvg │ │ ├── rainbow.tvg │ │ ├── remove-user.tvg │ │ ├── reply-all.tvg │ │ ├── reply.tvg │ │ ├── resize-100.tvg │ │ ├── resize-full-screen.tvg │ │ ├── retweet.tvg │ │ ├── rocket.tvg │ │ ├── round-brush.tvg │ │ ├── rss.tvg │ │ ├── ruler.tvg │ │ ├── save.tvg │ │ ├── scissors.tvg │ │ ├── select-arrows.tvg │ │ ├── share-alternative.tvg │ │ ├── share.tvg │ │ ├── shareable.tvg │ │ ├── shield.tvg │ │ ├── shop.tvg │ │ ├── shopping-bag.tvg │ │ ├── shopping-basket.tvg │ │ ├── shopping-cart.tvg │ │ ├── shuffle.tvg │ │ ├── signal.tvg │ │ ├── sound-mix.tvg │ │ ├── sound-mute.tvg │ │ ├── sound.tvg │ │ ├── sports-club.tvg │ │ ├── spreadsheet.tvg │ │ ├── squared-cross.tvg │ │ ├── squared-minus.tvg │ │ ├── squared-plus.tvg │ │ ├── star-outlined.tvg │ │ ├── star.tvg │ │ ├── stopwatch.tvg │ │ ├── suitcase.tvg │ │ ├── swap.tvg │ │ ├── swarm.tvg │ │ ├── switch.tvg │ │ ├── tablet-mobile-combo.tvg │ │ ├── tablet.tvg │ │ ├── tag.tvg │ │ ├── tail-spin.tvg │ │ ├── text-document-inverted.tvg │ │ ├── text-document.tvg │ │ ├── text.tvg │ │ ├── thermometer.tvg │ │ ├── thumbs-down.tvg │ │ ├── thumbs-up.tvg │ │ ├── thunder-cloud.tvg │ │ ├── ticket.tvg │ │ ├── time-slot.tvg │ │ ├── tools.tvg │ │ ├── traffic-cone.tvg │ │ ├── trash.tvg │ │ ├── tree.tvg │ │ ├── triangle-down.tvg │ │ ├── triangle-left.tvg │ │ ├── triangle-right.tvg │ │ ├── triangle-up.tvg │ │ ├── trophy.tvg │ │ ├── tv.tvg │ │ ├── typing.tvg │ │ ├── uninstall.tvg │ │ ├── unread.tvg │ │ ├── untag.tvg │ │ ├── upload-to-cloud.tvg │ │ ├── upload.tvg │ │ ├── user.tvg │ │ ├── users.tvg │ │ ├── v-card.tvg │ │ ├── video-camera.tvg │ │ ├── video.tvg │ │ ├── vinyl.tvg │ │ ├── voicemail.tvg │ │ ├── wallet.tvg │ │ ├── warning.tvg │ │ └── water.tvg ├── import_widgets.zig ├── layout.zig ├── main.manifest ├── native_dialogs.zig ├── ninepatch98.png ├── render.zig ├── selection.zig ├── struct_ui.zig ├── testing.zig ├── themes │ ├── Adwaita.zig │ ├── adwaita_dark.zon │ ├── adwaita_light.zon │ ├── dracula.zon │ ├── gruvbox.zon │ ├── jungle.zon │ └── opendyslexic.zon ├── tracking_hash_map.zig ├── widgets │ ├── AnimateWidget.zig │ ├── BoxWidget.zig │ ├── ButtonWidget.zig │ ├── CacheWidget.zig │ ├── ColorPickerWidget.zig │ ├── ContextWidget.zig │ ├── DropdownWidget.zig │ ├── FlexBoxWidget.zig │ ├── FloatingMenuWidget.zig │ ├── FloatingTooltipWidget.zig │ ├── FloatingWidget.zig │ ├── FloatingWindowWidget.zig │ ├── FocusGroupWidget.zig │ ├── GridWidget.zig │ ├── GridWidget │ │ ├── CellStyle.zig │ │ └── testing.zig │ ├── IconWidget.zig │ ├── LabelWidget.zig │ ├── MenuItemWidget.zig │ ├── MenuWidget.zig │ ├── OverlayWidget.zig │ ├── PanedWidget.zig │ ├── PlotWidget.zig │ ├── ReorderWidget.zig │ ├── ScaleWidget.zig │ ├── ScrollAreaWidget.zig │ ├── ScrollBarWidget.zig │ ├── ScrollContainerWidget.zig │ ├── SuggestionWidget.zig │ ├── TabsWidget.zig │ ├── TextEntryWidget.zig │ ├── TextLayoutWidget.zig │ ├── TreeWidget.zig │ └── VirtualParentWidget.zig ├── zig-favicon.png └── zig-mark.svg ├── tools └── accesskit_gen.zig └── vendor ├── stb ├── stb_image.h ├── stb_image_impl.c ├── stb_image_libc.c ├── stb_image_write.h ├── stb_image_write_impl.c ├── stb_truetype.h ├── stb_truetype_impl.c └── stb_truetype_libc.c └── tfd ├── tinyfiledialogs.c └── tinyfiledialogs.h /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/README.md -------------------------------------------------------------------------------- /docs/add_doc_logo.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/docs/add_doc_logo.zig -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/image_gen_test_runner.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/docs/image_gen_test_runner.zig -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/readme-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/docs/readme-docs.md -------------------------------------------------------------------------------- /examples/app.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/app.zig -------------------------------------------------------------------------------- /examples/dx11-ontop.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/dx11-ontop.zig -------------------------------------------------------------------------------- /examples/dx11-standalone.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/dx11-standalone.zig -------------------------------------------------------------------------------- /examples/raylib-ontop.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/raylib-ontop.zig -------------------------------------------------------------------------------- /examples/raylib-standalone.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/raylib-standalone.zig -------------------------------------------------------------------------------- /examples/raylib-zig-ontop.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/raylib-zig-ontop.zig -------------------------------------------------------------------------------- /examples/raylib-zig-standalone.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/raylib-zig-standalone.zig -------------------------------------------------------------------------------- /examples/sdl-ontop.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/sdl-ontop.zig -------------------------------------------------------------------------------- /examples/sdl-standalone.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/sdl-standalone.zig -------------------------------------------------------------------------------- /examples/sdl3gpu-ontop.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/sdl3gpu-ontop.zig -------------------------------------------------------------------------------- /examples/sdl3gpu-standalone.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/sdl3gpu-standalone.zig -------------------------------------------------------------------------------- /examples/web-test.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/web-test.zig -------------------------------------------------------------------------------- /examples/zig-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/examples/zig-favicon.png -------------------------------------------------------------------------------- /readme-accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/readme-accessibility.md -------------------------------------------------------------------------------- /readme-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/readme-implementation.md -------------------------------------------------------------------------------- /screenshot_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/screenshot_demo.png -------------------------------------------------------------------------------- /src/AccessKit.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/AccessKit.zig -------------------------------------------------------------------------------- /src/App.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/App.zig -------------------------------------------------------------------------------- /src/Backend.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Backend.zig -------------------------------------------------------------------------------- /src/Color.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Color.zig -------------------------------------------------------------------------------- /src/Data.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Data.zig -------------------------------------------------------------------------------- /src/Debug.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Debug.zig -------------------------------------------------------------------------------- /src/Dialogs.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Dialogs.zig -------------------------------------------------------------------------------- /src/Dragging.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Dragging.zig -------------------------------------------------------------------------------- /src/Event.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Event.zig -------------------------------------------------------------------------------- /src/Examples.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples.zig -------------------------------------------------------------------------------- /src/Examples/StrokeTest.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/StrokeTest.zig -------------------------------------------------------------------------------- /src/Examples/animations.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/animations.zig -------------------------------------------------------------------------------- /src/Examples/basic_widgets.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/basic_widgets.zig -------------------------------------------------------------------------------- /src/Examples/calculator.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/calculator.zig -------------------------------------------------------------------------------- /src/Examples/debugging.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/debugging.zig -------------------------------------------------------------------------------- /src/Examples/dialogs.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/dialogs.zig -------------------------------------------------------------------------------- /src/Examples/grid.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/grid.zig -------------------------------------------------------------------------------- /src/Examples/icon_browser.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/icon_browser.zig -------------------------------------------------------------------------------- /src/Examples/layout.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/layout.zig -------------------------------------------------------------------------------- /src/Examples/menus.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/menus.zig -------------------------------------------------------------------------------- /src/Examples/plots.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/plots.zig -------------------------------------------------------------------------------- /src/Examples/reorder_tree.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/reorder_tree.zig -------------------------------------------------------------------------------- /src/Examples/scroll_canvas.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/scroll_canvas.zig -------------------------------------------------------------------------------- /src/Examples/scrolling.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/scrolling.zig -------------------------------------------------------------------------------- /src/Examples/struct_ui.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/struct_ui.zig -------------------------------------------------------------------------------- /src/Examples/styling.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/styling.zig -------------------------------------------------------------------------------- /src/Examples/text_entry.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/text_entry.zig -------------------------------------------------------------------------------- /src/Examples/text_layout.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/text_layout.zig -------------------------------------------------------------------------------- /src/Examples/theming.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Examples/theming.zig -------------------------------------------------------------------------------- /src/Font.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Font.zig -------------------------------------------------------------------------------- /src/JPGEncoder.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/JPGEncoder.zig -------------------------------------------------------------------------------- /src/Options.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Options.zig -------------------------------------------------------------------------------- /src/PNGEncoder.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/PNGEncoder.zig -------------------------------------------------------------------------------- /src/Path.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Path.zig -------------------------------------------------------------------------------- /src/Point.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Point.zig -------------------------------------------------------------------------------- /src/Rect.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Rect.zig -------------------------------------------------------------------------------- /src/RectScale.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/RectScale.zig -------------------------------------------------------------------------------- /src/ScrollInfo.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/ScrollInfo.zig -------------------------------------------------------------------------------- /src/Size.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Size.zig -------------------------------------------------------------------------------- /src/Subwindows.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Subwindows.zig -------------------------------------------------------------------------------- /src/Texture.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Texture.zig -------------------------------------------------------------------------------- /src/Theme.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Theme.zig -------------------------------------------------------------------------------- /src/Triangles.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Triangles.zig -------------------------------------------------------------------------------- /src/Vertex.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Vertex.zig -------------------------------------------------------------------------------- /src/Widget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Widget.zig -------------------------------------------------------------------------------- /src/WidgetData.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/WidgetData.zig -------------------------------------------------------------------------------- /src/Window.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/Window.zig -------------------------------------------------------------------------------- /src/backends/common.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/common.zig -------------------------------------------------------------------------------- /src/backends/dx11.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/dx11.zig -------------------------------------------------------------------------------- /src/backends/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/index.html -------------------------------------------------------------------------------- /src/backends/raylib-c.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/raylib-c.zig -------------------------------------------------------------------------------- /src/backends/raylib-zig.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/raylib-zig.zig -------------------------------------------------------------------------------- /src/backends/sdl.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl.zig -------------------------------------------------------------------------------- /src/backends/sdl3gpu.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu.zig -------------------------------------------------------------------------------- /src/backends/sdl3gpu/buildShaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/buildShaders.py -------------------------------------------------------------------------------- /src/backends/sdl3gpu/compiled/dxil/default.fragment.dxil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/compiled/dxil/default.fragment.dxil -------------------------------------------------------------------------------- /src/backends/sdl3gpu/compiled/dxil/default.vertex.dxil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/compiled/dxil/default.vertex.dxil -------------------------------------------------------------------------------- /src/backends/sdl3gpu/compiled/msl/default.fragment.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/compiled/msl/default.fragment.msl -------------------------------------------------------------------------------- /src/backends/sdl3gpu/compiled/msl/default.vertex.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/compiled/msl/default.vertex.msl -------------------------------------------------------------------------------- /src/backends/sdl3gpu/compiled/spv/default.fragment.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/compiled/spv/default.fragment.spv -------------------------------------------------------------------------------- /src/backends/sdl3gpu/compiled/spv/default.vertex.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/compiled/spv/default.vertex.spv -------------------------------------------------------------------------------- /src/backends/sdl3gpu/default.fragment.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/default.fragment.hlsl -------------------------------------------------------------------------------- /src/backends/sdl3gpu/default.vertex.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/default.vertex.hlsl -------------------------------------------------------------------------------- /src/backends/sdl3gpu/getting-shadercross.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/getting-shadercross.md -------------------------------------------------------------------------------- /src/backends/sdl3gpu/shared.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/sdl3gpu/shared.hlsl -------------------------------------------------------------------------------- /src/backends/testing.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/testing.zig -------------------------------------------------------------------------------- /src/backends/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/web.js -------------------------------------------------------------------------------- /src/backends/web.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/backends/web.zig -------------------------------------------------------------------------------- /src/cacheBuster.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/cacheBuster.zig -------------------------------------------------------------------------------- /src/dvui.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/dvui.zig -------------------------------------------------------------------------------- /src/easing.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/easing.zig -------------------------------------------------------------------------------- /src/enums.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/enums.zig -------------------------------------------------------------------------------- /src/enums_backend.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/enums_backend.zig -------------------------------------------------------------------------------- /src/fonts/Aleo/Aleo-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/Aleo-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/Aleo-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/Aleo-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/OFL.txt -------------------------------------------------------------------------------- /src/fonts/Aleo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/README.txt -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-Black.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-BlackItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-Bold.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-BoldItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-ExtraBold.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-ExtraLight.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-Italic.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-Light.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-LightItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-Medium.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-MediumItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-SemiBold.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-Thin.ttf -------------------------------------------------------------------------------- /src/fonts/Aleo/static/Aleo-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Aleo/static/Aleo-ThinItalic.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/NotoSansKR-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/FONTLOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/OpenDyslexic/FONTLOG.txt -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/OFL-FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/OpenDyslexic/OFL-FAQ.txt -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/OpenDyslexic/OFL.txt -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/OpenDyslexic/README.md -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/compiled/OpenDyslexic-Bold-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/OpenDyslexic/compiled/OpenDyslexic-Bold-Italic.otf -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/compiled/OpenDyslexic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/OpenDyslexic/compiled/OpenDyslexic-Bold.otf -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/compiled/OpenDyslexic-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/OpenDyslexic/compiled/OpenDyslexic-Italic.otf -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/compiled/OpenDyslexic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/OpenDyslexic/compiled/OpenDyslexic-Regular.otf -------------------------------------------------------------------------------- /src/fonts/Pixelify_Sans/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Pixelify_Sans/OFL.txt -------------------------------------------------------------------------------- /src/fonts/Pixelify_Sans/PixelifySans-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Pixelify_Sans/PixelifySans-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/fonts/Pixelify_Sans/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Pixelify_Sans/README.txt -------------------------------------------------------------------------------- /src/fonts/Pixelify_Sans/static/PixelifySans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Pixelify_Sans/static/PixelifySans-Bold.ttf -------------------------------------------------------------------------------- /src/fonts/Pixelify_Sans/static/PixelifySans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Pixelify_Sans/static/PixelifySans-Medium.ttf -------------------------------------------------------------------------------- /src/fonts/Pixelify_Sans/static/PixelifySans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Pixelify_Sans/static/PixelifySans-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/Pixelify_Sans/static/PixelifySans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/Pixelify_Sans/static/PixelifySans-SemiBold.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/COPYRIGHT.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/COPYRIGHT.TXT -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/README.TXT -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/RELEASENOTES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/RELEASENOTES.TXT -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/Vera.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/VeraBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/VeraBI.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/VeraBd.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/VeraIt.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/VeraMoBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/VeraMoBI.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/VeraMoBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/VeraMoBd.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/VeraMoIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/VeraMoIt.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/VeraMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/VeraMono.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/VeraSe.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/VeraSe.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/VeraSeBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/VeraSeBd.ttf -------------------------------------------------------------------------------- /src/fonts/bitstream-vera/local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/bitstream-vera/local.conf -------------------------------------------------------------------------------- /src/fonts/hack/Hack-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/hack/Hack-Bold.ttf -------------------------------------------------------------------------------- /src/fonts/hack/Hack-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/hack/Hack-BoldItalic.ttf -------------------------------------------------------------------------------- /src/fonts/hack/Hack-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/hack/Hack-Italic.ttf -------------------------------------------------------------------------------- /src/fonts/hack/Hack-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/hack/Hack-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/hack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/fonts/hack/LICENSE -------------------------------------------------------------------------------- /src/hsluv.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/hsluv.zig -------------------------------------------------------------------------------- /src/icons/entypo.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo.zig -------------------------------------------------------------------------------- /src/icons/entypo/add-to-list.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/add-to-list.tvg -------------------------------------------------------------------------------- /src/icons/entypo/add-user.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/add-user.tvg -------------------------------------------------------------------------------- /src/icons/entypo/address.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/address.tvg -------------------------------------------------------------------------------- /src/icons/entypo/adjust.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/adjust.tvg -------------------------------------------------------------------------------- /src/icons/entypo/air.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/air.tvg -------------------------------------------------------------------------------- /src/icons/entypo/aircraft-landing.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/aircraft-landing.tvg -------------------------------------------------------------------------------- /src/icons/entypo/aircraft-take-off.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/aircraft-take-off.tvg -------------------------------------------------------------------------------- /src/icons/entypo/aircraft.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/aircraft.tvg -------------------------------------------------------------------------------- /src/icons/entypo/align-bottom.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/align-bottom.tvg -------------------------------------------------------------------------------- /src/icons/entypo/align-horizontal-middle.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/align-horizontal-middle.tvg -------------------------------------------------------------------------------- /src/icons/entypo/align-left.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/align-left.tvg -------------------------------------------------------------------------------- /src/icons/entypo/align-right.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/align-right.tvg -------------------------------------------------------------------------------- /src/icons/entypo/align-top.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/align-top.tvg -------------------------------------------------------------------------------- /src/icons/entypo/align-vertical-middle.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/align-vertical-middle.tvg -------------------------------------------------------------------------------- /src/icons/entypo/archive.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/archive.tvg -------------------------------------------------------------------------------- /src/icons/entypo/area-graph.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/area-graph.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-bold-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-bold-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-bold-left.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-bold-left.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-bold-right.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-bold-right.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-bold-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-bold-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-left.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-left.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-long-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-long-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-long-left.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-long-left.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-long-right.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-long-right.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-long-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-long-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-right.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-right.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-with-circle-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-with-circle-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-with-circle-left.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-with-circle-left.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-with-circle-right.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-with-circle-right.tvg -------------------------------------------------------------------------------- /src/icons/entypo/arrow-with-circle-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/arrow-with-circle-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/attachment.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/attachment.tvg -------------------------------------------------------------------------------- /src/icons/entypo/awareness-ribbon.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/awareness-ribbon.tvg -------------------------------------------------------------------------------- /src/icons/entypo/back-in-time.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/back-in-time.tvg -------------------------------------------------------------------------------- /src/icons/entypo/back.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/back.tvg -------------------------------------------------------------------------------- /src/icons/entypo/bar-graph.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/bar-graph.tvg -------------------------------------------------------------------------------- /src/icons/entypo/battery.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/battery.tvg -------------------------------------------------------------------------------- /src/icons/entypo/beamed-note.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/beamed-note.tvg -------------------------------------------------------------------------------- /src/icons/entypo/bell.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/bell.tvg -------------------------------------------------------------------------------- /src/icons/entypo/blackboard.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/blackboard.tvg -------------------------------------------------------------------------------- /src/icons/entypo/block.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/block.tvg -------------------------------------------------------------------------------- /src/icons/entypo/book.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/book.tvg -------------------------------------------------------------------------------- /src/icons/entypo/bookmark.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/bookmark.tvg -------------------------------------------------------------------------------- /src/icons/entypo/bookmarks.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/bookmarks.tvg -------------------------------------------------------------------------------- /src/icons/entypo/bowl.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/bowl.tvg -------------------------------------------------------------------------------- /src/icons/entypo/box.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/box.tvg -------------------------------------------------------------------------------- /src/icons/entypo/briefcase.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/briefcase.tvg -------------------------------------------------------------------------------- /src/icons/entypo/browser.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/browser.tvg -------------------------------------------------------------------------------- /src/icons/entypo/brush.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/brush.tvg -------------------------------------------------------------------------------- /src/icons/entypo/bucket.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/bucket.tvg -------------------------------------------------------------------------------- /src/icons/entypo/bug.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/bug.tvg -------------------------------------------------------------------------------- /src/icons/entypo/cake.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/cake.tvg -------------------------------------------------------------------------------- /src/icons/entypo/calculator.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/calculator.tvg -------------------------------------------------------------------------------- /src/icons/entypo/calendar.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/calendar.tvg -------------------------------------------------------------------------------- /src/icons/entypo/camera.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/camera.tvg -------------------------------------------------------------------------------- /src/icons/entypo/ccw.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/ccw.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chat.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chat.tvg -------------------------------------------------------------------------------- /src/icons/entypo/check.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/check.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-left.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-left.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-right.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-right.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-small-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-small-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-small-left.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-small-left.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-small-right.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-small-right.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-small-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-small-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-thin-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-thin-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-thin-left.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-thin-left.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-thin-right.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-thin-right.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-thin-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-thin-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-with-circle-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-with-circle-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-with-circle-left.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-with-circle-left.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-with-circle-right.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-with-circle-right.tvg -------------------------------------------------------------------------------- /src/icons/entypo/chevron-with-circle-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/chevron-with-circle-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/circle-with-cross.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/circle-with-cross.tvg -------------------------------------------------------------------------------- /src/icons/entypo/circle-with-minus.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/circle-with-minus.tvg -------------------------------------------------------------------------------- /src/icons/entypo/circle-with-plus.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/circle-with-plus.tvg -------------------------------------------------------------------------------- /src/icons/entypo/circle.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/circle.tvg -------------------------------------------------------------------------------- /src/icons/entypo/circular-graph.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/circular-graph.tvg -------------------------------------------------------------------------------- /src/icons/entypo/clapperboard.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/clapperboard.tvg -------------------------------------------------------------------------------- /src/icons/entypo/classic-computer.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/classic-computer.tvg -------------------------------------------------------------------------------- /src/icons/entypo/clipboard.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/clipboard.tvg -------------------------------------------------------------------------------- /src/icons/entypo/clock.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/clock.tvg -------------------------------------------------------------------------------- /src/icons/entypo/cloud.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/cloud.tvg -------------------------------------------------------------------------------- /src/icons/entypo/code.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/code.tvg -------------------------------------------------------------------------------- /src/icons/entypo/cog.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/cog.tvg -------------------------------------------------------------------------------- /src/icons/entypo/colours.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/colours.tvg -------------------------------------------------------------------------------- /src/icons/entypo/compass.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/compass.tvg -------------------------------------------------------------------------------- /src/icons/entypo/controller-fast-backward.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/controller-fast-backward.tvg -------------------------------------------------------------------------------- /src/icons/entypo/controller-fast-forward.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/controller-fast-forward.tvg -------------------------------------------------------------------------------- /src/icons/entypo/controller-jump-to-start.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/controller-jump-to-start.tvg -------------------------------------------------------------------------------- /src/icons/entypo/controller-next.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/controller-next.tvg -------------------------------------------------------------------------------- /src/icons/entypo/controller-pause.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/controller-pause.tvg -------------------------------------------------------------------------------- /src/icons/entypo/controller-play.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/controller-play.tvg -------------------------------------------------------------------------------- /src/icons/entypo/controller-record.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/controller-record.tvg -------------------------------------------------------------------------------- /src/icons/entypo/controller-stop.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/controller-stop.tvg -------------------------------------------------------------------------------- /src/icons/entypo/controller-volume.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/controller-volume.tvg -------------------------------------------------------------------------------- /src/icons/entypo/copy.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/copy.tvg -------------------------------------------------------------------------------- /src/icons/entypo/creative-commons-attribution.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/creative-commons-attribution.tvg -------------------------------------------------------------------------------- /src/icons/entypo/creative-commons-noderivs.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/creative-commons-noderivs.tvg -------------------------------------------------------------------------------- /src/icons/entypo/creative-commons-noncommercial-eu.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/creative-commons-noncommercial-eu.tvg -------------------------------------------------------------------------------- /src/icons/entypo/creative-commons-noncommercial-us.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/creative-commons-noncommercial-us.tvg -------------------------------------------------------------------------------- /src/icons/entypo/creative-commons-public-domain.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/creative-commons-public-domain.tvg -------------------------------------------------------------------------------- /src/icons/entypo/creative-commons-remix.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/creative-commons-remix.tvg -------------------------------------------------------------------------------- /src/icons/entypo/creative-commons-share.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/creative-commons-share.tvg -------------------------------------------------------------------------------- /src/icons/entypo/creative-commons-sharealike.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/creative-commons-sharealike.tvg -------------------------------------------------------------------------------- /src/icons/entypo/creative-commons.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/creative-commons.tvg -------------------------------------------------------------------------------- /src/icons/entypo/credit-card.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/credit-card.tvg -------------------------------------------------------------------------------- /src/icons/entypo/credit.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/credit.tvg -------------------------------------------------------------------------------- /src/icons/entypo/crop.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/crop.tvg -------------------------------------------------------------------------------- /src/icons/entypo/cross.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/cross.tvg -------------------------------------------------------------------------------- /src/icons/entypo/cup.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/cup.tvg -------------------------------------------------------------------------------- /src/icons/entypo/cw.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/cw.tvg -------------------------------------------------------------------------------- /src/icons/entypo/cycle.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/cycle.tvg -------------------------------------------------------------------------------- /src/icons/entypo/database.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/database.tvg -------------------------------------------------------------------------------- /src/icons/entypo/dial-pad.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/dial-pad.tvg -------------------------------------------------------------------------------- /src/icons/entypo/direction.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/direction.tvg -------------------------------------------------------------------------------- /src/icons/entypo/document-landscape.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/document-landscape.tvg -------------------------------------------------------------------------------- /src/icons/entypo/document.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/document.tvg -------------------------------------------------------------------------------- /src/icons/entypo/documents.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/documents.tvg -------------------------------------------------------------------------------- /src/icons/entypo/dot-single.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/dot-single.tvg -------------------------------------------------------------------------------- /src/icons/entypo/dots-three-horizontal.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/dots-three-horizontal.tvg -------------------------------------------------------------------------------- /src/icons/entypo/dots-three-vertical.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/dots-three-vertical.tvg -------------------------------------------------------------------------------- /src/icons/entypo/dots-two-horizontal.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/dots-two-horizontal.tvg -------------------------------------------------------------------------------- /src/icons/entypo/dots-two-vertical.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/dots-two-vertical.tvg -------------------------------------------------------------------------------- /src/icons/entypo/download.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/download.tvg -------------------------------------------------------------------------------- /src/icons/entypo/drink.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/drink.tvg -------------------------------------------------------------------------------- /src/icons/entypo/drive.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/drive.tvg -------------------------------------------------------------------------------- /src/icons/entypo/drop.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/drop.tvg -------------------------------------------------------------------------------- /src/icons/entypo/dropbox.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/dropbox.tvg -------------------------------------------------------------------------------- /src/icons/entypo/edit.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/edit.tvg -------------------------------------------------------------------------------- /src/icons/entypo/email.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/email.tvg -------------------------------------------------------------------------------- /src/icons/entypo/emoji-flirt.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/emoji-flirt.tvg -------------------------------------------------------------------------------- /src/icons/entypo/emoji-happy.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/emoji-happy.tvg -------------------------------------------------------------------------------- /src/icons/entypo/emoji-neutral.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/emoji-neutral.tvg -------------------------------------------------------------------------------- /src/icons/entypo/emoji-sad.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/emoji-sad.tvg -------------------------------------------------------------------------------- /src/icons/entypo/erase.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/erase.tvg -------------------------------------------------------------------------------- /src/icons/entypo/eraser.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/eraser.tvg -------------------------------------------------------------------------------- /src/icons/entypo/export.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/export.tvg -------------------------------------------------------------------------------- /src/icons/entypo/eye-with-line.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/eye-with-line.tvg -------------------------------------------------------------------------------- /src/icons/entypo/eye.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/eye.tvg -------------------------------------------------------------------------------- /src/icons/entypo/feather.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/feather.tvg -------------------------------------------------------------------------------- /src/icons/entypo/fingerprint.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/fingerprint.tvg -------------------------------------------------------------------------------- /src/icons/entypo/flag.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/flag.tvg -------------------------------------------------------------------------------- /src/icons/entypo/flash.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/flash.tvg -------------------------------------------------------------------------------- /src/icons/entypo/flashlight.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/flashlight.tvg -------------------------------------------------------------------------------- /src/icons/entypo/flat-brush.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/flat-brush.tvg -------------------------------------------------------------------------------- /src/icons/entypo/flow-branch.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/flow-branch.tvg -------------------------------------------------------------------------------- /src/icons/entypo/flow-cascade.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/flow-cascade.tvg -------------------------------------------------------------------------------- /src/icons/entypo/flow-line.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/flow-line.tvg -------------------------------------------------------------------------------- /src/icons/entypo/flow-parallel.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/flow-parallel.tvg -------------------------------------------------------------------------------- /src/icons/entypo/flow-tree.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/flow-tree.tvg -------------------------------------------------------------------------------- /src/icons/entypo/flower.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/flower.tvg -------------------------------------------------------------------------------- /src/icons/entypo/folder-images.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/folder-images.tvg -------------------------------------------------------------------------------- /src/icons/entypo/folder-music.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/folder-music.tvg -------------------------------------------------------------------------------- /src/icons/entypo/folder-video.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/folder-video.tvg -------------------------------------------------------------------------------- /src/icons/entypo/folder.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/folder.tvg -------------------------------------------------------------------------------- /src/icons/entypo/forward.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/forward.tvg -------------------------------------------------------------------------------- /src/icons/entypo/funnel.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/funnel.tvg -------------------------------------------------------------------------------- /src/icons/entypo/game-controller.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/game-controller.tvg -------------------------------------------------------------------------------- /src/icons/entypo/gauge.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/gauge.tvg -------------------------------------------------------------------------------- /src/icons/entypo/globe.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/globe.tvg -------------------------------------------------------------------------------- /src/icons/entypo/graduation-cap.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/graduation-cap.tvg -------------------------------------------------------------------------------- /src/icons/entypo/grid.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/grid.tvg -------------------------------------------------------------------------------- /src/icons/entypo/hair-cross.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/hair-cross.tvg -------------------------------------------------------------------------------- /src/icons/entypo/hand.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/hand.tvg -------------------------------------------------------------------------------- /src/icons/entypo/heart-outlined.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/heart-outlined.tvg -------------------------------------------------------------------------------- /src/icons/entypo/heart.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/heart.tvg -------------------------------------------------------------------------------- /src/icons/entypo/help-with-circle.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/help-with-circle.tvg -------------------------------------------------------------------------------- /src/icons/entypo/help.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/help.tvg -------------------------------------------------------------------------------- /src/icons/entypo/home.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/home.tvg -------------------------------------------------------------------------------- /src/icons/entypo/hour-glass.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/hour-glass.tvg -------------------------------------------------------------------------------- /src/icons/entypo/image-inverted.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/image-inverted.tvg -------------------------------------------------------------------------------- /src/icons/entypo/image.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/image.tvg -------------------------------------------------------------------------------- /src/icons/entypo/images.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/images.tvg -------------------------------------------------------------------------------- /src/icons/entypo/inbox.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/inbox.tvg -------------------------------------------------------------------------------- /src/icons/entypo/infinity.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/infinity.tvg -------------------------------------------------------------------------------- /src/icons/entypo/info-with-circle.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/info-with-circle.tvg -------------------------------------------------------------------------------- /src/icons/entypo/info.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/info.tvg -------------------------------------------------------------------------------- /src/icons/entypo/install.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/install.tvg -------------------------------------------------------------------------------- /src/icons/entypo/key.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/key.tvg -------------------------------------------------------------------------------- /src/icons/entypo/keyboard.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/keyboard.tvg -------------------------------------------------------------------------------- /src/icons/entypo/lab-flask.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/lab-flask.tvg -------------------------------------------------------------------------------- /src/icons/entypo/landline.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/landline.tvg -------------------------------------------------------------------------------- /src/icons/entypo/language.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/language.tvg -------------------------------------------------------------------------------- /src/icons/entypo/laptop.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/laptop.tvg -------------------------------------------------------------------------------- /src/icons/entypo/layers.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/layers.tvg -------------------------------------------------------------------------------- /src/icons/entypo/leaf.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/leaf.tvg -------------------------------------------------------------------------------- /src/icons/entypo/level-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/level-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/level-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/level-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/lifebuoy.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/lifebuoy.tvg -------------------------------------------------------------------------------- /src/icons/entypo/light-bulb.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/light-bulb.tvg -------------------------------------------------------------------------------- /src/icons/entypo/light-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/light-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/light-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/light-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/line-graph.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/line-graph.tvg -------------------------------------------------------------------------------- /src/icons/entypo/link.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/link.tvg -------------------------------------------------------------------------------- /src/icons/entypo/list.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/list.tvg -------------------------------------------------------------------------------- /src/icons/entypo/location-pin.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/location-pin.tvg -------------------------------------------------------------------------------- /src/icons/entypo/location.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/location.tvg -------------------------------------------------------------------------------- /src/icons/entypo/lock-open.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/lock-open.tvg -------------------------------------------------------------------------------- /src/icons/entypo/lock.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/lock.tvg -------------------------------------------------------------------------------- /src/icons/entypo/log-out.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/log-out.tvg -------------------------------------------------------------------------------- /src/icons/entypo/login.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/login.tvg -------------------------------------------------------------------------------- /src/icons/entypo/loop.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/loop.tvg -------------------------------------------------------------------------------- /src/icons/entypo/magnet.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/magnet.tvg -------------------------------------------------------------------------------- /src/icons/entypo/magnifying-glass.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/magnifying-glass.tvg -------------------------------------------------------------------------------- /src/icons/entypo/mail-with-circle.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/mail-with-circle.tvg -------------------------------------------------------------------------------- /src/icons/entypo/mail.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/mail.tvg -------------------------------------------------------------------------------- /src/icons/entypo/man.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/man.tvg -------------------------------------------------------------------------------- /src/icons/entypo/map.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/map.tvg -------------------------------------------------------------------------------- /src/icons/entypo/mask.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/mask.tvg -------------------------------------------------------------------------------- /src/icons/entypo/medal.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/medal.tvg -------------------------------------------------------------------------------- /src/icons/entypo/megaphone.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/megaphone.tvg -------------------------------------------------------------------------------- /src/icons/entypo/menu.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/menu.tvg -------------------------------------------------------------------------------- /src/icons/entypo/merge.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/merge.tvg -------------------------------------------------------------------------------- /src/icons/entypo/message.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/message.tvg -------------------------------------------------------------------------------- /src/icons/entypo/mic.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/mic.tvg -------------------------------------------------------------------------------- /src/icons/entypo/minus.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/minus.tvg -------------------------------------------------------------------------------- /src/icons/entypo/mobile.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/mobile.tvg -------------------------------------------------------------------------------- /src/icons/entypo/modern-mic.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/modern-mic.tvg -------------------------------------------------------------------------------- /src/icons/entypo/moon.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/moon.tvg -------------------------------------------------------------------------------- /src/icons/entypo/mouse-pointer.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/mouse-pointer.tvg -------------------------------------------------------------------------------- /src/icons/entypo/mouse.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/mouse.tvg -------------------------------------------------------------------------------- /src/icons/entypo/music.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/music.tvg -------------------------------------------------------------------------------- /src/icons/entypo/network.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/network.tvg -------------------------------------------------------------------------------- /src/icons/entypo/new-message.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/new-message.tvg -------------------------------------------------------------------------------- /src/icons/entypo/new.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/new.tvg -------------------------------------------------------------------------------- /src/icons/entypo/news.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/news.tvg -------------------------------------------------------------------------------- /src/icons/entypo/newsletter.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/newsletter.tvg -------------------------------------------------------------------------------- /src/icons/entypo/note.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/note.tvg -------------------------------------------------------------------------------- /src/icons/entypo/notification.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/notification.tvg -------------------------------------------------------------------------------- /src/icons/entypo/notifications-off.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/notifications-off.tvg -------------------------------------------------------------------------------- /src/icons/entypo/old-mobile.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/old-mobile.tvg -------------------------------------------------------------------------------- /src/icons/entypo/old-phone.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/old-phone.tvg -------------------------------------------------------------------------------- /src/icons/entypo/open-book.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/open-book.tvg -------------------------------------------------------------------------------- /src/icons/entypo/palette.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/palette.tvg -------------------------------------------------------------------------------- /src/icons/entypo/paper-plane.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/paper-plane.tvg -------------------------------------------------------------------------------- /src/icons/entypo/pencil.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/pencil.tvg -------------------------------------------------------------------------------- /src/icons/entypo/phone.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/phone.tvg -------------------------------------------------------------------------------- /src/icons/entypo/pie-chart.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/pie-chart.tvg -------------------------------------------------------------------------------- /src/icons/entypo/pin.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/pin.tvg -------------------------------------------------------------------------------- /src/icons/entypo/plus.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/plus.tvg -------------------------------------------------------------------------------- /src/icons/entypo/popup.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/popup.tvg -------------------------------------------------------------------------------- /src/icons/entypo/power-plug.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/power-plug.tvg -------------------------------------------------------------------------------- /src/icons/entypo/price-ribbon.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/price-ribbon.tvg -------------------------------------------------------------------------------- /src/icons/entypo/price-tag.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/price-tag.tvg -------------------------------------------------------------------------------- /src/icons/entypo/print.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/print.tvg -------------------------------------------------------------------------------- /src/icons/entypo/progress-empty.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/progress-empty.tvg -------------------------------------------------------------------------------- /src/icons/entypo/progress-full.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/progress-full.tvg -------------------------------------------------------------------------------- /src/icons/entypo/progress-one.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/progress-one.tvg -------------------------------------------------------------------------------- /src/icons/entypo/progress-two.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/progress-two.tvg -------------------------------------------------------------------------------- /src/icons/entypo/publish.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/publish.tvg -------------------------------------------------------------------------------- /src/icons/entypo/quote.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/quote.tvg -------------------------------------------------------------------------------- /src/icons/entypo/radio.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/radio.tvg -------------------------------------------------------------------------------- /src/icons/entypo/rainbow.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/rainbow.tvg -------------------------------------------------------------------------------- /src/icons/entypo/remove-user.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/remove-user.tvg -------------------------------------------------------------------------------- /src/icons/entypo/reply-all.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/reply-all.tvg -------------------------------------------------------------------------------- /src/icons/entypo/reply.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/reply.tvg -------------------------------------------------------------------------------- /src/icons/entypo/resize-100.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/resize-100.tvg -------------------------------------------------------------------------------- /src/icons/entypo/resize-full-screen.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/resize-full-screen.tvg -------------------------------------------------------------------------------- /src/icons/entypo/retweet.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/retweet.tvg -------------------------------------------------------------------------------- /src/icons/entypo/rocket.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/rocket.tvg -------------------------------------------------------------------------------- /src/icons/entypo/round-brush.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/round-brush.tvg -------------------------------------------------------------------------------- /src/icons/entypo/rss.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/rss.tvg -------------------------------------------------------------------------------- /src/icons/entypo/ruler.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/ruler.tvg -------------------------------------------------------------------------------- /src/icons/entypo/save.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/save.tvg -------------------------------------------------------------------------------- /src/icons/entypo/scissors.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/scissors.tvg -------------------------------------------------------------------------------- /src/icons/entypo/select-arrows.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/select-arrows.tvg -------------------------------------------------------------------------------- /src/icons/entypo/share-alternative.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/share-alternative.tvg -------------------------------------------------------------------------------- /src/icons/entypo/share.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/share.tvg -------------------------------------------------------------------------------- /src/icons/entypo/shareable.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/shareable.tvg -------------------------------------------------------------------------------- /src/icons/entypo/shield.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/shield.tvg -------------------------------------------------------------------------------- /src/icons/entypo/shop.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/shop.tvg -------------------------------------------------------------------------------- /src/icons/entypo/shopping-bag.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/shopping-bag.tvg -------------------------------------------------------------------------------- /src/icons/entypo/shopping-basket.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/shopping-basket.tvg -------------------------------------------------------------------------------- /src/icons/entypo/shopping-cart.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/shopping-cart.tvg -------------------------------------------------------------------------------- /src/icons/entypo/shuffle.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/shuffle.tvg -------------------------------------------------------------------------------- /src/icons/entypo/signal.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/signal.tvg -------------------------------------------------------------------------------- /src/icons/entypo/sound-mix.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/sound-mix.tvg -------------------------------------------------------------------------------- /src/icons/entypo/sound-mute.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/sound-mute.tvg -------------------------------------------------------------------------------- /src/icons/entypo/sound.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/sound.tvg -------------------------------------------------------------------------------- /src/icons/entypo/sports-club.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/sports-club.tvg -------------------------------------------------------------------------------- /src/icons/entypo/spreadsheet.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/spreadsheet.tvg -------------------------------------------------------------------------------- /src/icons/entypo/squared-cross.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/squared-cross.tvg -------------------------------------------------------------------------------- /src/icons/entypo/squared-minus.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/squared-minus.tvg -------------------------------------------------------------------------------- /src/icons/entypo/squared-plus.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/squared-plus.tvg -------------------------------------------------------------------------------- /src/icons/entypo/star-outlined.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/star-outlined.tvg -------------------------------------------------------------------------------- /src/icons/entypo/star.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/star.tvg -------------------------------------------------------------------------------- /src/icons/entypo/stopwatch.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/stopwatch.tvg -------------------------------------------------------------------------------- /src/icons/entypo/suitcase.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/suitcase.tvg -------------------------------------------------------------------------------- /src/icons/entypo/swap.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/swap.tvg -------------------------------------------------------------------------------- /src/icons/entypo/swarm.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/swarm.tvg -------------------------------------------------------------------------------- /src/icons/entypo/switch.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/switch.tvg -------------------------------------------------------------------------------- /src/icons/entypo/tablet-mobile-combo.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/tablet-mobile-combo.tvg -------------------------------------------------------------------------------- /src/icons/entypo/tablet.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/tablet.tvg -------------------------------------------------------------------------------- /src/icons/entypo/tag.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/tag.tvg -------------------------------------------------------------------------------- /src/icons/entypo/tail-spin.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/tail-spin.tvg -------------------------------------------------------------------------------- /src/icons/entypo/text-document-inverted.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/text-document-inverted.tvg -------------------------------------------------------------------------------- /src/icons/entypo/text-document.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/text-document.tvg -------------------------------------------------------------------------------- /src/icons/entypo/text.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/text.tvg -------------------------------------------------------------------------------- /src/icons/entypo/thermometer.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/thermometer.tvg -------------------------------------------------------------------------------- /src/icons/entypo/thumbs-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/thumbs-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/thumbs-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/thumbs-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/thunder-cloud.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/thunder-cloud.tvg -------------------------------------------------------------------------------- /src/icons/entypo/ticket.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/ticket.tvg -------------------------------------------------------------------------------- /src/icons/entypo/time-slot.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/time-slot.tvg -------------------------------------------------------------------------------- /src/icons/entypo/tools.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/tools.tvg -------------------------------------------------------------------------------- /src/icons/entypo/traffic-cone.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/traffic-cone.tvg -------------------------------------------------------------------------------- /src/icons/entypo/trash.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/trash.tvg -------------------------------------------------------------------------------- /src/icons/entypo/tree.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/tree.tvg -------------------------------------------------------------------------------- /src/icons/entypo/triangle-down.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/triangle-down.tvg -------------------------------------------------------------------------------- /src/icons/entypo/triangle-left.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/triangle-left.tvg -------------------------------------------------------------------------------- /src/icons/entypo/triangle-right.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/triangle-right.tvg -------------------------------------------------------------------------------- /src/icons/entypo/triangle-up.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/triangle-up.tvg -------------------------------------------------------------------------------- /src/icons/entypo/trophy.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/trophy.tvg -------------------------------------------------------------------------------- /src/icons/entypo/tv.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/tv.tvg -------------------------------------------------------------------------------- /src/icons/entypo/typing.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/typing.tvg -------------------------------------------------------------------------------- /src/icons/entypo/uninstall.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/uninstall.tvg -------------------------------------------------------------------------------- /src/icons/entypo/unread.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/unread.tvg -------------------------------------------------------------------------------- /src/icons/entypo/untag.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/untag.tvg -------------------------------------------------------------------------------- /src/icons/entypo/upload-to-cloud.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/upload-to-cloud.tvg -------------------------------------------------------------------------------- /src/icons/entypo/upload.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/upload.tvg -------------------------------------------------------------------------------- /src/icons/entypo/user.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/user.tvg -------------------------------------------------------------------------------- /src/icons/entypo/users.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/users.tvg -------------------------------------------------------------------------------- /src/icons/entypo/v-card.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/v-card.tvg -------------------------------------------------------------------------------- /src/icons/entypo/video-camera.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/video-camera.tvg -------------------------------------------------------------------------------- /src/icons/entypo/video.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/video.tvg -------------------------------------------------------------------------------- /src/icons/entypo/vinyl.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/vinyl.tvg -------------------------------------------------------------------------------- /src/icons/entypo/voicemail.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/voicemail.tvg -------------------------------------------------------------------------------- /src/icons/entypo/wallet.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/wallet.tvg -------------------------------------------------------------------------------- /src/icons/entypo/warning.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/warning.tvg -------------------------------------------------------------------------------- /src/icons/entypo/water.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/icons/entypo/water.tvg -------------------------------------------------------------------------------- /src/import_widgets.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/import_widgets.zig -------------------------------------------------------------------------------- /src/layout.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/layout.zig -------------------------------------------------------------------------------- /src/main.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/main.manifest -------------------------------------------------------------------------------- /src/native_dialogs.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/native_dialogs.zig -------------------------------------------------------------------------------- /src/ninepatch98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/ninepatch98.png -------------------------------------------------------------------------------- /src/render.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/render.zig -------------------------------------------------------------------------------- /src/selection.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/selection.zig -------------------------------------------------------------------------------- /src/struct_ui.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/struct_ui.zig -------------------------------------------------------------------------------- /src/testing.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/testing.zig -------------------------------------------------------------------------------- /src/themes/Adwaita.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/themes/Adwaita.zig -------------------------------------------------------------------------------- /src/themes/adwaita_dark.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/themes/adwaita_dark.zon -------------------------------------------------------------------------------- /src/themes/adwaita_light.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/themes/adwaita_light.zon -------------------------------------------------------------------------------- /src/themes/dracula.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/themes/dracula.zon -------------------------------------------------------------------------------- /src/themes/gruvbox.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/themes/gruvbox.zon -------------------------------------------------------------------------------- /src/themes/jungle.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/themes/jungle.zon -------------------------------------------------------------------------------- /src/themes/opendyslexic.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/themes/opendyslexic.zon -------------------------------------------------------------------------------- /src/tracking_hash_map.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/tracking_hash_map.zig -------------------------------------------------------------------------------- /src/widgets/AnimateWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/AnimateWidget.zig -------------------------------------------------------------------------------- /src/widgets/BoxWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/BoxWidget.zig -------------------------------------------------------------------------------- /src/widgets/ButtonWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/ButtonWidget.zig -------------------------------------------------------------------------------- /src/widgets/CacheWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/CacheWidget.zig -------------------------------------------------------------------------------- /src/widgets/ColorPickerWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/ColorPickerWidget.zig -------------------------------------------------------------------------------- /src/widgets/ContextWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/ContextWidget.zig -------------------------------------------------------------------------------- /src/widgets/DropdownWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/DropdownWidget.zig -------------------------------------------------------------------------------- /src/widgets/FlexBoxWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/FlexBoxWidget.zig -------------------------------------------------------------------------------- /src/widgets/FloatingMenuWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/FloatingMenuWidget.zig -------------------------------------------------------------------------------- /src/widgets/FloatingTooltipWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/FloatingTooltipWidget.zig -------------------------------------------------------------------------------- /src/widgets/FloatingWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/FloatingWidget.zig -------------------------------------------------------------------------------- /src/widgets/FloatingWindowWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/FloatingWindowWidget.zig -------------------------------------------------------------------------------- /src/widgets/FocusGroupWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/FocusGroupWidget.zig -------------------------------------------------------------------------------- /src/widgets/GridWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/GridWidget.zig -------------------------------------------------------------------------------- /src/widgets/GridWidget/CellStyle.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/GridWidget/CellStyle.zig -------------------------------------------------------------------------------- /src/widgets/GridWidget/testing.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/GridWidget/testing.zig -------------------------------------------------------------------------------- /src/widgets/IconWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/IconWidget.zig -------------------------------------------------------------------------------- /src/widgets/LabelWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/LabelWidget.zig -------------------------------------------------------------------------------- /src/widgets/MenuItemWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/MenuItemWidget.zig -------------------------------------------------------------------------------- /src/widgets/MenuWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/MenuWidget.zig -------------------------------------------------------------------------------- /src/widgets/OverlayWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/OverlayWidget.zig -------------------------------------------------------------------------------- /src/widgets/PanedWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/PanedWidget.zig -------------------------------------------------------------------------------- /src/widgets/PlotWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/PlotWidget.zig -------------------------------------------------------------------------------- /src/widgets/ReorderWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/ReorderWidget.zig -------------------------------------------------------------------------------- /src/widgets/ScaleWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/ScaleWidget.zig -------------------------------------------------------------------------------- /src/widgets/ScrollAreaWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/ScrollAreaWidget.zig -------------------------------------------------------------------------------- /src/widgets/ScrollBarWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/ScrollBarWidget.zig -------------------------------------------------------------------------------- /src/widgets/ScrollContainerWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/ScrollContainerWidget.zig -------------------------------------------------------------------------------- /src/widgets/SuggestionWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/SuggestionWidget.zig -------------------------------------------------------------------------------- /src/widgets/TabsWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/TabsWidget.zig -------------------------------------------------------------------------------- /src/widgets/TextEntryWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/TextEntryWidget.zig -------------------------------------------------------------------------------- /src/widgets/TextLayoutWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/TextLayoutWidget.zig -------------------------------------------------------------------------------- /src/widgets/TreeWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/TreeWidget.zig -------------------------------------------------------------------------------- /src/widgets/VirtualParentWidget.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/widgets/VirtualParentWidget.zig -------------------------------------------------------------------------------- /src/zig-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/zig-favicon.png -------------------------------------------------------------------------------- /src/zig-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/src/zig-mark.svg -------------------------------------------------------------------------------- /tools/accesskit_gen.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/tools/accesskit_gen.zig -------------------------------------------------------------------------------- /vendor/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/vendor/stb/stb_image.h -------------------------------------------------------------------------------- /vendor/stb/stb_image_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/vendor/stb/stb_image_impl.c -------------------------------------------------------------------------------- /vendor/stb/stb_image_libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/vendor/stb/stb_image_libc.c -------------------------------------------------------------------------------- /vendor/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/vendor/stb/stb_image_write.h -------------------------------------------------------------------------------- /vendor/stb/stb_image_write_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/vendor/stb/stb_image_write_impl.c -------------------------------------------------------------------------------- /vendor/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/vendor/stb/stb_truetype.h -------------------------------------------------------------------------------- /vendor/stb/stb_truetype_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/vendor/stb/stb_truetype_impl.c -------------------------------------------------------------------------------- /vendor/stb/stb_truetype_libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/vendor/stb/stb_truetype_libc.c -------------------------------------------------------------------------------- /vendor/tfd/tinyfiledialogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/vendor/tfd/tinyfiledialogs.c -------------------------------------------------------------------------------- /vendor/tfd/tinyfiledialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-vanderson/dvui/HEAD/vendor/tfd/tinyfiledialogs.h --------------------------------------------------------------------------------