├── .gitattributes ├── .gitignore ├── DUser ├── DUser.cpp ├── DUser.h ├── DUser.vcxproj └── DUser.vcxproj.filters ├── DirectUI Library.sln ├── DirectUI Library.sln.DotSettings ├── DirectUI ├── AutoLock.h ├── AutoThread.h ├── AutoVariant.h ├── Base.h ├── Base │ ├── Alloc.h │ ├── DynamicArray.h │ ├── FontCache.h │ ├── LinkedList.h │ ├── SBAlloc.h │ └── Surface.h ├── Bind.h ├── BrowserSelection.h ├── CheckBoxGlyph.h ├── ClassInfo.h ├── Clipper.h ├── Control │ ├── AnimationStrip.h │ ├── Button.h │ ├── Combobox.h │ ├── Edit.h │ ├── ElementWithHWND.h │ ├── Expandable.h │ ├── HWNDHost.h │ ├── ItemList.h │ ├── ManipulationHelper.h │ ├── ModernProgressBar.h │ ├── ModernProgressRing.h │ ├── Movie.h │ ├── NativeHWNDHost.h │ ├── Progress.h │ ├── RefPointElement.h │ ├── RepeatButton.h │ ├── RichText.h │ ├── ScrollBar.h │ ├── ScrollViewer.h │ ├── Selector.h │ ├── SemanticController.h │ ├── Thumb.h │ ├── TouchButton.h │ ├── TouchCheckBox.h │ ├── TouchEdit2.h │ ├── TouchEditBase.h │ ├── TouchEditInner.h │ ├── TouchHWNDElement.h │ ├── TouchHyperLink.h │ ├── TouchScrollBar.h │ ├── TouchScrollViewer.h │ ├── TouchSelect.h │ ├── TouchSelectProvider.h │ ├── TouchSlider.h │ ├── TouchSwitch.h │ ├── TouchTooltip.h │ └── Viewer.h ├── Core │ ├── Accessibility.h │ ├── BehaviorEngine.h │ ├── BehaviorEngineHelper.h │ ├── CallstackTracker.h │ ├── Element.h │ ├── ElementHelpers.h │ ├── Event.h │ ├── Expression.h │ ├── Host.h │ ├── Layout.h │ ├── Navigation.h │ ├── Sheet.h │ ├── Thread.h │ ├── UnknownElement.h │ └── Value.h ├── DirectUI.cpp ├── DirectUI.def ├── DirectUI.h ├── DirectUI.vcxproj ├── DirectUI.vcxproj.filters ├── DuiAnimation.h ├── DuiProxy.h ├── ElementProviderManager.h ├── Expando.h ├── ExpandoButtonGlyph.h ├── Extensions │ ├── AccessibleButton.h │ ├── AutoButton.h │ ├── Browser.h │ ├── CommonControls │ │ ├── CAVI.h │ │ ├── CBase.h │ │ ├── CBaseCheckRadioButton.h │ │ ├── CBaseScrollBar.h │ │ ├── CCSysLink.h │ │ ├── CCheckBox.h │ │ ├── CCommandLink.h │ │ ├── CHScrollBar.h │ │ ├── CListBox.h │ │ ├── CListView.h │ │ ├── CProgressBar.h │ │ ├── CPushButton.h │ │ ├── CRadioButton.h │ │ ├── CTrackBar.h │ │ ├── CTreeView.h │ │ └── CVScrollBar.h │ ├── DialogElement.h │ ├── Macro.h │ ├── Misc.h │ ├── PushButton.h │ ├── WizPageBase.h │ ├── XBaby.h │ ├── XElement.h │ ├── XHost.h │ └── XProvider.h ├── FontCheckOut.h ├── Interfaces.h ├── Layout │ ├── BorderLayout.h │ ├── FillLayout.h │ ├── FlowLayout.h │ ├── GridLayout.h │ ├── NineGridLayout.h │ ├── RowLayout.h │ ├── ShellBorderLayout.h │ ├── TableLayout.h │ └── VerticalFlowLayout.h ├── NavScoring.h ├── Navigator.h ├── PText.h ├── PVLLauncherTrigger.h ├── PVLTrigger.h ├── Page.h ├── Parser │ └── XmlParser.h ├── Primitives.h ├── PromptText.h ├── PropNotify.h ├── Provider.h ├── RadioButtonGlyph.h ├── Repeater.h ├── SafeElementPtr.h ├── SelectorNoDefault.h ├── SelectorSelection.h ├── SelectorSelectionItem.h ├── SemanticZoomToggle.h ├── SimpleTimer.h ├── StockBehaviors │ └── ContextMenuBehavior.h ├── StyledScrollViewer.h ├── TextGraphic.h ├── Types.h ├── UIAutomation │ ├── ElementProvider.h │ ├── EventManager.h │ ├── ExpandCollapseProvider.h │ ├── GridItemProvider.h │ ├── GridProvider.h │ ├── HWNDElementProvider.h │ ├── InvokeManager.h │ ├── InvokeProvider.h │ ├── PatternProvider.h │ ├── RangeValueProvider.h │ ├── RefcountBase.h │ ├── ScrollItemProvider.h │ ├── ScrollProvider.h │ ├── SelectionItemProvider.h │ ├── SelectionProvider.h │ ├── TableItemProvider.h │ ├── TableProvider.h │ ├── ToggleProvider.h │ ├── UiaSchema.h │ └── ValueProvider.h ├── ValuePtr.h ├── msdef.txt └── msdef64.txt ├── LICENSE ├── README.md ├── UITest ├── UITest.cpp ├── UITest.h ├── UITest.rc ├── UITest.vcxproj ├── UITest.vcxproj.filters ├── app.manifest ├── dui.xml ├── packages.config └── resource.h └── docs ├── AdaptorElementClass.g.txt ├── AnimationStripClass.g.txt ├── BaseScrollViewerClass.g.txt ├── BindClass.g.txt ├── BrowserClass.g.txt ├── ButtonClass.g.txt ├── CCAVIClass.g.txt ├── CCBaseCheckRadioButtonClass.g.txt ├── CCBaseClass.g.txt ├── CCBaseScrollBarClass.g.txt ├── CCCheckBoxClass.g.txt ├── CCCommandLinkClass.g.txt ├── CCHScrollBarClass.g.txt ├── CCListBoxClass.g.txt ├── CCListViewClass.g.txt ├── CCProgressBarClass.g.txt ├── CCPushButtonClass.g.txt ├── CCRadioButtonClass.g.txt ├── CCSysLinkClass.g.txt ├── CCTrackBarClass.g.txt ├── CCTreeViewClass.g.txt ├── CCVScrollBarClass.g.txt ├── CaretElementClass.g.txt ├── CheckBoxGlyphClass.g.txt ├── ClipperClass.g.txt ├── ComboboxClass.g.txt ├── DialogElementClass.g.txt ├── EditClass.g.txt ├── ElementClass.g.txt ├── ElementWithHWNDClass.g.txt ├── ExpandableClass.g.txt ├── ExpandoButtonGlyphClass.g.txt ├── ExpandoClass.g.txt ├── HWNDElementClass.g.txt ├── HWNDHostClass.g.txt ├── InternalRichTextClass.g.txt ├── ItemListClass.g.txt ├── Layouts.txt ├── MacroClass.g.txt ├── ModernProgressBarClass.g.txt ├── ModernProgressRingClass.g.txt ├── MovieClass.g.txt ├── NavigatorClass.g.txt ├── PTextClass.g.txt ├── PageClass.g.txt ├── PagesClass.g.txt ├── ProgressClass.g.txt ├── PushButtonClass.g.txt ├── RadioButtonGlyphClass.g.txt ├── RefPointElementClass.g.txt ├── RepeatButtonClass.g.txt ├── RepeaterClass.g.txt ├── RichTextClass.g.txt ├── ScrollBarClass.g.txt ├── ScrollViewerClass.g.txt ├── SelectorClass.g.txt ├── SelectorNoDefaultClass.g.txt ├── SemanticZoomToggleClass.g.txt ├── SnapshotElementClass.g.txt ├── StyledScrollViewerClass.g.txt ├── TextGraphicClass.g.txt ├── ThumbClass.g.txt ├── TouchButtonClass.g.txt ├── TouchCarouselListClass.g.txt ├── TouchCarouselScrollBarClass.g.txt ├── TouchCheckBoxClass.g.txt ├── TouchCheckBoxGlyphClass.g.txt ├── TouchCommandButtonClass.g.txt ├── TouchDialogElementClass.g.txt ├── TouchEdit2Class.g.txt ├── TouchEditBaseClass.g.txt ├── TouchEditInnerClass.g.txt ├── TouchHWNDElementClass.g.txt ├── TouchHyperLinkClass.g.txt ├── TouchRepeatButtonClass.g.txt ├── TouchScrollBarClass.g.txt ├── TouchScrollViewerClass.g.txt ├── TouchSelectClass.g.txt ├── TouchSelectItemClass.g.txt ├── TouchSelectPopupClass.g.txt ├── TouchSliderClass.g.txt ├── TouchSwitchClass.g.txt ├── TouchXBabyClass.g.txt ├── UnknownElementClass.g.txt ├── ViewerClass.g.txt ├── WrappingListClass.g.txt ├── XBabyClass.g.txt ├── XElementClass.g.txt ├── accessiblebuttonClass.g.txt ├── autobuttonClass.g.txt └── duixml ├── AuthBrokerUI.dll.xml ├── IMMERSIVESTYLES.xml ├── SYSTEMSETTINGSSTYLES.xml ├── dpapimig.exe.xml ├── duser.dll.xml └── shellstyle.dll.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/.gitignore -------------------------------------------------------------------------------- /DUser/DUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DUser/DUser.cpp -------------------------------------------------------------------------------- /DUser/DUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DUser/DUser.h -------------------------------------------------------------------------------- /DUser/DUser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DUser/DUser.vcxproj -------------------------------------------------------------------------------- /DUser/DUser.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DUser/DUser.vcxproj.filters -------------------------------------------------------------------------------- /DirectUI Library.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI Library.sln -------------------------------------------------------------------------------- /DirectUI Library.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI Library.sln.DotSettings -------------------------------------------------------------------------------- /DirectUI/AutoLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/AutoLock.h -------------------------------------------------------------------------------- /DirectUI/AutoThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/AutoThread.h -------------------------------------------------------------------------------- /DirectUI/AutoVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/AutoVariant.h -------------------------------------------------------------------------------- /DirectUI/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Base.h -------------------------------------------------------------------------------- /DirectUI/Base/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Base/Alloc.h -------------------------------------------------------------------------------- /DirectUI/Base/DynamicArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Base/DynamicArray.h -------------------------------------------------------------------------------- /DirectUI/Base/FontCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Base/FontCache.h -------------------------------------------------------------------------------- /DirectUI/Base/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Base/LinkedList.h -------------------------------------------------------------------------------- /DirectUI/Base/SBAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Base/SBAlloc.h -------------------------------------------------------------------------------- /DirectUI/Base/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Base/Surface.h -------------------------------------------------------------------------------- /DirectUI/Bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Bind.h -------------------------------------------------------------------------------- /DirectUI/BrowserSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/BrowserSelection.h -------------------------------------------------------------------------------- /DirectUI/CheckBoxGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/CheckBoxGlyph.h -------------------------------------------------------------------------------- /DirectUI/ClassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/ClassInfo.h -------------------------------------------------------------------------------- /DirectUI/Clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Clipper.h -------------------------------------------------------------------------------- /DirectUI/Control/AnimationStrip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/AnimationStrip.h -------------------------------------------------------------------------------- /DirectUI/Control/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/Button.h -------------------------------------------------------------------------------- /DirectUI/Control/Combobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/Combobox.h -------------------------------------------------------------------------------- /DirectUI/Control/Edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/Edit.h -------------------------------------------------------------------------------- /DirectUI/Control/ElementWithHWND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/ElementWithHWND.h -------------------------------------------------------------------------------- /DirectUI/Control/Expandable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/Expandable.h -------------------------------------------------------------------------------- /DirectUI/Control/HWNDHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/HWNDHost.h -------------------------------------------------------------------------------- /DirectUI/Control/ItemList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/ItemList.h -------------------------------------------------------------------------------- /DirectUI/Control/ManipulationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/ManipulationHelper.h -------------------------------------------------------------------------------- /DirectUI/Control/ModernProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/ModernProgressBar.h -------------------------------------------------------------------------------- /DirectUI/Control/ModernProgressRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/ModernProgressRing.h -------------------------------------------------------------------------------- /DirectUI/Control/Movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/Movie.h -------------------------------------------------------------------------------- /DirectUI/Control/NativeHWNDHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/NativeHWNDHost.h -------------------------------------------------------------------------------- /DirectUI/Control/Progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/Progress.h -------------------------------------------------------------------------------- /DirectUI/Control/RefPointElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/RefPointElement.h -------------------------------------------------------------------------------- /DirectUI/Control/RepeatButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/RepeatButton.h -------------------------------------------------------------------------------- /DirectUI/Control/RichText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/RichText.h -------------------------------------------------------------------------------- /DirectUI/Control/ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/ScrollBar.h -------------------------------------------------------------------------------- /DirectUI/Control/ScrollViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/ScrollViewer.h -------------------------------------------------------------------------------- /DirectUI/Control/Selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/Selector.h -------------------------------------------------------------------------------- /DirectUI/Control/SemanticController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/SemanticController.h -------------------------------------------------------------------------------- /DirectUI/Control/Thumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/Thumb.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchButton.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchCheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchCheckBox.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchEdit2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchEdit2.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchEditBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchEditBase.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchEditInner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchEditInner.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchHWNDElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchHWNDElement.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchHyperLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchHyperLink.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchScrollBar.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchScrollViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchScrollViewer.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchSelect.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchSelectProvider.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace DirectUI 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /DirectUI/Control/TouchSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchSlider.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchSwitch.h -------------------------------------------------------------------------------- /DirectUI/Control/TouchTooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/TouchTooltip.h -------------------------------------------------------------------------------- /DirectUI/Control/Viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Control/Viewer.h -------------------------------------------------------------------------------- /DirectUI/Core/Accessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/Accessibility.h -------------------------------------------------------------------------------- /DirectUI/Core/BehaviorEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/BehaviorEngine.h -------------------------------------------------------------------------------- /DirectUI/Core/BehaviorEngineHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/BehaviorEngineHelper.h -------------------------------------------------------------------------------- /DirectUI/Core/CallstackTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/CallstackTracker.h -------------------------------------------------------------------------------- /DirectUI/Core/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/Element.h -------------------------------------------------------------------------------- /DirectUI/Core/ElementHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/ElementHelpers.h -------------------------------------------------------------------------------- /DirectUI/Core/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/Event.h -------------------------------------------------------------------------------- /DirectUI/Core/Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/Expression.h -------------------------------------------------------------------------------- /DirectUI/Core/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/Host.h -------------------------------------------------------------------------------- /DirectUI/Core/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/Layout.h -------------------------------------------------------------------------------- /DirectUI/Core/Navigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/Navigation.h -------------------------------------------------------------------------------- /DirectUI/Core/Sheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/Sheet.h -------------------------------------------------------------------------------- /DirectUI/Core/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/Thread.h -------------------------------------------------------------------------------- /DirectUI/Core/UnknownElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/UnknownElement.h -------------------------------------------------------------------------------- /DirectUI/Core/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Core/Value.h -------------------------------------------------------------------------------- /DirectUI/DirectUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/DirectUI.cpp -------------------------------------------------------------------------------- /DirectUI/DirectUI.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/DirectUI.def -------------------------------------------------------------------------------- /DirectUI/DirectUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/DirectUI.h -------------------------------------------------------------------------------- /DirectUI/DirectUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/DirectUI.vcxproj -------------------------------------------------------------------------------- /DirectUI/DirectUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/DirectUI.vcxproj.filters -------------------------------------------------------------------------------- /DirectUI/DuiAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/DuiAnimation.h -------------------------------------------------------------------------------- /DirectUI/DuiProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/DuiProxy.h -------------------------------------------------------------------------------- /DirectUI/ElementProviderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/ElementProviderManager.h -------------------------------------------------------------------------------- /DirectUI/Expando.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Expando.h -------------------------------------------------------------------------------- /DirectUI/ExpandoButtonGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/ExpandoButtonGlyph.h -------------------------------------------------------------------------------- /DirectUI/Extensions/AccessibleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/AccessibleButton.h -------------------------------------------------------------------------------- /DirectUI/Extensions/AutoButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/AutoButton.h -------------------------------------------------------------------------------- /DirectUI/Extensions/Browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/Browser.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CAVI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CAVI.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CBase.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CBaseCheckRadioButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CBaseCheckRadioButton.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CBaseScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CBaseScrollBar.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CCSysLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CCSysLink.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CCheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CCheckBox.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CCommandLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CCommandLink.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CHScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CHScrollBar.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CListBox.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CListView.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CProgressBar.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CPushButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CPushButton.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CRadioButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CRadioButton.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CTrackBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CTrackBar.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CTreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CTreeView.h -------------------------------------------------------------------------------- /DirectUI/Extensions/CommonControls/CVScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/CommonControls/CVScrollBar.h -------------------------------------------------------------------------------- /DirectUI/Extensions/DialogElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/DialogElement.h -------------------------------------------------------------------------------- /DirectUI/Extensions/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/Macro.h -------------------------------------------------------------------------------- /DirectUI/Extensions/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/Misc.h -------------------------------------------------------------------------------- /DirectUI/Extensions/PushButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/PushButton.h -------------------------------------------------------------------------------- /DirectUI/Extensions/WizPageBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/WizPageBase.h -------------------------------------------------------------------------------- /DirectUI/Extensions/XBaby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/XBaby.h -------------------------------------------------------------------------------- /DirectUI/Extensions/XElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/XElement.h -------------------------------------------------------------------------------- /DirectUI/Extensions/XHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/XHost.h -------------------------------------------------------------------------------- /DirectUI/Extensions/XProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Extensions/XProvider.h -------------------------------------------------------------------------------- /DirectUI/FontCheckOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/FontCheckOut.h -------------------------------------------------------------------------------- /DirectUI/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Interfaces.h -------------------------------------------------------------------------------- /DirectUI/Layout/BorderLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Layout/BorderLayout.h -------------------------------------------------------------------------------- /DirectUI/Layout/FillLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Layout/FillLayout.h -------------------------------------------------------------------------------- /DirectUI/Layout/FlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Layout/FlowLayout.h -------------------------------------------------------------------------------- /DirectUI/Layout/GridLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Layout/GridLayout.h -------------------------------------------------------------------------------- /DirectUI/Layout/NineGridLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Layout/NineGridLayout.h -------------------------------------------------------------------------------- /DirectUI/Layout/RowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Layout/RowLayout.h -------------------------------------------------------------------------------- /DirectUI/Layout/ShellBorderLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Layout/ShellBorderLayout.h -------------------------------------------------------------------------------- /DirectUI/Layout/TableLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Layout/TableLayout.h -------------------------------------------------------------------------------- /DirectUI/Layout/VerticalFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Layout/VerticalFlowLayout.h -------------------------------------------------------------------------------- /DirectUI/NavScoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/NavScoring.h -------------------------------------------------------------------------------- /DirectUI/Navigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Navigator.h -------------------------------------------------------------------------------- /DirectUI/PText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/PText.h -------------------------------------------------------------------------------- /DirectUI/PVLLauncherTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/PVLLauncherTrigger.h -------------------------------------------------------------------------------- /DirectUI/PVLTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/PVLTrigger.h -------------------------------------------------------------------------------- /DirectUI/Page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Page.h -------------------------------------------------------------------------------- /DirectUI/Parser/XmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Parser/XmlParser.h -------------------------------------------------------------------------------- /DirectUI/Primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Primitives.h -------------------------------------------------------------------------------- /DirectUI/PromptText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/PromptText.h -------------------------------------------------------------------------------- /DirectUI/PropNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/PropNotify.h -------------------------------------------------------------------------------- /DirectUI/Provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Provider.h -------------------------------------------------------------------------------- /DirectUI/RadioButtonGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/RadioButtonGlyph.h -------------------------------------------------------------------------------- /DirectUI/Repeater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Repeater.h -------------------------------------------------------------------------------- /DirectUI/SafeElementPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/SafeElementPtr.h -------------------------------------------------------------------------------- /DirectUI/SelectorNoDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/SelectorNoDefault.h -------------------------------------------------------------------------------- /DirectUI/SelectorSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/SelectorSelection.h -------------------------------------------------------------------------------- /DirectUI/SelectorSelectionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/SelectorSelectionItem.h -------------------------------------------------------------------------------- /DirectUI/SemanticZoomToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/SemanticZoomToggle.h -------------------------------------------------------------------------------- /DirectUI/SimpleTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/SimpleTimer.h -------------------------------------------------------------------------------- /DirectUI/StockBehaviors/ContextMenuBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/StockBehaviors/ContextMenuBehavior.h -------------------------------------------------------------------------------- /DirectUI/StyledScrollViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/StyledScrollViewer.h -------------------------------------------------------------------------------- /DirectUI/TextGraphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/TextGraphic.h -------------------------------------------------------------------------------- /DirectUI/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/Types.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/ElementProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/ElementProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/EventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/EventManager.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/ExpandCollapseProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/ExpandCollapseProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/GridItemProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/GridItemProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/GridProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/GridProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/HWNDElementProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/HWNDElementProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/InvokeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/InvokeManager.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/InvokeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/InvokeProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/PatternProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/PatternProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/RangeValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/RangeValueProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/RefcountBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/RefcountBase.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/ScrollItemProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/ScrollItemProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/ScrollProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/ScrollProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/SelectionItemProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/SelectionItemProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/SelectionProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/SelectionProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/TableItemProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/TableItemProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/TableProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/TableProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/ToggleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/ToggleProvider.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/UiaSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/UiaSchema.h -------------------------------------------------------------------------------- /DirectUI/UIAutomation/ValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/UIAutomation/ValueProvider.h -------------------------------------------------------------------------------- /DirectUI/ValuePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/ValuePtr.h -------------------------------------------------------------------------------- /DirectUI/msdef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/msdef.txt -------------------------------------------------------------------------------- /DirectUI/msdef64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/DirectUI/msdef64.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/README.md -------------------------------------------------------------------------------- /UITest/UITest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/UITest/UITest.cpp -------------------------------------------------------------------------------- /UITest/UITest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/UITest/UITest.h -------------------------------------------------------------------------------- /UITest/UITest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/UITest/UITest.rc -------------------------------------------------------------------------------- /UITest/UITest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/UITest/UITest.vcxproj -------------------------------------------------------------------------------- /UITest/UITest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/UITest/UITest.vcxproj.filters -------------------------------------------------------------------------------- /UITest/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/UITest/app.manifest -------------------------------------------------------------------------------- /UITest/dui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/UITest/dui.xml -------------------------------------------------------------------------------- /UITest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/UITest/packages.config -------------------------------------------------------------------------------- /UITest/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/UITest/resource.h -------------------------------------------------------------------------------- /docs/AdaptorElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/AdaptorElementClass.g.txt -------------------------------------------------------------------------------- /docs/AnimationStripClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/AnimationStripClass.g.txt -------------------------------------------------------------------------------- /docs/BaseScrollViewerClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/BaseScrollViewerClass.g.txt -------------------------------------------------------------------------------- /docs/BindClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/BindClass.g.txt -------------------------------------------------------------------------------- /docs/BrowserClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/BrowserClass.g.txt -------------------------------------------------------------------------------- /docs/ButtonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ButtonClass.g.txt -------------------------------------------------------------------------------- /docs/CCAVIClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCAVIClass.g.txt -------------------------------------------------------------------------------- /docs/CCBaseCheckRadioButtonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCBaseCheckRadioButtonClass.g.txt -------------------------------------------------------------------------------- /docs/CCBaseClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCBaseClass.g.txt -------------------------------------------------------------------------------- /docs/CCBaseScrollBarClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCBaseScrollBarClass.g.txt -------------------------------------------------------------------------------- /docs/CCCheckBoxClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCCheckBoxClass.g.txt -------------------------------------------------------------------------------- /docs/CCCommandLinkClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCCommandLinkClass.g.txt -------------------------------------------------------------------------------- /docs/CCHScrollBarClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCHScrollBarClass.g.txt -------------------------------------------------------------------------------- /docs/CCListBoxClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCListBoxClass.g.txt -------------------------------------------------------------------------------- /docs/CCListViewClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCListViewClass.g.txt -------------------------------------------------------------------------------- /docs/CCProgressBarClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCProgressBarClass.g.txt -------------------------------------------------------------------------------- /docs/CCPushButtonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCPushButtonClass.g.txt -------------------------------------------------------------------------------- /docs/CCRadioButtonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCRadioButtonClass.g.txt -------------------------------------------------------------------------------- /docs/CCSysLinkClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCSysLinkClass.g.txt -------------------------------------------------------------------------------- /docs/CCTrackBarClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCTrackBarClass.g.txt -------------------------------------------------------------------------------- /docs/CCTreeViewClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCTreeViewClass.g.txt -------------------------------------------------------------------------------- /docs/CCVScrollBarClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CCVScrollBarClass.g.txt -------------------------------------------------------------------------------- /docs/CaretElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CaretElementClass.g.txt -------------------------------------------------------------------------------- /docs/CheckBoxGlyphClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/CheckBoxGlyphClass.g.txt -------------------------------------------------------------------------------- /docs/ClipperClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ClipperClass.g.txt -------------------------------------------------------------------------------- /docs/ComboboxClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ComboboxClass.g.txt -------------------------------------------------------------------------------- /docs/DialogElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/DialogElementClass.g.txt -------------------------------------------------------------------------------- /docs/EditClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/EditClass.g.txt -------------------------------------------------------------------------------- /docs/ElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ElementClass.g.txt -------------------------------------------------------------------------------- /docs/ElementWithHWNDClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ElementWithHWNDClass.g.txt -------------------------------------------------------------------------------- /docs/ExpandableClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ExpandableClass.g.txt -------------------------------------------------------------------------------- /docs/ExpandoButtonGlyphClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ExpandoButtonGlyphClass.g.txt -------------------------------------------------------------------------------- /docs/ExpandoClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ExpandoClass.g.txt -------------------------------------------------------------------------------- /docs/HWNDElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/HWNDElementClass.g.txt -------------------------------------------------------------------------------- /docs/HWNDHostClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/HWNDHostClass.g.txt -------------------------------------------------------------------------------- /docs/InternalRichTextClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/InternalRichTextClass.g.txt -------------------------------------------------------------------------------- /docs/ItemListClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ItemListClass.g.txt -------------------------------------------------------------------------------- /docs/Layouts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/Layouts.txt -------------------------------------------------------------------------------- /docs/MacroClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/MacroClass.g.txt -------------------------------------------------------------------------------- /docs/ModernProgressBarClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ModernProgressBarClass.g.txt -------------------------------------------------------------------------------- /docs/ModernProgressRingClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ModernProgressRingClass.g.txt -------------------------------------------------------------------------------- /docs/MovieClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/MovieClass.g.txt -------------------------------------------------------------------------------- /docs/NavigatorClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/NavigatorClass.g.txt -------------------------------------------------------------------------------- /docs/PTextClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/PTextClass.g.txt -------------------------------------------------------------------------------- /docs/PageClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/PageClass.g.txt -------------------------------------------------------------------------------- /docs/PagesClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/PagesClass.g.txt -------------------------------------------------------------------------------- /docs/ProgressClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ProgressClass.g.txt -------------------------------------------------------------------------------- /docs/PushButtonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/PushButtonClass.g.txt -------------------------------------------------------------------------------- /docs/RadioButtonGlyphClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/RadioButtonGlyphClass.g.txt -------------------------------------------------------------------------------- /docs/RefPointElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/RefPointElementClass.g.txt -------------------------------------------------------------------------------- /docs/RepeatButtonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/RepeatButtonClass.g.txt -------------------------------------------------------------------------------- /docs/RepeaterClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/RepeaterClass.g.txt -------------------------------------------------------------------------------- /docs/RichTextClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/RichTextClass.g.txt -------------------------------------------------------------------------------- /docs/ScrollBarClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ScrollBarClass.g.txt -------------------------------------------------------------------------------- /docs/ScrollViewerClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ScrollViewerClass.g.txt -------------------------------------------------------------------------------- /docs/SelectorClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/SelectorClass.g.txt -------------------------------------------------------------------------------- /docs/SelectorNoDefaultClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/SelectorNoDefaultClass.g.txt -------------------------------------------------------------------------------- /docs/SemanticZoomToggleClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/SemanticZoomToggleClass.g.txt -------------------------------------------------------------------------------- /docs/SnapshotElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/SnapshotElementClass.g.txt -------------------------------------------------------------------------------- /docs/StyledScrollViewerClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/StyledScrollViewerClass.g.txt -------------------------------------------------------------------------------- /docs/TextGraphicClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TextGraphicClass.g.txt -------------------------------------------------------------------------------- /docs/ThumbClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ThumbClass.g.txt -------------------------------------------------------------------------------- /docs/TouchButtonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchButtonClass.g.txt -------------------------------------------------------------------------------- /docs/TouchCarouselListClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchCarouselListClass.g.txt -------------------------------------------------------------------------------- /docs/TouchCarouselScrollBarClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchCarouselScrollBarClass.g.txt -------------------------------------------------------------------------------- /docs/TouchCheckBoxClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchCheckBoxClass.g.txt -------------------------------------------------------------------------------- /docs/TouchCheckBoxGlyphClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchCheckBoxGlyphClass.g.txt -------------------------------------------------------------------------------- /docs/TouchCommandButtonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchCommandButtonClass.g.txt -------------------------------------------------------------------------------- /docs/TouchDialogElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchDialogElementClass.g.txt -------------------------------------------------------------------------------- /docs/TouchEdit2Class.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchEdit2Class.g.txt -------------------------------------------------------------------------------- /docs/TouchEditBaseClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchEditBaseClass.g.txt -------------------------------------------------------------------------------- /docs/TouchEditInnerClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchEditInnerClass.g.txt -------------------------------------------------------------------------------- /docs/TouchHWNDElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchHWNDElementClass.g.txt -------------------------------------------------------------------------------- /docs/TouchHyperLinkClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchHyperLinkClass.g.txt -------------------------------------------------------------------------------- /docs/TouchRepeatButtonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchRepeatButtonClass.g.txt -------------------------------------------------------------------------------- /docs/TouchScrollBarClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchScrollBarClass.g.txt -------------------------------------------------------------------------------- /docs/TouchScrollViewerClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchScrollViewerClass.g.txt -------------------------------------------------------------------------------- /docs/TouchSelectClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchSelectClass.g.txt -------------------------------------------------------------------------------- /docs/TouchSelectItemClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchSelectItemClass.g.txt -------------------------------------------------------------------------------- /docs/TouchSelectPopupClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchSelectPopupClass.g.txt -------------------------------------------------------------------------------- /docs/TouchSliderClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchSliderClass.g.txt -------------------------------------------------------------------------------- /docs/TouchSwitchClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchSwitchClass.g.txt -------------------------------------------------------------------------------- /docs/TouchXBabyClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/TouchXBabyClass.g.txt -------------------------------------------------------------------------------- /docs/UnknownElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/UnknownElementClass.g.txt -------------------------------------------------------------------------------- /docs/ViewerClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/ViewerClass.g.txt -------------------------------------------------------------------------------- /docs/WrappingListClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/WrappingListClass.g.txt -------------------------------------------------------------------------------- /docs/XBabyClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/XBabyClass.g.txt -------------------------------------------------------------------------------- /docs/XElementClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/XElementClass.g.txt -------------------------------------------------------------------------------- /docs/accessiblebuttonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/accessiblebuttonClass.g.txt -------------------------------------------------------------------------------- /docs/autobuttonClass.g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/autobuttonClass.g.txt -------------------------------------------------------------------------------- /docs/duixml/AuthBrokerUI.dll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/duixml/AuthBrokerUI.dll.xml -------------------------------------------------------------------------------- /docs/duixml/IMMERSIVESTYLES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/duixml/IMMERSIVESTYLES.xml -------------------------------------------------------------------------------- /docs/duixml/SYSTEMSETTINGSSTYLES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/duixml/SYSTEMSETTINGSSTYLES.xml -------------------------------------------------------------------------------- /docs/duixml/dpapimig.exe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/duixml/dpapimig.exe.xml -------------------------------------------------------------------------------- /docs/duixml/duser.dll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/duixml/duser.dll.xml -------------------------------------------------------------------------------- /docs/duixml/shellstyle.dll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/world-windows-federation/dui70/HEAD/docs/duixml/shellstyle.dll.xml --------------------------------------------------------------------------------