1 /** DGui project file.
2 
3 Copyright: Trogu Antonio Davide 2011-2013
4 
5 License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0).
6 
7 Authors: Trogu Antonio Davide
8 */
9 
10 /**
11   DGui Main Import Module.
12 
13   $(B $(RED DLL Versions and prerequisites:))
14 
15   $(TABLE
16 		$(TR	$(TD $(B Version)) $(TD $(B DLL))		$(TD $(B Distribution Platform)))
17 		$(TR	$(TD 4.0)		$(TD All)				$(TD Windows 95 and Windows NT 4.0))
18 		$(TR	$(TD 4.7)		$(TD All)				$(TD Windows Internet Explorer 3.x))
19 		$(TR	$(TD 4.71)		$(TD All)				$(TD Internet Explorer 4.0. $(I $(LPAREN)See note 2$(RPAREN))))
20 		$(TR	$(TD 4.72)		$(TD All)				$(TD Internet Explorer 4.01 and Windows 98. See note 2))
21 		$(TR	$(TD 5.0)		$(TD Shlwapi.dll)		$(TD Internet Explorer 5 and Windows 98 SE. See note 3))
22 		$(TR	$(TD 5.5)		$(TD Shlwapi.dll)		$(TD Internet Explorer 5.5 and Windows Millennium Edition (Windows Me)))
23 		$(TR	$(TD 6.0)		$(TD Shlwapi.dll)		$(TD Windows XP and Windows Vista))
24 		$(TR	$(TD 5.0)		$(TD Shell32.dll)		$(TD Windows 2000 and Windows Me. $(I $(LPAREN)See note 3$(RPAREN))))
25 		$(TR	$(TD 6.0)		$(TD Shell32.dll)		$(TD Windows XP))
26 		$(TR	$(TD 6.0.1)		$(TD Shell32.dll)		$(TD Windows Vista))
27 		$(TR	$(TD 6.1)			$(TD Shell32.dll)		$(TD Windows 7))
28 		$(TR	$(TD 5.8)		$(TD Comctl32.dll)		$(TD Internet Explorer 5. $(I $(LPAREN)See note 3$(RPAREN))))
29 		$(TR	$(TD 5.81)		$(TD Comctl32.dll)		$(TD Windows 2000 and Windows Me. $(I $(LPAREN)See note 3$(RPAREN))))
30 		$(TR	$(TD 5.82)		$(TD Comctl32.dll)		$(TD Windows XP and Windows Vista. $(I $(LPAREN)See note 4$(RPAREN))))
31 		$(TR	$(TD 6.0)		$(TD Comctl32.dll)		$(TD Windows XP, Windows Vista and Windows 7 $(LPAREN)Not redistributable$(RPAREN) ))
32   )
33 
34   $(B $(BLUE NOTE 1:))
35 
36   The 4.00 versions of Shell32.dll and Comctl32.dll are found on the original
37   versions of Windows 95 and Windows NT 4.0. New versions of Commctl.dll were shipped
38   with _all Internet Explorer releases. Shlwapi.dll shipped with Internet Explorer 4.0,
39   so its initial version number here is 4.71. The Shell was not updated with the Internet Explorer 3.0 release,
40   so Shell32.dll does not have a version 4.70.
41   While Shell32.dll versions 4.71 and 4.72 were shipped with the corresponding Internet Explorer releases,
42   they were not necessarily installed (see note 2).
43   For subsequent releases, the version numbers for the three DLLs are not identical.
44   In general, you should assume that _all three DLLs may have different version numbers,
45   and test each one separately.
46 
47 
48   $(B $(BLUE NOTE 2:))
49 
50   All systems with Internet Explorer 4.0 or 4.01 will have the associated version of Comctl32.dll
51   and Shlwapi.dll (4.71 or 4.72, respectively). However, for systems prior to Windows 98,
52   Internet Explorer 4.0 and 4.01 can be installed with or without the integrated Shell.
53   If they are installed with the integrated Shell, the associated version of Shell32.dll will be installed.
54   If they are installed without the integrated Shell, Shell32.dll is not updated.
55   No other versions of Internet Explorer update Shell32.dll. In other words, the presence of
56   version 4.71 or 4.72 of Comctl32.dll or Shlwapi.dll on a system does not guarantee that Shell32.dll
57   has the same version number. All Windows 98 systems have version 4.72 of Shell32.dll.
58 
59 
60   $(B $(BLUE NOTE 3:))
61 
62   Version 5.80 of Comctl32.dll and version 5.0 of Shlwapi.dll are distributed with Internet Explorer 5.
63   They will be found on all systems on which Internet Explorer 5 is installed, except Windows 2000.
64   Internet Explorer 5 does not update the Shell, so version 5.0 of Shell32.dll will not be found on Windows NT,
65   Windows 95, or Windows 98 systems.
66   Version 5.0 of Shell32.dll will be distributed with Windows 2000 and Windows Me,
67   along with version 5.0 of Shlwapi.dll, and version 5.81 of Comctl32.dll.
68 
69 
70   $(B $(BLUE NOTE 4:))
71 
72   ComCtl32.dll version 6 is not redistributable.
73   If you want your application to use ComCtl32.dll version 6,
74   you must add an application manifest that indicates that version 6 should be used if it is available.
75 
76   $(I Source:) $(LINK2 http://msdn.microsoft.com/en-us/library/bb776779%28VS.85%29.aspx, MSDN)
77  */
78 
79 module dguihub;
80 
81 public import dguihub.application;
82 public import dguihub.messagebox, dguihub.imagelist;
83 public import dguihub.toolbar, dguihub.statusbar, dguihub.progressbar, dguihub.trackbar;
84 public import dguihub.core.geometry, dguihub.core.events.event, dguihub.core.utils;
85 public import dguihub.colordialog, dguihub.fontdialog, dguihub.filebrowserdialog,
86    dguihub.folderbrowserdialog;
87 public import dguihub.form, dguihub.button, dguihub.label, dguihub.textbox,
88    dguihub.richtextbox, dguihub.tabcontrol, dguihub.combobox, dguihub.listbox,
89    dguihub.listview, dguihub.treeview, dguihub.picturebox, dguihub.scrollbar, dguihub.tooltip;