├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── README.md ├── _cmd.bat ├── dfl.code-workspace ├── dub.json ├── dubclean.ps1 ├── examples ├── BuildAllDub.ps1 ├── buttons │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── buttons.code-workspace │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ └── source │ │ └── buttons_example.d ├── clipboard │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── clipboard.code-workspace │ ├── dub.json │ ├── image │ │ ├── sample.bmp │ │ ├── sample_1.bmp │ │ ├── sample_24.bmp │ │ ├── sample_4.bmp │ │ ├── sample_8.bmp │ │ └── screenshot.png │ ├── shell.bat │ └── source │ │ └── clipboard_sample.d ├── clippingform │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── clippingform.code-workspace │ ├── dub.json │ ├── image │ │ ├── clipping.bmp │ │ └── screenshot.png │ ├── shell.bat │ └── source │ │ └── clippingform_sample.d ├── commondialog │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── commondialog.code-workspace │ ├── dub.json │ ├── image │ │ ├── screenshot.png │ │ └── screenshot2.png │ ├── shell.bat │ └── source │ │ └── commondialog_sample.d ├── contextmenu │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── contextmenu.code-workspace │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ └── source │ │ └── contextmenu_sample.d ├── dclock │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dclock.code-workspace │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ └── source │ │ └── dclock.d ├── dfl_with_dwinrt │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dfl_with_dwinrt.code-workspace │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── app.d │ └── taskkill_dcd.bat ├── draganddrop │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── draganddrop.code-workspace │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ └── source │ │ └── draganddrop_sample.d ├── dragdroplistbox │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dragdroplistbox.code-workspace │ ├── dub.json │ ├── image │ │ ├── screenshot1.png │ │ └── screenshot2.png │ ├── shell.bat │ └── source │ │ └── dragdroplistbox_sample.d ├── hello_dfl │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── build32mscoff.bat │ ├── build64.bat │ ├── dub.json │ ├── hello_dfl.code-workspace │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ └── source │ │ └── hello_dfl.d ├── imagelist │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ ├── rgb.bmp │ │ └── screenshot.png │ ├── imagelist.code-workspace │ ├── shell.bat │ └── source │ │ └── imagelist_sample.d ├── label │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── label.code-workspace │ ├── shell.bat │ └── source │ │ └── label_sample.d ├── linegraphrenderer │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── linegraphrenderer.code-workspace │ ├── shell.bat │ └── source │ │ └── linegraphrenderer_sample.d ├── listview │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── dub.selections.json │ ├── image │ │ └── screenshot.png │ ├── listview.code-workspace │ ├── shell.bat │ └── source │ │ └── listview_sample.d ├── locationalignment │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── locationalignment.code-workspace │ ├── shell.bat │ └── source │ │ └── locationalignment_example.d ├── notifyicon │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ ├── icon.ico │ │ ├── icon2.ico │ │ └── screenshot.png │ ├── notifyicon.code-workspace │ ├── shell.bat │ └── source │ │ └── notifyicon_sample.d ├── picturebox │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ ├── dman-error.bmp │ │ └── screenshot.png │ ├── picturebox.code-workspace │ ├── shell.bat │ └── source │ │ └── picturebox_sample.d ├── progressbar │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ ├── screenshot1.png │ │ ├── screenshot2.png │ │ ├── screenshot3.png │ │ ├── screenshot4.png │ │ └── screenshot5.png │ ├── progressbar.code-workspace │ ├── shell.bat │ └── source │ │ └── progressbar_sample.d ├── registry │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── registry.code-workspace │ ├── shell.bat │ └── source │ │ └── registry_sample.d ├── resources │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ ├── d-cursor.cur │ │ ├── dman-error.bmp │ │ ├── icon.ico │ │ └── screenshot.png │ ├── make_resource.bat │ ├── resource │ │ ├── sample.rc │ │ └── sample.res │ ├── resources.code-workspace │ ├── shell.bat │ └── source │ │ └── resources_sample.d ├── richtextbox │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── richtextbox.code-workspace │ ├── shell.bat │ └── source │ │ └── richtextbox_sample.d ├── scrollbar │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── scrollbar.code-workspace │ ├── shell.bat │ └── source │ │ └── scrollbar_example.d ├── socket_client │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── socket.code-workspace │ └── source │ │ └── socket_sample.d ├── socket_server │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── socket.code-workspace │ └── source │ │ └── socket_sample.d ├── splitter │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── splitter_sample.d │ └── splitter.code-workspace ├── stackpanel │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── stackpanel_sample.d │ └── stackpanel.code-workspace ├── statusbar │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── statusbar_sample.d │ └── statusbar.code-workspace ├── tabcontrol │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── trackbar_sample.d │ └── tabcontrol.code-workspace ├── tablerenderer │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── tablerenderer_sample.d │ └── tablerenderer.code-workspace ├── textbox │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── textbox_sample.d │ └── textbox.code-workspace ├── timechartrenderer │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── timechartrenderer_sample.d │ └── timechartrenderer.code-workspace ├── timer │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── timer_sample.d │ └── timer.code-workspace ├── toastnotifier │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ ├── d.bmp │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── toastnotifier_sample.d │ └── toastnotifier.code-workspace ├── toggleswitch │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── toggleswitch_sample.d │ └── toggleswitch.code-workspace ├── toolbar │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ ├── screenshot.png │ │ ├── screenshot2.png │ │ ├── screenshot3.png │ │ ├── screenshot4.png │ │ └── toolbaricon.bmp │ ├── shell.bat │ ├── source │ │ └── toolbar_sample.d │ └── toolbar.code-workspace ├── tooltip │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ │ └── screenshot.png │ ├── shell.bat │ ├── source │ │ └── tooltip_sample.d │ └── tooltip.code-workspace └── trackbar │ ├── .gitignore │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── README.md │ ├── dub.json │ ├── image │ └── screenshot.png │ ├── shell.bat │ ├── source │ └── trackbar_sample.d │ └── trackbar.code-workspace ├── go.bat ├── go64.bat.lnk ├── image ├── MSVC_build_tools_command_prompt.png └── welcomtodfl.png ├── lgpl.txt ├── lib ├── windows-x86_64 │ ├── README.txt │ ├── advapi32.lib │ ├── comctl32.lib │ ├── comdlg32.lib │ ├── gdi32.lib │ ├── ole32.lib │ ├── oleaut32.lib │ ├── shell32.lib │ ├── user32.lib │ └── ws2_32.lib └── windows-x86_mscoff │ ├── README.txt │ ├── advapi32.lib │ ├── comctl32.lib │ ├── comdlg32.lib │ ├── gdi32.lib │ ├── ole32.lib │ ├── oleaut32.lib │ ├── shell32.lib │ ├── user32.lib │ └── ws2_32.lib ├── license.txt ├── makecoff.bat ├── makelib.bat ├── source └── dfl │ ├── all.d │ ├── application.d │ ├── base.d │ ├── button.d │ ├── chart.d │ ├── clipboard.d │ ├── clippingform.d │ ├── collections.d │ ├── colordialog.d │ ├── combobox.d │ ├── commondialog.d │ ├── control.d │ ├── data.d │ ├── drawing.d │ ├── environment.d │ ├── event.d │ ├── filedialog.d │ ├── folderdialog.d │ ├── fontdialog.d │ ├── form.d │ ├── groupbox.d │ ├── image │ └── previewprintdialog_toolbar.bmp │ ├── imagelist.d │ ├── internal │ ├── clib.d │ ├── com.d │ ├── d1.d │ ├── d2.d │ ├── dlib.d │ ├── dpiaware.d │ ├── utf.d │ ├── winapi.d │ ├── wincom.d │ └── winrt.d │ ├── label.d │ ├── listbox.d │ ├── listview.d │ ├── menu.d │ ├── messagebox.d │ ├── notifyicon.d │ ├── package.d │ ├── panel.d │ ├── picturebox.d │ ├── printing.d │ ├── progressbar.d │ ├── registry.d │ ├── resources.d │ ├── richtextbox.d │ ├── sharedcontrol.d │ ├── socket.d │ ├── splitter.d │ ├── statusbar.d │ ├── tabcontrol.d │ ├── textbox.d │ ├── textboxbase.d │ ├── timer.d │ ├── toastnotifier.d │ ├── toggleswitch.d │ ├── toolbar.d │ ├── tooltip.d │ ├── trackbar.d │ ├── treeview.d │ └── usercontrol.d └── zlib.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/README.md -------------------------------------------------------------------------------- /_cmd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/_cmd.bat -------------------------------------------------------------------------------- /dfl.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/dfl.code-workspace -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/dub.json -------------------------------------------------------------------------------- /dubclean.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/dubclean.ps1 -------------------------------------------------------------------------------- /examples/BuildAllDub.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/BuildAllDub.ps1 -------------------------------------------------------------------------------- /examples/buttons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/buttons/.gitignore -------------------------------------------------------------------------------- /examples/buttons/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/buttons/.vscode/launch.json -------------------------------------------------------------------------------- /examples/buttons/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/buttons/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/buttons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/buttons/README.md -------------------------------------------------------------------------------- /examples/buttons/buttons.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/buttons/buttons.code-workspace -------------------------------------------------------------------------------- /examples/buttons/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/buttons/dub.json -------------------------------------------------------------------------------- /examples/buttons/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/buttons/image/screenshot.png -------------------------------------------------------------------------------- /examples/buttons/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/buttons/shell.bat -------------------------------------------------------------------------------- /examples/buttons/source/buttons_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/buttons/source/buttons_example.d -------------------------------------------------------------------------------- /examples/clipboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/.gitignore -------------------------------------------------------------------------------- /examples/clipboard/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/.vscode/launch.json -------------------------------------------------------------------------------- /examples/clipboard/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/clipboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/README.md -------------------------------------------------------------------------------- /examples/clipboard/clipboard.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/clipboard.code-workspace -------------------------------------------------------------------------------- /examples/clipboard/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/dub.json -------------------------------------------------------------------------------- /examples/clipboard/image/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/image/sample.bmp -------------------------------------------------------------------------------- /examples/clipboard/image/sample_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/image/sample_1.bmp -------------------------------------------------------------------------------- /examples/clipboard/image/sample_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/image/sample_24.bmp -------------------------------------------------------------------------------- /examples/clipboard/image/sample_4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/image/sample_4.bmp -------------------------------------------------------------------------------- /examples/clipboard/image/sample_8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/image/sample_8.bmp -------------------------------------------------------------------------------- /examples/clipboard/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/image/screenshot.png -------------------------------------------------------------------------------- /examples/clipboard/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/shell.bat -------------------------------------------------------------------------------- /examples/clipboard/source/clipboard_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clipboard/source/clipboard_sample.d -------------------------------------------------------------------------------- /examples/clippingform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clippingform/.gitignore -------------------------------------------------------------------------------- /examples/clippingform/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clippingform/.vscode/launch.json -------------------------------------------------------------------------------- /examples/clippingform/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clippingform/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/clippingform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clippingform/README.md -------------------------------------------------------------------------------- /examples/clippingform/clippingform.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clippingform/clippingform.code-workspace -------------------------------------------------------------------------------- /examples/clippingform/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clippingform/dub.json -------------------------------------------------------------------------------- /examples/clippingform/image/clipping.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clippingform/image/clipping.bmp -------------------------------------------------------------------------------- /examples/clippingform/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clippingform/image/screenshot.png -------------------------------------------------------------------------------- /examples/clippingform/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clippingform/shell.bat -------------------------------------------------------------------------------- /examples/clippingform/source/clippingform_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/clippingform/source/clippingform_sample.d -------------------------------------------------------------------------------- /examples/commondialog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/commondialog/.gitignore -------------------------------------------------------------------------------- /examples/commondialog/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/commondialog/.vscode/launch.json -------------------------------------------------------------------------------- /examples/commondialog/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/commondialog/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/commondialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/commondialog/README.md -------------------------------------------------------------------------------- /examples/commondialog/commondialog.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/commondialog/commondialog.code-workspace -------------------------------------------------------------------------------- /examples/commondialog/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/commondialog/dub.json -------------------------------------------------------------------------------- /examples/commondialog/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/commondialog/image/screenshot.png -------------------------------------------------------------------------------- /examples/commondialog/image/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/commondialog/image/screenshot2.png -------------------------------------------------------------------------------- /examples/commondialog/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/commondialog/shell.bat -------------------------------------------------------------------------------- /examples/commondialog/source/commondialog_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/commondialog/source/commondialog_sample.d -------------------------------------------------------------------------------- /examples/contextmenu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/contextmenu/.gitignore -------------------------------------------------------------------------------- /examples/contextmenu/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/contextmenu/.vscode/launch.json -------------------------------------------------------------------------------- /examples/contextmenu/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/contextmenu/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/contextmenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/contextmenu/README.md -------------------------------------------------------------------------------- /examples/contextmenu/contextmenu.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/contextmenu/contextmenu.code-workspace -------------------------------------------------------------------------------- /examples/contextmenu/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/contextmenu/dub.json -------------------------------------------------------------------------------- /examples/contextmenu/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/contextmenu/image/screenshot.png -------------------------------------------------------------------------------- /examples/contextmenu/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/contextmenu/shell.bat -------------------------------------------------------------------------------- /examples/contextmenu/source/contextmenu_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/contextmenu/source/contextmenu_sample.d -------------------------------------------------------------------------------- /examples/dclock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dclock/.gitignore -------------------------------------------------------------------------------- /examples/dclock/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dclock/.vscode/launch.json -------------------------------------------------------------------------------- /examples/dclock/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dclock/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/dclock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dclock/README.md -------------------------------------------------------------------------------- /examples/dclock/dclock.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dclock/dclock.code-workspace -------------------------------------------------------------------------------- /examples/dclock/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dclock/dub.json -------------------------------------------------------------------------------- /examples/dclock/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dclock/image/screenshot.png -------------------------------------------------------------------------------- /examples/dclock/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dclock/shell.bat -------------------------------------------------------------------------------- /examples/dclock/source/dclock.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dclock/source/dclock.d -------------------------------------------------------------------------------- /examples/dfl_with_dwinrt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dfl_with_dwinrt/.gitignore -------------------------------------------------------------------------------- /examples/dfl_with_dwinrt/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dfl_with_dwinrt/.vscode/launch.json -------------------------------------------------------------------------------- /examples/dfl_with_dwinrt/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dfl_with_dwinrt/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/dfl_with_dwinrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dfl_with_dwinrt/README.md -------------------------------------------------------------------------------- /examples/dfl_with_dwinrt/dfl_with_dwinrt.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dfl_with_dwinrt/dfl_with_dwinrt.code-workspace -------------------------------------------------------------------------------- /examples/dfl_with_dwinrt/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dfl_with_dwinrt/dub.json -------------------------------------------------------------------------------- /examples/dfl_with_dwinrt/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dfl_with_dwinrt/image/screenshot.png -------------------------------------------------------------------------------- /examples/dfl_with_dwinrt/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dfl_with_dwinrt/shell.bat -------------------------------------------------------------------------------- /examples/dfl_with_dwinrt/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dfl_with_dwinrt/source/app.d -------------------------------------------------------------------------------- /examples/dfl_with_dwinrt/taskkill_dcd.bat: -------------------------------------------------------------------------------- 1 | taskkill /F /T /IM dcd-server.exe 2 | -------------------------------------------------------------------------------- /examples/draganddrop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/draganddrop/.gitignore -------------------------------------------------------------------------------- /examples/draganddrop/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/draganddrop/.vscode/launch.json -------------------------------------------------------------------------------- /examples/draganddrop/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/draganddrop/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/draganddrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/draganddrop/README.md -------------------------------------------------------------------------------- /examples/draganddrop/draganddrop.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/draganddrop/draganddrop.code-workspace -------------------------------------------------------------------------------- /examples/draganddrop/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/draganddrop/dub.json -------------------------------------------------------------------------------- /examples/draganddrop/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/draganddrop/image/screenshot.png -------------------------------------------------------------------------------- /examples/draganddrop/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/draganddrop/shell.bat -------------------------------------------------------------------------------- /examples/draganddrop/source/draganddrop_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/draganddrop/source/draganddrop_sample.d -------------------------------------------------------------------------------- /examples/dragdroplistbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dragdroplistbox/.gitignore -------------------------------------------------------------------------------- /examples/dragdroplistbox/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dragdroplistbox/.vscode/launch.json -------------------------------------------------------------------------------- /examples/dragdroplistbox/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dragdroplistbox/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/dragdroplistbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dragdroplistbox/README.md -------------------------------------------------------------------------------- /examples/dragdroplistbox/dragdroplistbox.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dragdroplistbox/dragdroplistbox.code-workspace -------------------------------------------------------------------------------- /examples/dragdroplistbox/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dragdroplistbox/dub.json -------------------------------------------------------------------------------- /examples/dragdroplistbox/image/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dragdroplistbox/image/screenshot1.png -------------------------------------------------------------------------------- /examples/dragdroplistbox/image/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dragdroplistbox/image/screenshot2.png -------------------------------------------------------------------------------- /examples/dragdroplistbox/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dragdroplistbox/shell.bat -------------------------------------------------------------------------------- /examples/dragdroplistbox/source/dragdroplistbox_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/dragdroplistbox/source/dragdroplistbox_sample.d -------------------------------------------------------------------------------- /examples/hello_dfl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/.gitignore -------------------------------------------------------------------------------- /examples/hello_dfl/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/.vscode/launch.json -------------------------------------------------------------------------------- /examples/hello_dfl/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/hello_dfl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/README.md -------------------------------------------------------------------------------- /examples/hello_dfl/build32mscoff.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/build32mscoff.bat -------------------------------------------------------------------------------- /examples/hello_dfl/build64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/build64.bat -------------------------------------------------------------------------------- /examples/hello_dfl/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/dub.json -------------------------------------------------------------------------------- /examples/hello_dfl/hello_dfl.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/hello_dfl.code-workspace -------------------------------------------------------------------------------- /examples/hello_dfl/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/image/screenshot.png -------------------------------------------------------------------------------- /examples/hello_dfl/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/shell.bat -------------------------------------------------------------------------------- /examples/hello_dfl/source/hello_dfl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/hello_dfl/source/hello_dfl.d -------------------------------------------------------------------------------- /examples/imagelist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/imagelist/.gitignore -------------------------------------------------------------------------------- /examples/imagelist/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/imagelist/.vscode/launch.json -------------------------------------------------------------------------------- /examples/imagelist/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/imagelist/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/imagelist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/imagelist/README.md -------------------------------------------------------------------------------- /examples/imagelist/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/imagelist/dub.json -------------------------------------------------------------------------------- /examples/imagelist/image/rgb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/imagelist/image/rgb.bmp -------------------------------------------------------------------------------- /examples/imagelist/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/imagelist/image/screenshot.png -------------------------------------------------------------------------------- /examples/imagelist/imagelist.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/imagelist/imagelist.code-workspace -------------------------------------------------------------------------------- /examples/imagelist/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/imagelist/shell.bat -------------------------------------------------------------------------------- /examples/imagelist/source/imagelist_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/imagelist/source/imagelist_sample.d -------------------------------------------------------------------------------- /examples/label/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/label/.gitignore -------------------------------------------------------------------------------- /examples/label/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/label/.vscode/launch.json -------------------------------------------------------------------------------- /examples/label/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/label/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/label/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/label/README.md -------------------------------------------------------------------------------- /examples/label/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/label/dub.json -------------------------------------------------------------------------------- /examples/label/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/label/image/screenshot.png -------------------------------------------------------------------------------- /examples/label/label.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/label/label.code-workspace -------------------------------------------------------------------------------- /examples/label/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/label/shell.bat -------------------------------------------------------------------------------- /examples/label/source/label_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/label/source/label_sample.d -------------------------------------------------------------------------------- /examples/linegraphrenderer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/linegraphrenderer/.gitignore -------------------------------------------------------------------------------- /examples/linegraphrenderer/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/linegraphrenderer/.vscode/launch.json -------------------------------------------------------------------------------- /examples/linegraphrenderer/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/linegraphrenderer/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/linegraphrenderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/linegraphrenderer/README.md -------------------------------------------------------------------------------- /examples/linegraphrenderer/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/linegraphrenderer/dub.json -------------------------------------------------------------------------------- /examples/linegraphrenderer/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/linegraphrenderer/image/screenshot.png -------------------------------------------------------------------------------- /examples/linegraphrenderer/linegraphrenderer.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/linegraphrenderer/linegraphrenderer.code-workspace -------------------------------------------------------------------------------- /examples/linegraphrenderer/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/linegraphrenderer/shell.bat -------------------------------------------------------------------------------- /examples/linegraphrenderer/source/linegraphrenderer_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/linegraphrenderer/source/linegraphrenderer_sample.d -------------------------------------------------------------------------------- /examples/listview/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/listview/.gitignore -------------------------------------------------------------------------------- /examples/listview/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/listview/.vscode/launch.json -------------------------------------------------------------------------------- /examples/listview/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/listview/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/listview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/listview/README.md -------------------------------------------------------------------------------- /examples/listview/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/listview/dub.json -------------------------------------------------------------------------------- /examples/listview/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/listview/dub.selections.json -------------------------------------------------------------------------------- /examples/listview/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/listview/image/screenshot.png -------------------------------------------------------------------------------- /examples/listview/listview.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/listview/listview.code-workspace -------------------------------------------------------------------------------- /examples/listview/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/listview/shell.bat -------------------------------------------------------------------------------- /examples/listview/source/listview_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/listview/source/listview_sample.d -------------------------------------------------------------------------------- /examples/locationalignment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/locationalignment/.gitignore -------------------------------------------------------------------------------- /examples/locationalignment/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/locationalignment/.vscode/launch.json -------------------------------------------------------------------------------- /examples/locationalignment/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/locationalignment/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/locationalignment/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/locationalignment/dub.json -------------------------------------------------------------------------------- /examples/locationalignment/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/locationalignment/image/screenshot.png -------------------------------------------------------------------------------- /examples/locationalignment/locationalignment.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/locationalignment/locationalignment.code-workspace -------------------------------------------------------------------------------- /examples/locationalignment/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/locationalignment/shell.bat -------------------------------------------------------------------------------- /examples/locationalignment/source/locationalignment_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/locationalignment/source/locationalignment_example.d -------------------------------------------------------------------------------- /examples/notifyicon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/.gitignore -------------------------------------------------------------------------------- /examples/notifyicon/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/.vscode/launch.json -------------------------------------------------------------------------------- /examples/notifyicon/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/notifyicon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/README.md -------------------------------------------------------------------------------- /examples/notifyicon/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/dub.json -------------------------------------------------------------------------------- /examples/notifyicon/image/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/image/icon.ico -------------------------------------------------------------------------------- /examples/notifyicon/image/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/image/icon2.ico -------------------------------------------------------------------------------- /examples/notifyicon/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/image/screenshot.png -------------------------------------------------------------------------------- /examples/notifyicon/notifyicon.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/notifyicon.code-workspace -------------------------------------------------------------------------------- /examples/notifyicon/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/shell.bat -------------------------------------------------------------------------------- /examples/notifyicon/source/notifyicon_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/notifyicon/source/notifyicon_sample.d -------------------------------------------------------------------------------- /examples/picturebox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/picturebox/.gitignore -------------------------------------------------------------------------------- /examples/picturebox/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/picturebox/.vscode/launch.json -------------------------------------------------------------------------------- /examples/picturebox/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/picturebox/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/picturebox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/picturebox/README.md -------------------------------------------------------------------------------- /examples/picturebox/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/picturebox/dub.json -------------------------------------------------------------------------------- /examples/picturebox/image/dman-error.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/picturebox/image/dman-error.bmp -------------------------------------------------------------------------------- /examples/picturebox/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/picturebox/image/screenshot.png -------------------------------------------------------------------------------- /examples/picturebox/picturebox.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/picturebox/picturebox.code-workspace -------------------------------------------------------------------------------- /examples/picturebox/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/picturebox/shell.bat -------------------------------------------------------------------------------- /examples/picturebox/source/picturebox_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/picturebox/source/picturebox_sample.d -------------------------------------------------------------------------------- /examples/progressbar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/.gitignore -------------------------------------------------------------------------------- /examples/progressbar/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/.vscode/launch.json -------------------------------------------------------------------------------- /examples/progressbar/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/progressbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/README.md -------------------------------------------------------------------------------- /examples/progressbar/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/dub.json -------------------------------------------------------------------------------- /examples/progressbar/image/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/image/screenshot1.png -------------------------------------------------------------------------------- /examples/progressbar/image/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/image/screenshot2.png -------------------------------------------------------------------------------- /examples/progressbar/image/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/image/screenshot3.png -------------------------------------------------------------------------------- /examples/progressbar/image/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/image/screenshot4.png -------------------------------------------------------------------------------- /examples/progressbar/image/screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/image/screenshot5.png -------------------------------------------------------------------------------- /examples/progressbar/progressbar.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/progressbar.code-workspace -------------------------------------------------------------------------------- /examples/progressbar/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/shell.bat -------------------------------------------------------------------------------- /examples/progressbar/source/progressbar_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/progressbar/source/progressbar_sample.d -------------------------------------------------------------------------------- /examples/registry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/registry/.gitignore -------------------------------------------------------------------------------- /examples/registry/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/registry/.vscode/launch.json -------------------------------------------------------------------------------- /examples/registry/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/registry/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/registry/README.md -------------------------------------------------------------------------------- /examples/registry/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/registry/dub.json -------------------------------------------------------------------------------- /examples/registry/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/registry/image/screenshot.png -------------------------------------------------------------------------------- /examples/registry/registry.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/registry/registry.code-workspace -------------------------------------------------------------------------------- /examples/registry/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/registry/shell.bat -------------------------------------------------------------------------------- /examples/registry/source/registry_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/registry/source/registry_sample.d -------------------------------------------------------------------------------- /examples/resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/.gitignore -------------------------------------------------------------------------------- /examples/resources/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/.vscode/launch.json -------------------------------------------------------------------------------- /examples/resources/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/README.md -------------------------------------------------------------------------------- /examples/resources/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/dub.json -------------------------------------------------------------------------------- /examples/resources/image/d-cursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/image/d-cursor.cur -------------------------------------------------------------------------------- /examples/resources/image/dman-error.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/image/dman-error.bmp -------------------------------------------------------------------------------- /examples/resources/image/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/image/icon.ico -------------------------------------------------------------------------------- /examples/resources/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/image/screenshot.png -------------------------------------------------------------------------------- /examples/resources/make_resource.bat: -------------------------------------------------------------------------------- 1 | rc /v resource\sample.rc 2 | -------------------------------------------------------------------------------- /examples/resources/resource/sample.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/resource/sample.rc -------------------------------------------------------------------------------- /examples/resources/resource/sample.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/resource/sample.res -------------------------------------------------------------------------------- /examples/resources/resources.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/resources.code-workspace -------------------------------------------------------------------------------- /examples/resources/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/shell.bat -------------------------------------------------------------------------------- /examples/resources/source/resources_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/resources/source/resources_sample.d -------------------------------------------------------------------------------- /examples/richtextbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/richtextbox/.gitignore -------------------------------------------------------------------------------- /examples/richtextbox/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/richtextbox/.vscode/launch.json -------------------------------------------------------------------------------- /examples/richtextbox/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/richtextbox/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/richtextbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/richtextbox/README.md -------------------------------------------------------------------------------- /examples/richtextbox/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/richtextbox/dub.json -------------------------------------------------------------------------------- /examples/richtextbox/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/richtextbox/image/screenshot.png -------------------------------------------------------------------------------- /examples/richtextbox/richtextbox.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/richtextbox/richtextbox.code-workspace -------------------------------------------------------------------------------- /examples/richtextbox/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/richtextbox/shell.bat -------------------------------------------------------------------------------- /examples/richtextbox/source/richtextbox_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/richtextbox/source/richtextbox_sample.d -------------------------------------------------------------------------------- /examples/scrollbar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/scrollbar/.gitignore -------------------------------------------------------------------------------- /examples/scrollbar/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/scrollbar/.vscode/launch.json -------------------------------------------------------------------------------- /examples/scrollbar/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/scrollbar/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/scrollbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/scrollbar/README.md -------------------------------------------------------------------------------- /examples/scrollbar/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/scrollbar/dub.json -------------------------------------------------------------------------------- /examples/scrollbar/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/scrollbar/image/screenshot.png -------------------------------------------------------------------------------- /examples/scrollbar/scrollbar.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/scrollbar/scrollbar.code-workspace -------------------------------------------------------------------------------- /examples/scrollbar/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/scrollbar/shell.bat -------------------------------------------------------------------------------- /examples/scrollbar/source/scrollbar_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/scrollbar/source/scrollbar_example.d -------------------------------------------------------------------------------- /examples/socket_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_client/.gitignore -------------------------------------------------------------------------------- /examples/socket_client/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_client/.vscode/launch.json -------------------------------------------------------------------------------- /examples/socket_client/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_client/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/socket_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_client/README.md -------------------------------------------------------------------------------- /examples/socket_client/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_client/dub.json -------------------------------------------------------------------------------- /examples/socket_client/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_client/image/screenshot.png -------------------------------------------------------------------------------- /examples/socket_client/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_client/shell.bat -------------------------------------------------------------------------------- /examples/socket_client/socket.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_client/socket.code-workspace -------------------------------------------------------------------------------- /examples/socket_client/source/socket_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_client/source/socket_sample.d -------------------------------------------------------------------------------- /examples/socket_server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_server/.gitignore -------------------------------------------------------------------------------- /examples/socket_server/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_server/.vscode/launch.json -------------------------------------------------------------------------------- /examples/socket_server/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_server/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/socket_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_server/README.md -------------------------------------------------------------------------------- /examples/socket_server/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_server/dub.json -------------------------------------------------------------------------------- /examples/socket_server/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_server/image/screenshot.png -------------------------------------------------------------------------------- /examples/socket_server/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_server/shell.bat -------------------------------------------------------------------------------- /examples/socket_server/socket.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_server/socket.code-workspace -------------------------------------------------------------------------------- /examples/socket_server/source/socket_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/socket_server/source/socket_sample.d -------------------------------------------------------------------------------- /examples/splitter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/splitter/.gitignore -------------------------------------------------------------------------------- /examples/splitter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/splitter/.vscode/launch.json -------------------------------------------------------------------------------- /examples/splitter/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/splitter/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/splitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/splitter/README.md -------------------------------------------------------------------------------- /examples/splitter/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/splitter/dub.json -------------------------------------------------------------------------------- /examples/splitter/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/splitter/image/screenshot.png -------------------------------------------------------------------------------- /examples/splitter/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/splitter/shell.bat -------------------------------------------------------------------------------- /examples/splitter/source/splitter_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/splitter/source/splitter_sample.d -------------------------------------------------------------------------------- /examples/splitter/splitter.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/splitter/splitter.code-workspace -------------------------------------------------------------------------------- /examples/stackpanel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/stackpanel/.gitignore -------------------------------------------------------------------------------- /examples/stackpanel/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/stackpanel/.vscode/launch.json -------------------------------------------------------------------------------- /examples/stackpanel/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/stackpanel/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/stackpanel/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/stackpanel/dub.json -------------------------------------------------------------------------------- /examples/stackpanel/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/stackpanel/image/screenshot.png -------------------------------------------------------------------------------- /examples/stackpanel/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/stackpanel/shell.bat -------------------------------------------------------------------------------- /examples/stackpanel/source/stackpanel_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/stackpanel/source/stackpanel_sample.d -------------------------------------------------------------------------------- /examples/stackpanel/stackpanel.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/stackpanel/stackpanel.code-workspace -------------------------------------------------------------------------------- /examples/statusbar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/statusbar/.gitignore -------------------------------------------------------------------------------- /examples/statusbar/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/statusbar/.vscode/launch.json -------------------------------------------------------------------------------- /examples/statusbar/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/statusbar/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/statusbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/statusbar/README.md -------------------------------------------------------------------------------- /examples/statusbar/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/statusbar/dub.json -------------------------------------------------------------------------------- /examples/statusbar/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/statusbar/image/screenshot.png -------------------------------------------------------------------------------- /examples/statusbar/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/statusbar/shell.bat -------------------------------------------------------------------------------- /examples/statusbar/source/statusbar_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/statusbar/source/statusbar_sample.d -------------------------------------------------------------------------------- /examples/statusbar/statusbar.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/statusbar/statusbar.code-workspace -------------------------------------------------------------------------------- /examples/tabcontrol/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tabcontrol/.gitignore -------------------------------------------------------------------------------- /examples/tabcontrol/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tabcontrol/.vscode/launch.json -------------------------------------------------------------------------------- /examples/tabcontrol/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tabcontrol/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/tabcontrol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tabcontrol/README.md -------------------------------------------------------------------------------- /examples/tabcontrol/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tabcontrol/dub.json -------------------------------------------------------------------------------- /examples/tabcontrol/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tabcontrol/image/screenshot.png -------------------------------------------------------------------------------- /examples/tabcontrol/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tabcontrol/shell.bat -------------------------------------------------------------------------------- /examples/tabcontrol/source/trackbar_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tabcontrol/source/trackbar_sample.d -------------------------------------------------------------------------------- /examples/tabcontrol/tabcontrol.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tabcontrol/tabcontrol.code-workspace -------------------------------------------------------------------------------- /examples/tablerenderer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tablerenderer/.gitignore -------------------------------------------------------------------------------- /examples/tablerenderer/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tablerenderer/.vscode/launch.json -------------------------------------------------------------------------------- /examples/tablerenderer/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tablerenderer/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/tablerenderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tablerenderer/README.md -------------------------------------------------------------------------------- /examples/tablerenderer/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tablerenderer/dub.json -------------------------------------------------------------------------------- /examples/tablerenderer/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tablerenderer/image/screenshot.png -------------------------------------------------------------------------------- /examples/tablerenderer/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tablerenderer/shell.bat -------------------------------------------------------------------------------- /examples/tablerenderer/source/tablerenderer_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tablerenderer/source/tablerenderer_sample.d -------------------------------------------------------------------------------- /examples/tablerenderer/tablerenderer.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tablerenderer/tablerenderer.code-workspace -------------------------------------------------------------------------------- /examples/textbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/textbox/.gitignore -------------------------------------------------------------------------------- /examples/textbox/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/textbox/.vscode/launch.json -------------------------------------------------------------------------------- /examples/textbox/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/textbox/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/textbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/textbox/README.md -------------------------------------------------------------------------------- /examples/textbox/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/textbox/dub.json -------------------------------------------------------------------------------- /examples/textbox/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/textbox/image/screenshot.png -------------------------------------------------------------------------------- /examples/textbox/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/textbox/shell.bat -------------------------------------------------------------------------------- /examples/textbox/source/textbox_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/textbox/source/textbox_sample.d -------------------------------------------------------------------------------- /examples/textbox/textbox.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/textbox/textbox.code-workspace -------------------------------------------------------------------------------- /examples/timechartrenderer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timechartrenderer/.gitignore -------------------------------------------------------------------------------- /examples/timechartrenderer/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timechartrenderer/.vscode/launch.json -------------------------------------------------------------------------------- /examples/timechartrenderer/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timechartrenderer/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/timechartrenderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timechartrenderer/README.md -------------------------------------------------------------------------------- /examples/timechartrenderer/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timechartrenderer/dub.json -------------------------------------------------------------------------------- /examples/timechartrenderer/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timechartrenderer/image/screenshot.png -------------------------------------------------------------------------------- /examples/timechartrenderer/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timechartrenderer/shell.bat -------------------------------------------------------------------------------- /examples/timechartrenderer/source/timechartrenderer_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timechartrenderer/source/timechartrenderer_sample.d -------------------------------------------------------------------------------- /examples/timechartrenderer/timechartrenderer.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timechartrenderer/timechartrenderer.code-workspace -------------------------------------------------------------------------------- /examples/timer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timer/.gitignore -------------------------------------------------------------------------------- /examples/timer/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timer/.vscode/launch.json -------------------------------------------------------------------------------- /examples/timer/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timer/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timer/README.md -------------------------------------------------------------------------------- /examples/timer/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timer/dub.json -------------------------------------------------------------------------------- /examples/timer/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timer/image/screenshot.png -------------------------------------------------------------------------------- /examples/timer/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timer/shell.bat -------------------------------------------------------------------------------- /examples/timer/source/timer_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timer/source/timer_sample.d -------------------------------------------------------------------------------- /examples/timer/timer.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/timer/timer.code-workspace -------------------------------------------------------------------------------- /examples/toastnotifier/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toastnotifier/.gitignore -------------------------------------------------------------------------------- /examples/toastnotifier/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toastnotifier/.vscode/launch.json -------------------------------------------------------------------------------- /examples/toastnotifier/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toastnotifier/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/toastnotifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toastnotifier/README.md -------------------------------------------------------------------------------- /examples/toastnotifier/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toastnotifier/dub.json -------------------------------------------------------------------------------- /examples/toastnotifier/image/d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toastnotifier/image/d.bmp -------------------------------------------------------------------------------- /examples/toastnotifier/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toastnotifier/image/screenshot.png -------------------------------------------------------------------------------- /examples/toastnotifier/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toastnotifier/shell.bat -------------------------------------------------------------------------------- /examples/toastnotifier/source/toastnotifier_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toastnotifier/source/toastnotifier_sample.d -------------------------------------------------------------------------------- /examples/toastnotifier/toastnotifier.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toastnotifier/toastnotifier.code-workspace -------------------------------------------------------------------------------- /examples/toggleswitch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toggleswitch/.gitignore -------------------------------------------------------------------------------- /examples/toggleswitch/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toggleswitch/.vscode/launch.json -------------------------------------------------------------------------------- /examples/toggleswitch/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toggleswitch/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/toggleswitch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toggleswitch/README.md -------------------------------------------------------------------------------- /examples/toggleswitch/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toggleswitch/dub.json -------------------------------------------------------------------------------- /examples/toggleswitch/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toggleswitch/image/screenshot.png -------------------------------------------------------------------------------- /examples/toggleswitch/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toggleswitch/shell.bat -------------------------------------------------------------------------------- /examples/toggleswitch/source/toggleswitch_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toggleswitch/source/toggleswitch_sample.d -------------------------------------------------------------------------------- /examples/toggleswitch/toggleswitch.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toggleswitch/toggleswitch.code-workspace -------------------------------------------------------------------------------- /examples/toolbar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/.gitignore -------------------------------------------------------------------------------- /examples/toolbar/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/.vscode/launch.json -------------------------------------------------------------------------------- /examples/toolbar/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/toolbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/README.md -------------------------------------------------------------------------------- /examples/toolbar/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/dub.json -------------------------------------------------------------------------------- /examples/toolbar/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/image/screenshot.png -------------------------------------------------------------------------------- /examples/toolbar/image/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/image/screenshot2.png -------------------------------------------------------------------------------- /examples/toolbar/image/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/image/screenshot3.png -------------------------------------------------------------------------------- /examples/toolbar/image/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/image/screenshot4.png -------------------------------------------------------------------------------- /examples/toolbar/image/toolbaricon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/image/toolbaricon.bmp -------------------------------------------------------------------------------- /examples/toolbar/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/shell.bat -------------------------------------------------------------------------------- /examples/toolbar/source/toolbar_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/source/toolbar_sample.d -------------------------------------------------------------------------------- /examples/toolbar/toolbar.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/toolbar/toolbar.code-workspace -------------------------------------------------------------------------------- /examples/tooltip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tooltip/.gitignore -------------------------------------------------------------------------------- /examples/tooltip/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tooltip/.vscode/launch.json -------------------------------------------------------------------------------- /examples/tooltip/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tooltip/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/tooltip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tooltip/README.md -------------------------------------------------------------------------------- /examples/tooltip/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tooltip/dub.json -------------------------------------------------------------------------------- /examples/tooltip/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tooltip/image/screenshot.png -------------------------------------------------------------------------------- /examples/tooltip/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tooltip/shell.bat -------------------------------------------------------------------------------- /examples/tooltip/source/tooltip_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tooltip/source/tooltip_sample.d -------------------------------------------------------------------------------- /examples/tooltip/tooltip.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/tooltip/tooltip.code-workspace -------------------------------------------------------------------------------- /examples/trackbar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/trackbar/.gitignore -------------------------------------------------------------------------------- /examples/trackbar/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/trackbar/.vscode/launch.json -------------------------------------------------------------------------------- /examples/trackbar/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/trackbar/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/trackbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/trackbar/README.md -------------------------------------------------------------------------------- /examples/trackbar/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/trackbar/dub.json -------------------------------------------------------------------------------- /examples/trackbar/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/trackbar/image/screenshot.png -------------------------------------------------------------------------------- /examples/trackbar/shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/trackbar/shell.bat -------------------------------------------------------------------------------- /examples/trackbar/source/trackbar_sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/trackbar/source/trackbar_sample.d -------------------------------------------------------------------------------- /examples/trackbar/trackbar.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/examples/trackbar/trackbar.code-workspace -------------------------------------------------------------------------------- /go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/go.bat -------------------------------------------------------------------------------- /go64.bat.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/go64.bat.lnk -------------------------------------------------------------------------------- /image/MSVC_build_tools_command_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/image/MSVC_build_tools_command_prompt.png -------------------------------------------------------------------------------- /image/welcomtodfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/image/welcomtodfl.png -------------------------------------------------------------------------------- /lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lgpl.txt -------------------------------------------------------------------------------- /lib/windows-x86_64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_64/README.txt -------------------------------------------------------------------------------- /lib/windows-x86_64/advapi32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_64/advapi32.lib -------------------------------------------------------------------------------- /lib/windows-x86_64/comctl32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_64/comctl32.lib -------------------------------------------------------------------------------- /lib/windows-x86_64/comdlg32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_64/comdlg32.lib -------------------------------------------------------------------------------- /lib/windows-x86_64/gdi32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_64/gdi32.lib -------------------------------------------------------------------------------- /lib/windows-x86_64/ole32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_64/ole32.lib -------------------------------------------------------------------------------- /lib/windows-x86_64/oleaut32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_64/oleaut32.lib -------------------------------------------------------------------------------- /lib/windows-x86_64/shell32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_64/shell32.lib -------------------------------------------------------------------------------- /lib/windows-x86_64/user32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_64/user32.lib -------------------------------------------------------------------------------- /lib/windows-x86_64/ws2_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_64/ws2_32.lib -------------------------------------------------------------------------------- /lib/windows-x86_mscoff/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_mscoff/README.txt -------------------------------------------------------------------------------- /lib/windows-x86_mscoff/advapi32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_mscoff/advapi32.lib -------------------------------------------------------------------------------- /lib/windows-x86_mscoff/comctl32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_mscoff/comctl32.lib -------------------------------------------------------------------------------- /lib/windows-x86_mscoff/comdlg32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_mscoff/comdlg32.lib -------------------------------------------------------------------------------- /lib/windows-x86_mscoff/gdi32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_mscoff/gdi32.lib -------------------------------------------------------------------------------- /lib/windows-x86_mscoff/ole32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_mscoff/ole32.lib -------------------------------------------------------------------------------- /lib/windows-x86_mscoff/oleaut32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_mscoff/oleaut32.lib -------------------------------------------------------------------------------- /lib/windows-x86_mscoff/shell32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_mscoff/shell32.lib -------------------------------------------------------------------------------- /lib/windows-x86_mscoff/user32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_mscoff/user32.lib -------------------------------------------------------------------------------- /lib/windows-x86_mscoff/ws2_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/lib/windows-x86_mscoff/ws2_32.lib -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/license.txt -------------------------------------------------------------------------------- /makecoff.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/makecoff.bat -------------------------------------------------------------------------------- /makelib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/makelib.bat -------------------------------------------------------------------------------- /source/dfl/all.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/all.d -------------------------------------------------------------------------------- /source/dfl/application.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/application.d -------------------------------------------------------------------------------- /source/dfl/base.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/base.d -------------------------------------------------------------------------------- /source/dfl/button.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/button.d -------------------------------------------------------------------------------- /source/dfl/chart.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/chart.d -------------------------------------------------------------------------------- /source/dfl/clipboard.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/clipboard.d -------------------------------------------------------------------------------- /source/dfl/clippingform.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/clippingform.d -------------------------------------------------------------------------------- /source/dfl/collections.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/collections.d -------------------------------------------------------------------------------- /source/dfl/colordialog.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/colordialog.d -------------------------------------------------------------------------------- /source/dfl/combobox.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/combobox.d -------------------------------------------------------------------------------- /source/dfl/commondialog.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/commondialog.d -------------------------------------------------------------------------------- /source/dfl/control.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/control.d -------------------------------------------------------------------------------- /source/dfl/data.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/data.d -------------------------------------------------------------------------------- /source/dfl/drawing.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/drawing.d -------------------------------------------------------------------------------- /source/dfl/environment.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/environment.d -------------------------------------------------------------------------------- /source/dfl/event.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/event.d -------------------------------------------------------------------------------- /source/dfl/filedialog.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/filedialog.d -------------------------------------------------------------------------------- /source/dfl/folderdialog.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/folderdialog.d -------------------------------------------------------------------------------- /source/dfl/fontdialog.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/fontdialog.d -------------------------------------------------------------------------------- /source/dfl/form.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/form.d -------------------------------------------------------------------------------- /source/dfl/groupbox.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/groupbox.d -------------------------------------------------------------------------------- /source/dfl/image/previewprintdialog_toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/image/previewprintdialog_toolbar.bmp -------------------------------------------------------------------------------- /source/dfl/imagelist.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/imagelist.d -------------------------------------------------------------------------------- /source/dfl/internal/clib.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/internal/clib.d -------------------------------------------------------------------------------- /source/dfl/internal/com.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/internal/com.d -------------------------------------------------------------------------------- /source/dfl/internal/d1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/internal/d1.d -------------------------------------------------------------------------------- /source/dfl/internal/d2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/internal/d2.d -------------------------------------------------------------------------------- /source/dfl/internal/dlib.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/internal/dlib.d -------------------------------------------------------------------------------- /source/dfl/internal/dpiaware.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/internal/dpiaware.d -------------------------------------------------------------------------------- /source/dfl/internal/utf.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/internal/utf.d -------------------------------------------------------------------------------- /source/dfl/internal/winapi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/internal/winapi.d -------------------------------------------------------------------------------- /source/dfl/internal/wincom.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/internal/wincom.d -------------------------------------------------------------------------------- /source/dfl/internal/winrt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/internal/winrt.d -------------------------------------------------------------------------------- /source/dfl/label.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/label.d -------------------------------------------------------------------------------- /source/dfl/listbox.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/listbox.d -------------------------------------------------------------------------------- /source/dfl/listview.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/listview.d -------------------------------------------------------------------------------- /source/dfl/menu.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/menu.d -------------------------------------------------------------------------------- /source/dfl/messagebox.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/messagebox.d -------------------------------------------------------------------------------- /source/dfl/notifyicon.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/notifyicon.d -------------------------------------------------------------------------------- /source/dfl/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/package.d -------------------------------------------------------------------------------- /source/dfl/panel.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/panel.d -------------------------------------------------------------------------------- /source/dfl/picturebox.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/picturebox.d -------------------------------------------------------------------------------- /source/dfl/printing.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/printing.d -------------------------------------------------------------------------------- /source/dfl/progressbar.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/progressbar.d -------------------------------------------------------------------------------- /source/dfl/registry.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/registry.d -------------------------------------------------------------------------------- /source/dfl/resources.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/resources.d -------------------------------------------------------------------------------- /source/dfl/richtextbox.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/richtextbox.d -------------------------------------------------------------------------------- /source/dfl/sharedcontrol.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/sharedcontrol.d -------------------------------------------------------------------------------- /source/dfl/socket.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/socket.d -------------------------------------------------------------------------------- /source/dfl/splitter.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/splitter.d -------------------------------------------------------------------------------- /source/dfl/statusbar.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/statusbar.d -------------------------------------------------------------------------------- /source/dfl/tabcontrol.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/tabcontrol.d -------------------------------------------------------------------------------- /source/dfl/textbox.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/textbox.d -------------------------------------------------------------------------------- /source/dfl/textboxbase.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/textboxbase.d -------------------------------------------------------------------------------- /source/dfl/timer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/timer.d -------------------------------------------------------------------------------- /source/dfl/toastnotifier.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/toastnotifier.d -------------------------------------------------------------------------------- /source/dfl/toggleswitch.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/toggleswitch.d -------------------------------------------------------------------------------- /source/dfl/toolbar.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/toolbar.d -------------------------------------------------------------------------------- /source/dfl/tooltip.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/tooltip.d -------------------------------------------------------------------------------- /source/dfl/trackbar.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/trackbar.d -------------------------------------------------------------------------------- /source/dfl/treeview.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/treeview.d -------------------------------------------------------------------------------- /source/dfl/usercontrol.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/source/dfl/usercontrol.d -------------------------------------------------------------------------------- /zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayerd/dfl/HEAD/zlib.txt --------------------------------------------------------------------------------