diff --git a/Import/GacUI.h b/Import/GacUI.h index 3cdf0839..90e8fd5d 100644 --- a/Import/GacUI.h +++ b/Import/GacUI.h @@ -1017,7 +1017,6 @@ Layout Engine /// The position of the first character of the specified range. /// The length of the specified range by character. /// The properties for the inline object. - /// The element. /// Returns true if this operation succeeded. virtual bool SetInlineObject(vint start, vint length, const InlineObjectProperties& properties)=0; /// Unbind all inline objects to a range of text. @@ -1096,6 +1095,7 @@ Layout Engine /// Create a paragraph with internal renderer device dependent objects initialized. /// The text used to fill the paragraph. /// The render target that the created paragraph will render to. + /// A callback to receive necessary information when the paragraph is being rendered. /// The created paragraph object. virtual Ptr CreateParagraph(const WString& text, IGuiGraphicsRenderTarget* renderTarget, IGuiGraphicsParagraphCallback* callback)=0; }; @@ -3549,6 +3549,7 @@ Resource void Precompile(collections::List& errors); /// Initialize a precompiled resource. + /// In which role an application is initializing this resource. void Initialize(GuiResourceUsage usage); /// Get a contained document model using a path like "Packages\Application\Name". If the path does not exists or the type does not match, an exception will be thrown. @@ -3718,7 +3719,6 @@ Resource Type Resolver /// Initialize the resource item. /// The resource to initializer. /// The context for initializing. - /// All collected errors during loading a resource. virtual void Initialize(Ptr resource, GuiResourceInitializeContext& context) = 0; }; @@ -7075,7 +7075,7 @@ Axis Implementation public: /// Create the transformer with a specified axis direction. - /// The specified axis direction. + /// The specified axis direction. GuiAxis(AxisDirection _axisDirection); ~GuiAxis(); @@ -8192,7 +8192,7 @@ Basic Construction /// Add a control host as a component. When this control host is disposing, all attached components will be deleted. /// Returns true if this operation succeeded. - /// The controlHost to add. + /// The controlHost to add. bool AddControlHostComponent(GuiControlHost* controlHost); /// Remove a component. /// Returns true if this operation succeeded. @@ -10253,7 +10253,7 @@ List Control virtual void OnItemModified(vint start, vint count, vint newCount)=0; }; - /// Item arranger callback. Item arrangers use this interface to communicate with the list control. When setting positions for item controls, functions in this callback object is suggested to call because they use the result from the [T:vl.presentation.controls.GuiListControl.IItemCoordinateTransformer]. + /// Item arranger callback. Item arrangers use this interface to communicate with the list control. When setting positions for item controls, functions in this callback object is suggested to call because they use the result from the [T:vl.presentation.controls.compositions.IGuiAxis]. class IItemArrangerCallback : public virtual IDescriptable, public Description { public: @@ -11608,7 +11608,7 @@ ListView ItemStyleProvider class IListViewItemContentProvider : public virtual IDescriptable, public Description { public: - /// Create a default and preferred for the related item style provider. + /// Create a default and preferred for the related item style provider. /// The created item coordinate transformer. virtual compositions::IGuiAxis* CreatePreferredAxis()=0; /// Create a default and preferred for the related item style provider. diff --git a/Tools/GacGen.exe b/Tools/GacGen.exe index ec62a545..525974d8 100644 Binary files a/Tools/GacGen.exe and b/Tools/GacGen.exe differ diff --git a/Tools/ParserGen.exe b/Tools/ParserGen.exe index fb9f6e16..d38941f0 100644 Binary files a/Tools/ParserGen.exe and b/Tools/ParserGen.exe differ diff --git a/Tutorial/GacUI_ControlTemplate/UIRes/BlackSkin.bin b/Tutorial/GacUI_ControlTemplate/UIRes/BlackSkin.bin index 44e03851..8c68d0db 100644 Binary files a/Tutorial/GacUI_ControlTemplate/UIRes/BlackSkin.bin and b/Tutorial/GacUI_ControlTemplate/UIRes/BlackSkin.bin differ diff --git a/Tutorial/GacUI_HelloWorlds/UIRes/MVVM.bin b/Tutorial/GacUI_HelloWorlds/UIRes/MVVM.bin index 86531186..6db1b95f 100644 Binary files a/Tutorial/GacUI_HelloWorlds/UIRes/MVVM.bin and b/Tutorial/GacUI_HelloWorlds/UIRes/MVVM.bin differ