diff --git a/dlanguilib.sln b/dlanguilib.sln index 24d76de8..24a1a947 100644 --- a/dlanguilib.sln +++ b/dlanguilib.sln @@ -10,6 +10,8 @@ Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "example1", "examples\exampl EndProject Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "test", "examples\test\test.visualdproj", "{BE84DF39-64E6-449D-89E0-8E92404003CB}" EndProject +Project("{002A2DE9-8BB6-484D-9802-7E4AD4084715}") = "helloworld", "examples\helloworld\helloworld.visualdproj", "{66B1B701-6AC9-41F5-8DB4-5CB1611FB977}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 @@ -28,6 +30,10 @@ Global {BE84DF39-64E6-449D-89E0-8E92404003CB}.Debug|Win32.Build.0 = Debug|Win32 {BE84DF39-64E6-449D-89E0-8E92404003CB}.Release|Win32.ActiveCfg = Release|Win32 {BE84DF39-64E6-449D-89E0-8E92404003CB}.Release|Win32.Build.0 = Release|Win32 + {66B1B701-6AC9-41F5-8DB4-5CB1611FB977}.Debug|Win32.ActiveCfg = Debug|Win32 + {66B1B701-6AC9-41F5-8DB4-5CB1611FB977}.Debug|Win32.Build.0 = Debug|Win32 + {66B1B701-6AC9-41F5-8DB4-5CB1611FB977}.Release|Win32.ActiveCfg = Release|Win32 + {66B1B701-6AC9-41F5-8DB4-5CB1611FB977}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/dub.json b/dub.json index 32d85285..efcb2e50 100644 --- a/dub.json +++ b/dub.json @@ -9,7 +9,6 @@ "versions-windows": ["USE_OPENGL", "Unicode"], "subPackages": [ - "./examples/example1/", { "versions-windows": ["USE_OPENGL", "Unicode"], "name": "dlanguilib", @@ -83,11 +82,14 @@ "derelict-fi": "~master", "derelict-ft": "~master" } - } + }, + "./examples/helloworld/", + "./examples/example1/" ], "dependencies": { "dlangui:dlanguilib": "~master", "dlangui:example1": "~master", + "dlangui:helloworld": "~master", } } diff --git a/examples/example1/src/main.d b/examples/example1/src/main.d index c50e08f0..34e75830 100644 --- a/examples/example1/src/main.d +++ b/examples/example1/src/main.d @@ -11,8 +11,9 @@ mixin APP_ENTRY_POINT; extern (C) int UIAppMain(string[] args) { // resource directory search paths string[] resourceDirs = [ - appendPath(exePath, "../res/"), // for Visual D and DUB builds - appendPath(exePath, "../../res/") // for Mono-D builds + appendPath(exePath, "../../../res/"), // for Visual D and DUB builds + appendPath(exePath, "../../../../res/"),// for Mono-D builds + appendPath(exePath, "res/") // when res dir is located at the same directory as executable ]; // setup resource directories - will use only existing directories drawableCache.setResourcePaths(resourceDirs); diff --git a/examples/helloworld/dub.json b/examples/helloworld/dub.json new file mode 100644 index 00000000..095a8b92 --- /dev/null +++ b/examples/helloworld/dub.json @@ -0,0 +1,93 @@ +{ + "name": "helloworld", + "description": "dlangui library example Hello World", + "homepage": "https://github.com/buggins/dlangui", + "license": "Boost", + "authors": ["Vadim Lopatin"], + + "targetName": "helloworld", + "targetPath": "bin", + "targetType": "executable", + + "sourcePaths": ["../../src"], + + "sourceFiles-windows": [ + "../../3rdparty/win32/basetsd.d", + "../../3rdparty/win32/basetyps.d", + "../../3rdparty/win32/cderr.d", + "../../3rdparty/win32/cguid.d", + "../../3rdparty/win32/commdlg.d", + "../../3rdparty/win32/commctrl.d", + "../../3rdparty/win32/core.d", + "../../3rdparty/win32/dde.d", + "../../3rdparty/win32/ddeml.d", + "../../3rdparty/win32/dlgs.d", + "../../3rdparty/win32/imm.d", + "../../3rdparty/win32/lzexpand.d", + "../../3rdparty/win32/mmsystem.d", + "../../3rdparty/win32/nb30.d", + "../../3rdparty/win32/oaidl.d", + "../../3rdparty/win32/objbase.d", + "../../3rdparty/win32/objfwd.d", + "../../3rdparty/win32/objidl.d", + "../../3rdparty/win32/ole.d", + "../../3rdparty/win32/ole2.d", + "../../3rdparty/win32/oleauto.d", + "../../3rdparty/win32/olectlid.d", + "../../3rdparty/win32/oleidl.d", + "../../3rdparty/win32/prsht.d", + "../../3rdparty/win32/rpc.d", + "../../3rdparty/win32/rpcdce.d", + "../../3rdparty/win32/rpcdcep.d", + "../../3rdparty/win32/rpcndr.d", + "../../3rdparty/win32/rpcnsi.d", + "../../3rdparty/win32/rpcnsip.d", + "../../3rdparty/win32/rpcnterr.d", + "../../3rdparty/win32/shellapi.d", + "../../3rdparty/win32/shlobj.d", + "../../3rdparty/win32/shlguid.d", + "../../3rdparty/win32/unknwn.d", + "../../3rdparty/win32/uuid.d", + "../../3rdparty/win32/w32api.d", + "../../3rdparty/win32/winbase.d", + "../../3rdparty/win32/wincon.d", + "../../3rdparty/win32/windef.d", + "../../3rdparty/win32/windows.d", + "../../3rdparty/win32/winerror.d", + "../../3rdparty/win32/wingdi.d", + "../../3rdparty/win32/winnetwk.d", + "../../3rdparty/win32/winnls.d", + "../../3rdparty/win32/winnt.d", + "../../3rdparty/win32/winperf.d", + "../../3rdparty/win32/winsock2.d", + "../../3rdparty/win32/winspool.d", + "../../3rdparty/win32/winsvc.d", + "../../3rdparty/win32/winuser.d", + "../../3rdparty/win32/winver.d", + "../../3rdparty/win32/ws2tcpip.d", + "../../3rdparty/win32/wtypes.d" + ], + "sourceFiles": [ + "src/app.d" + ], + "copyFiles-windows": [ + "../../lib/FreeImage.dll", + "../../lib/libfreetype-6.dll", + "../../lib/libpng15.dll", + "../../lib/zlib1.dll" + ], + + "mainSourceFile": "src/app.d", + + "libs-windows": ["dlanguilib", "phobos", "ole32", "kernel32", "user32", "comctl32", "comdlg32"], + + "versions-windows": ["USE_OPENGL", "Unicode"], + + + "dependencies": { + "dlangui:dlanguilib": "~master", + "derelict-gl3": "~master", + "derelict-fi": "~master", + "derelict-ft": "~master" + } +} diff --git a/examples/helloworld/helloworld.dproj b/examples/helloworld/helloworld.dproj new file mode 100644 index 00000000..949bdbc0 --- /dev/null +++ b/examples/helloworld/helloworld.dproj @@ -0,0 +1,57 @@ + + + + Debug + AnyCPU + 10.0.0 + 2.0 + {440816C8-DBD6-454C-A0D7-B6E59CA1ED86} + true + true + true + + + {440816C8-DBD6-454C-A0D7-B6E59CA1ED86} + + + DMD + + + /home/lve/src/d/dlangui/src + /home/lve/src/d/DerelictGL3/source + /home/lve/src/d/DerelictUtil/source + /home/lve/src/d/DerelictFT/source + /home/lve/src/d/X11.d + /home/lve/src/d/dlangui/3rdparty/libpng/source + /home/lve/src/d/dlangui/3rdparty/libpng/lib + + + + + true + bin\Debug + helloworld + obj/Debug + true + Executable + + + bin\Release + dlanguilib + obj/Release + true + Executable + + + true + bin\Unittest + -unittest + obj/Unittest + dlanguilib + true + Executable + + + + + \ No newline at end of file diff --git a/examples/helloworld/helloworld.visualdproj b/examples/helloworld/helloworld.visualdproj new file mode 100644 index 00000000..e8f178cf --- /dev/null +++ b/examples/helloworld/helloworld.visualdproj @@ -0,0 +1,194 @@ + + {66B1B701-6AC9-41F5-8DB4-5CB1611FB977} + + 0 + 0 + 0 + 2 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 2 + 0 + 0 + 0 + $(DMDInstallDir)windows\bin\dmd.exe + $(SolutionDir)/src $(SolutionDir)/3rdparty $(SolutionDir)/3rdparty/libpng/source $(SolutionDir)/../DerelictGL3/source $(SolutionDir)/../DerelictUtil/source $(SolutionDir)/../gl3n + + $(ConfigurationName) + $(OutDir) + + + 0 + + + + + 0 + + + 1 + $(IntDir)\$(TargetName).json + 0 + + 0 + Unicode USE_OPENGL + 0 + 3 + 0 + + + + 0 + + 1 + $(VisualDInstallDir)cv2pdb\cv2pdb.exe + 0 + 0 + 0 + + + + libpng15.lib dlangui.lib phobos.lib ole32.lib kernel32.lib user32.lib comctl32.lib comdlg32.lib shell32.lib dlangui.lib + ../../Debug ../../3rdparty/libpng/lib 3rdparty/libpng/lib ../../../DerelictOpenGL3/source + + + $(OutDir)\$(ProjectName).exe + 1 + -profile + + + *.obj;*.cmd;*.build;*.json;*.dep + + + 0 + 0 + 0 + 2 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 2 + 0 + 0 + 0 + $(DMDInstallDir)windows\bin\dmd.exe + ../../src ../../3rdparty ../../3rdparty/libpng/source + + $(ConfigurationName) + $(OutDir) + + + 0 + + + + + 0 + + + 1 + $(IntDir)\$(TargetName).json + 0 + + 0 + Unicode + 0 + 0 + 0 + + + + 0 + + 0 + $(VisualDInstallDir)cv2pdb\cv2pdb.exe + 0 + 0 + 0 + + + + dlangui.lib phobos.lib libpng15.lib ole32.lib kernel32.lib user32.lib comctl32.lib comdlg32.lib + ../../Release ../../3rdparty/libpng/lib 3rdparty/libpng/lib + + + $(OutDir)\$(ProjectName).exe + 1 + + + + *.obj;*.cmd;*.build;*.json;*.dep + + + + + diff --git a/examples/helloworld/src/app.d b/examples/helloworld/src/app.d new file mode 100644 index 00000000..b33b09b1 --- /dev/null +++ b/examples/helloworld/src/app.d @@ -0,0 +1,34 @@ +module app; + +import dlangui.all; +import std.stdio; +import std.conv; + + +mixin APP_ENTRY_POINT; + +/// entry point for dlangui based application +extern (C) int UIAppMain(string[] args) { + // resource directory search paths + string[] resourceDirs = [ + appendPath(exePath, "../../../res/"), // for Visual D and DUB builds + appendPath(exePath, "../../../../res/"),// for Mono-D builds + appendPath(exePath, "res/") // when res dir is located at the same directory as executable + ]; + // setup resource directories - will use only existing directories + drawableCache.setResourcePaths(resourceDirs); + // setup i18n - look for i18n directory inside one of passed directories + i18n.findTranslationsDir(resourceDirs); + // select translation file - for english language + i18n.load("en.ini"); //"ru.ini", "en.ini" + + // create window + Window window = Platform.instance.createWindow("My Window", null); + + window.mainWidget = (new Button()).text("sample button"); + + window.show(); + //window.windowCaption = "New Window Caption"; + // run message loop + return Platform.instance.enterMessageLoop(); +} diff --git a/examples/example1/res/btn_default_normal.9.png b/res/btn_default_normal.9.png similarity index 100% rename from examples/example1/res/btn_default_normal.9.png rename to res/btn_default_normal.9.png diff --git a/examples/example1/res/btn_default_pressed.9.png b/res/btn_default_pressed.9.png similarity index 100% rename from examples/example1/res/btn_default_pressed.9.png rename to res/btn_default_pressed.9.png diff --git a/examples/example1/res/btn_default_selected.9.png b/res/btn_default_selected.9.png similarity index 100% rename from examples/example1/res/btn_default_selected.9.png rename to res/btn_default_selected.9.png diff --git a/examples/example1/res/btn_default_small.xml b/res/btn_default_small.xml similarity index 100% rename from examples/example1/res/btn_default_small.xml rename to res/btn_default_small.xml diff --git a/examples/example1/res/btn_default_small_normal.9.png b/res/btn_default_small_normal.9.png similarity index 100% rename from examples/example1/res/btn_default_small_normal.9.png rename to res/btn_default_small_normal.9.png diff --git a/examples/example1/res/btn_default_small_normal_disable.9.png b/res/btn_default_small_normal_disable.9.png similarity index 100% rename from examples/example1/res/btn_default_small_normal_disable.9.png rename to res/btn_default_small_normal_disable.9.png diff --git a/examples/example1/res/btn_default_small_normal_disable_focused.9.png b/res/btn_default_small_normal_disable_focused.9.png similarity index 100% rename from examples/example1/res/btn_default_small_normal_disable_focused.9.png rename to res/btn_default_small_normal_disable_focused.9.png diff --git a/examples/example1/res/btn_default_small_normal_hover.9.png b/res/btn_default_small_normal_hover.9.png similarity index 100% rename from examples/example1/res/btn_default_small_normal_hover.9.png rename to res/btn_default_small_normal_hover.9.png diff --git a/examples/example1/res/btn_default_small_pressed.9.png b/res/btn_default_small_pressed.9.png similarity index 100% rename from examples/example1/res/btn_default_small_pressed.9.png rename to res/btn_default_small_pressed.9.png diff --git a/examples/example1/res/btn_default_small_selected.9.png b/res/btn_default_small_selected.9.png similarity index 100% rename from examples/example1/res/btn_default_small_selected.9.png rename to res/btn_default_small_selected.9.png diff --git a/examples/example1/res/btn_default_small_transparent.xml b/res/btn_default_small_transparent.xml similarity index 100% rename from examples/example1/res/btn_default_small_transparent.xml rename to res/btn_default_small_transparent.xml diff --git a/examples/example1/res/close.png b/res/close.png similarity index 100% rename from examples/example1/res/close.png rename to res/close.png diff --git a/examples/example1/res/exit.png b/res/exit.png similarity index 100% rename from examples/example1/res/exit.png rename to res/exit.png diff --git a/examples/example1/res/expander_close_holo_light.9.png b/res/expander_close_holo_light.9.png similarity index 100% rename from examples/example1/res/expander_close_holo_light.9.png rename to res/expander_close_holo_light.9.png diff --git a/examples/example1/res/fileclose.png b/res/fileclose.png similarity index 100% rename from examples/example1/res/fileclose.png rename to res/fileclose.png diff --git a/examples/example1/res/fileopen.png b/res/fileopen.png similarity index 100% rename from examples/example1/res/fileopen.png rename to res/fileopen.png diff --git a/examples/example1/res/frame_blue.9.png b/res/frame_blue.9.png similarity index 100% rename from examples/example1/res/frame_blue.9.png rename to res/frame_blue.9.png diff --git a/examples/example1/res/i18n/en.ini b/res/i18n/en.ini similarity index 100% rename from examples/example1/res/i18n/en.ini rename to res/i18n/en.ini diff --git a/examples/example1/res/i18n/ru.ini b/res/i18n/ru.ini similarity index 100% rename from examples/example1/res/i18n/ru.ini rename to res/i18n/ru.ini diff --git a/examples/example1/res/main_menu_item_background.xml b/res/main_menu_item_background.xml similarity index 100% rename from examples/example1/res/main_menu_item_background.xml rename to res/main_menu_item_background.xml diff --git a/examples/example1/res/main_menu_item_background_hover.9.png b/res/main_menu_item_background_hover.9.png similarity index 100% rename from examples/example1/res/main_menu_item_background_hover.9.png rename to res/main_menu_item_background_hover.9.png diff --git a/examples/example1/res/main_menu_item_background_normal.9.png b/res/main_menu_item_background_normal.9.png similarity index 100% rename from examples/example1/res/main_menu_item_background_normal.9.png rename to res/main_menu_item_background_normal.9.png diff --git a/examples/example1/res/main_menu_item_background_selected.9.png b/res/main_menu_item_background_selected.9.png similarity index 100% rename from examples/example1/res/main_menu_item_background_selected.9.png rename to res/main_menu_item_background_selected.9.png diff --git a/examples/example1/res/popup_menu_background_normal.9.png b/res/popup_menu_background_normal.9.png similarity index 100% rename from examples/example1/res/popup_menu_background_normal.9.png rename to res/popup_menu_background_normal.9.png diff --git a/examples/example1/res/scrollbar_btn_down.png b/res/scrollbar_btn_down.png similarity index 100% rename from examples/example1/res/scrollbar_btn_down.png rename to res/scrollbar_btn_down.png diff --git a/examples/example1/res/scrollbar_btn_left.png b/res/scrollbar_btn_left.png similarity index 100% rename from examples/example1/res/scrollbar_btn_left.png rename to res/scrollbar_btn_left.png diff --git a/examples/example1/res/scrollbar_btn_right.png b/res/scrollbar_btn_right.png similarity index 100% rename from examples/example1/res/scrollbar_btn_right.png rename to res/scrollbar_btn_right.png diff --git a/examples/example1/res/scrollbar_btn_up.png b/res/scrollbar_btn_up.png similarity index 100% rename from examples/example1/res/scrollbar_btn_up.png rename to res/scrollbar_btn_up.png diff --git a/examples/example1/res/scrollbar_indicator_horizontal.png b/res/scrollbar_indicator_horizontal.png similarity index 100% rename from examples/example1/res/scrollbar_indicator_horizontal.png rename to res/scrollbar_indicator_horizontal.png diff --git a/examples/example1/res/scrollbar_indicator_vertical.png b/res/scrollbar_indicator_vertical.png similarity index 100% rename from examples/example1/res/scrollbar_indicator_vertical.png rename to res/scrollbar_indicator_vertical.png diff --git a/examples/example1/res/tab_btn_normal.9.png b/res/tab_btn_normal.9.png similarity index 100% rename from examples/example1/res/tab_btn_normal.9.png rename to res/tab_btn_normal.9.png diff --git a/examples/example1/res/tab_btn_up.xml b/res/tab_btn_up.xml similarity index 100% rename from examples/example1/res/tab_btn_up.xml rename to res/tab_btn_up.xml diff --git a/examples/example1/res/tab_btn_up_focused.9.png b/res/tab_btn_up_focused.9.png similarity index 100% rename from examples/example1/res/tab_btn_up_focused.9.png rename to res/tab_btn_up_focused.9.png diff --git a/examples/example1/res/tab_btn_up_focused_selected.9.png b/res/tab_btn_up_focused_selected.9.png similarity index 100% rename from examples/example1/res/tab_btn_up_focused_selected.9.png rename to res/tab_btn_up_focused_selected.9.png diff --git a/examples/example1/res/tab_btn_up_hover.9.png b/res/tab_btn_up_hover.9.png similarity index 100% rename from examples/example1/res/tab_btn_up_hover.9.png rename to res/tab_btn_up_hover.9.png diff --git a/examples/example1/res/tab_btn_up_normal.9.png b/res/tab_btn_up_normal.9.png similarity index 100% rename from examples/example1/res/tab_btn_up_normal.9.png rename to res/tab_btn_up_normal.9.png diff --git a/examples/example1/res/tab_btn_up_selected.9.png b/res/tab_btn_up_selected.9.png similarity index 100% rename from examples/example1/res/tab_btn_up_selected.9.png rename to res/tab_btn_up_selected.9.png diff --git a/examples/example1/res/tab_more.png b/res/tab_more.png similarity index 100% rename from examples/example1/res/tab_more.png rename to res/tab_more.png diff --git a/examples/example1/res/tab_up_background.9.png b/res/tab_up_background.9.png similarity index 100% rename from examples/example1/res/tab_up_background.9.png rename to res/tab_up_background.9.png diff --git a/examples/example1/res/tab_up_background_focused.9.png b/res/tab_up_background_focused.9.png similarity index 100% rename from examples/example1/res/tab_up_background_focused.9.png rename to res/tab_up_background_focused.9.png diff --git a/examples/example1/res/tab_up_background_selected.9.png b/res/tab_up_background_selected.9.png similarity index 100% rename from examples/example1/res/tab_up_background_selected.9.png rename to res/tab_up_background_selected.9.png diff --git a/src/dlangui/all.d b/src/dlangui/all.d index 8df92728..bdb984fa 100644 --- a/src/dlangui/all.d +++ b/src/dlangui/all.d @@ -11,14 +11,15 @@ Synopsis: // helloworld import dlangui.all; // required in one of modules -mixin DLANGUI_ENTRY_POINT; +mixin APP_ENTRY_POINT; /// entry point for dlangui based application extern (C) int UIAppMain(string[] args) { // resource directory search paths string[] resourceDirs = [ - appendPath(exePath, "../res/"), // for Visual D and DUB builds - appendPath(exePath, "../../res/") // for Mono-D builds + appendPath(exePath, "../../../res/"), // for Visual D and DUB builds + appendPath(exePath, "../../../../res/"), // for Mono-D builds + appendPath(exePath, "res/") // when res dir is located at the same directory as executable ]; // setup resource directories - will use only existing directories drawableCache.setResourcePaths(resourceDirs); @@ -28,10 +29,10 @@ extern (C) int UIAppMain(string[] args) { i18n.load("en.ini"); //"ru.ini", "en.ini" // create window - Window window = Platform.instance().createWindow("My Window", null); + Window window = Platform.instance.createWindow("My Window", null); window.mainWidget = (new Button()).text("Hello world"d); // run message loop - return Platform.instance().enterMessageLoop(); + return Platform.instance.enterMessageLoop(); }