diff --git a/documentation/current/guide/index.wiki b/documentation/current/guide/index.wiki index 7c00abc9..2ed03201 100644 --- a/documentation/current/guide/index.wiki +++ b/documentation/current/guide/index.wiki @@ -5,7 +5,7 @@ '''Guide to Eiffel Information''' There is a wealth of information on Eiffel available from many sources. Let this be your guide. -These pages are the official documentation pages for the products and technologies of Eiffel Software, Inc. +These pages are the official documentation pages for the products and technologies of Eiffel Software. The documentation is organized into virtual books. Each book covers an important aspect of the world of Eiffel. diff --git a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-aspnet-tools-and-administration/eiffel-codedom-provider-manager.wiki b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-aspnet-tools-and-administration/eiffel-codedom-provider-manager.wiki index 65348fb1..d03a9064 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-aspnet-tools-and-administration/eiffel-codedom-provider-manager.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-aspnet-tools-and-administration/eiffel-codedom-provider-manager.wiki @@ -1,8 +1,10 @@ [[Property:title|Eiffel CodeDom Provider Manager]] [[Property:weight|-1]] [[Property:uuid|089e658f-4bd8-df8f-5647-0c176c00359b]] -The Eiffel Codedom Provider Manager allows to graphically configure the Eiffel CodeDom Provider. There can be multiple configurations, each of them being associated with at least one application. +The Eiffel Codedom Provider Manager allows graphical configuration of the Eiffel CodeDom Provider. There can be multiple configurations, each of them being associated with at least one application. + {{note|The Eiffel for ASP.NET installation program will add a shortcut in the start menu to the Eiffel CodeDom Provider Manager. }} + The main dialog of the Eiffel CodeDom Provider Manager is divided into two vertical panes. The left pane contains a list of available configurations while the right pane contains the settings corresponding to the currently selected configuration. Initially the only available configuration is the '''default''' configuration which applies to all applications. The configurable settings are listed below. ==General Settings== * '''Fail on error''': Checking this box will force the Eiffel Codedom Provider to fail when an error occurs. By default the provider rescues the failure and logs an error but it might be easier for debugging to have the Eiffel CodeDom Provider stop and raise an exception. @@ -12,6 +14,7 @@ The main dialog of the Eiffel CodeDom Provider Manager is divided into two verti ==Compiler Settings== * '''Default root class''': In the event where the CodeDom tree does not define an entry point, there still needs to be a root class for the Eiffel system to compile properly. If there is an entry point defined in the Codedom tree then this setting is ignored. * '''Precompile ace file''': This setting, if set, gives the path to the ACE file of the precompile that the CodeDom compiler should use when compiling systems with this configuration. The CodeDom compiler will first check whether the precompile for that ACE file already exists in the precompile cache (See Precompile cache below). If it finds one then it will check whether the ACE file was modified since the precompile was created. If there isn't a corresponding precompile or if the ACE file was modified then the CodeDom compiler will create a new precompile in the precompile cache using the specified ace file. It will then compile the system using the precompile in the cache corresponding to the specified ACE file. + {{note|If for any reason the precompilation fails then the CodeDom compiler will still compile the system but without using any precompile. }} * '''Metadata cache''': Both the Eiffel CodeDom Provider and the Eiffel compiler require reading from and writing to an Eiffel Metadata Cache. These caches contain information about mapping the .NET types and members names to valid Eiffel identifiers. Because read and write access are required, the application that uses the CodeDom Provider must have write access rights to the Eiffel Metadata Cache folder. @@ -26,13 +29,16 @@ The main dialog of the Eiffel CodeDom Provider Manager is divided into two verti This list associates .NET assemblies with the prefix that will be used for Eiffel class names corresponding to .NET types belonging to the assembly. For example the prefix for the assembly ''System.Xml.dll'' is ''XML_'', this means that the Eiffel class names of all the types in the assembly ''System.Xml.dll'' will all begin with ''XML_''. This is necessary because Eiffel doesn't have a notion of namespace. The default assembly prefixes cannot be modified but new assembly/prefix pairs can be added if necessary. ==Applications== This last setting will only appear for configurations other than the default configuration. It lists the applications that will use the configuration when they load the Eiffel CodeDom Provider assembly. If an application is not listed in any configuration then it will use the default configuration. + {{note|For a change in an existing configuration to take effect, the process that uses the modified configuration must be restarted. }} ==New Configuration== New configurations may be created by clicking the ''New'' button or the ''New'' entry in the ''File'' menu. The New Configuration dialog box asks for the name and the path of the configuration. It will create a file with the extension '''.ecd''' ('''E'''iffel '''C'''ode'''D'''om) with the specified name in the directory located at the specified path. Whenever one of the applications listed at the bottom of the New Configuration dialog loads the Eiffel CodeDom Provider, it will use this new configuration. ==Configuration Properties== Double clicking on the configuration name in the configurations list, clicking the ''Properties'' button or choosing the ''Properties'' menu entry in the ''File'' menu will open the Configuration Properties dialog. This dialog gives the dates of creation and last modification of the configuration as well as the list of applications that use it if it's not the default configuration. -{{seealso|[[Configuration|Configuration]] , [[Logging|Logging]] }} + + +{{seealso|[[Configuration|Configuration]], [[Logging|Logging]] }} diff --git a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/about-code-document-object-model-codedom.wiki b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/about-code-document-object-model-codedom.wiki index 5bb72883..42b50945 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/about-code-document-object-model-codedom.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/about-code-document-object-model-codedom.wiki @@ -4,7 +4,6 @@ CodeDom stands for the '''Code Document Object Model'''. CodeDom allows for representing source code in an abstract data structure. Such a representation is called a '''CodeDom tree''' as the underlying data structure uses a tree paradigm. This abstract representation can then be generated into different programming languages. Each language vendor provides its implementation of the CodeDom interfaces, this implementation is called a '''CodeDom Provider'''. Programmers can then build tools that can work with many different languages without having to know about each one, instead they just delegate code generation to each CodeDom Provider. The CodeDom interfaces also expose types and methods that allow for parsing source code and creating the corresponding CodeDom. The current implementation of the Eiffel CodeDom Provider does not support parsing. Code generation is a much more popular useage of the CodeDom and the current version focuses on this aspect of the technology. -{{seealso|[[Installation|Installation]] }} diff --git a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/common-scenarios.wiki b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/common-scenarios.wiki index a61e4eb7..e52b2ba8 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/common-scenarios.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/common-scenarios.wiki @@ -9,9 +9,10 @@ Another use of the CodeDom technology is via the WSDL utility. This utility is p Wsdl /language:"EiffelSoftware.CodeDom.CodeDomProvider, EiffelSoftware.CodeDom, Version=2.0.1.1402, Culture=neutral, PublicKeyToken=def26f296efef469"
http://api.google.com/GoogleSearch.wsdl -{{note|The vesion number used above might differ depending on the version of the Eiffel CodeDom Provider dll installed on your system. }} +{{note|The version number used above might differ depending on the version of the Eiffel CodeDom Provider dll installed on your system. }} {{note|The example above uses the Google web service, the corresponding URL is correct at the time of writing but there is no guarentee it won't change (or be removed) in the future. }} + This will generate a file with the extension '''.es''' which contains multiple Eiffel class definitions. Compiling this file will require using the CodeDom compiler (programmatically via the CodeDom ICodeCompiler interface) or using the [[eSplitter|eSplitter]] tool to generate standard Eiffel source files ('''.e''' files) that can then be compiled by the standard Eiffel compiler. diff --git a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/eiffel-implementation.wiki b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/eiffel-implementation.wiki index 39a322b7..1d181416 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/eiffel-implementation.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/eiffel-implementation.wiki @@ -4,19 +4,28 @@ There are a few topics specific to the implementation of the Eiffel CodeDom Provider that are worth mentioning. ==Multiple Classes File== The Eiffel compiler expects that there is only one class per source file (file with extension '''.e'''), however the CodeDom interface specification requires multiple classes to be generated in the same file (actually in the same ''stream''). The Eiffel CodeDom Provider code generator generates files with the extension '''.es''' which may contain multiple class definitions. Each class definition is separated with a special marker that the Eiffel CodeDom Provider compiler will parse to create multiple '''.e''' files - each containing a single class definition - prior to calling the command line Eiffel compiler. + + {{note|Only the Eiffel CodeDom Provider compiler knows how to handle '''.es''' files. The standard Eiffel compilers can only parse '''.e''' files. }} + Eiffel for ASP.NET includes the [[eSplitter|eSplitter]] utility which can 'split' Eiffel multi-class files ('''.es''' files) into single class files ('''.e''' files). ==Inheritance Snippet== Any type defined in a CodeDom tree to be consumed by the Eiffel CodeDom Provider may include one (and only one) snippet member that includes an inheritance clause declaration. This ''inheritance snippet'' must start with the keyword '''inherit''' and follows the Eiffel syntax for inheritance clauses. All the feature adaptations available in the Eiffel language may be used in such a snippet ('''rename''', '''export''', '''undefine''', '''redefine''', '''select'''). + + {{note|The CodeDom tree itself might define additional inheritance clauses in which case the Eiffel CodeDom Provider will merge the snippet and the implicit clauses in the generated source file. }} ==Indexing Snippet and Precompiled Libraries== -Another interesting snippet member is the ''indexing clause snippet'' which must start with the '''indexing''' keyword and follows the Eiffel syntax for indexing clauses. This snippet may include the indexing clause '''precompile_definition_file''' which can be used to specify the path to the precompiled library ACE file to be used by the Eiffel CodeDom Compiler. This is specially useful in ASP.NET pages where each page can specify which precompiled ACE file to use when compiling it. This path will be used instead of the path defined in the [[Configuration|configuration file]] . +Another interesting snippet member is the ''indexing clause snippet'' which must start with the '''indexing''' keyword and follows the Eiffel syntax for indexing clauses. This snippet may include the indexing clause '''precompile_definition_file''' which can be used to specify the path to the precompiled library ACE file to be used by the Eiffel CodeDom Compiler. This is specially useful in ASP.NET pages where each page can specify which precompiled ACE file to use when compiling it. This path will be used instead of the path defined in the [[Configuration|configuration file]]. + + {{note|Only one class per compile unit should define a path to the precompiled library ACE file. If more than one class contain a '''precompile_definition_file''' indexing clause then there is no guarentee on which one the Eiffel CodeDom Compiler will use. }} ==Eiffel Configuration== There are several Eiffel specific settings that can be set in the Eiffel CodeDom Provider which will affect the generated code as well as the CodeDom compiler behavior. These settings are covered in the [[Configuration|Configuration]] section. -{{seealso|[[eSplitter|eSplitter]] , [[Configuration|Configuration]] }} + + +{{seealso|[[eSplitter|eSplitter]], [[Configuration|Configuration]] }} diff --git a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/installation.wiki b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/installation.wiki index 5124e97f..44d43397 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/installation.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/eiffel-codedom-provider/installation.wiki @@ -2,15 +2,17 @@ [[Property:weight|1]] [[Property:uuid|b6197932-4bcb-c79b-afe2-1a8f36dbbd7c]] For certain tools (including ASP.NET) to detect the availability of a CodeDom Provider, the corresponding assembly name must be listed in the .NET machine wide configuration file typically located in: -%SYSTEM_DRIVE%\Windows\Microsoft.NET\Framework\vx.x.xxxx\CONFIG\machine.config + +%SYSTEM_DRIVE%\Windows\Microsoft.NET\Framework\vx.x.xxxx\CONFIG\machine.config (where vx.x.xxxx corresponds to the .NET Framework version number). The available CodeDom Providers are listed under the '''' XML node. The Eiffel CodeDom Provider implements a.NET Installer class so that should you need to add the Eiffel CodeDom Provider to the machine configuration file, simply run the .NET SDK command line utility ''InstallUtil'' as follows: -InstallUtil EiffelSoftware.Codedom.dll + +InstallUtil EiffelSoftware.Codedom.dll Conversely, should the Eiffel Codedom Provider not be required anymore, running the following command line will remove it from the ''machine.config'' file: -InstallUtil /u EiffelSoftware.Codedom.dll + +InstallUtil /u EiffelSoftware.Codedom.dll {{note|The '''Eiffel for ASP.NET''' installation program will take care of registering and unregistering the Eiffel CodeDom Provider properly. }} -{{seealso|[[Supported Constructs|Supported constructs]] }} diff --git a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/codedom-getting-started.wiki b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/codedom-getting-started.wiki index 32fe0a7e..ade35edd 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/codedom-getting-started.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/codedom-getting-started.wiki @@ -2,14 +2,13 @@ [[Property:weight|0]] [[Property:uuid|06e0c7ae-6d25-a0ef-81e6-2ee3c95fe4a1]] ==Prerequesites== -Before you start writing ASP.NET pages in Eiffel, you should be familiar with the ASP.NET technology itself. If you haven't already, it is strongly recommended that you follow the ASP.NET quickstarts available online at [http://samples.gotdotnet.com/quickstart/aspplus/ http://samples.gotdotnet.com/quickstart/aspplus/] . Apart from a few Eiffel specific points described in [[Using Eiffel (to write ASP.NET pages)|Using Eiffel]] , writing ASP.NET pages in Eiffel follows the same rules as writing ASP.NET pages in any other language. +Before you start writing ASP.NET pages in Eiffel, you should be familiar with the ASP.NET technology itself. If you haven't already, it is strongly recommended that you follow the ASP.NET quickstarts available online at [http://samples.gotdotnet.com/quickstart/aspplus/ http://samples.gotdotnet.com/quickstart/aspplus/] . Apart from a few Eiffel specific points described in [[Using Eiffel (to write ASP.NET pages)|Using Eiffel]], writing ASP.NET pages in Eiffel follows the same rules as writing ASP.NET pages in any other language. Writing ASP.NET pages in Eiffel also requires to be familiar with the Eiffel language itself. There are no changes in the language when using it to write ASP.NET pages: the same parser and compiler are used to parse and compile standard Eiffel source code and ASP.NET generated source code. Documentation on the Eiffel language can be found on the [http://docs.eiffel.com Eiffel documentation web site] . ==Samples== The '''Samples''' folder of the Eiffel for ASP.NET delivery includes ASP.NET pages written in Eiffel. To run the samples you can either click on the corresponding link in the ''Start'' menu or open the page [http://localhost/EiffelSample http://localhost/EiffelSample] in your internet browser. Each sample comes with an extensively commented source code. {{note|The samples will only be available if IIS was installed prior to installing Eiffel for ASP.NET. }} -{{seealso|[[Using Eiffel (to write ASP.NET pages)|Using Eiffel]] }} diff --git a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/eiffel-aspnet-installation.wiki b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/eiffel-aspnet-installation.wiki index f384a1ce..d9ca6060 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/eiffel-aspnet-installation.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/eiffel-aspnet-installation.wiki @@ -2,7 +2,7 @@ [[Property:weight|-1]] [[Property:uuid|c9371a07-12fb-bdb2-b076-3da3c0ec8da6]] Eiffel for ASP.NET is available for downloading for free at [http://www.eiffel.com http://www.eiffel.com] . Simply run the file and follow the installer instructions. It is recommended that Internet Information Services (IIS) be deployed on the machine prior to installing Eiffel for ASP.NET. If IIS is not deployed then the installation program will display a warning message box. Click '''ignore''' to keep installing the product. -Without IIS, ASP.NET pages cannot be loaded and thus the samples will not be installed. It might still be useful to install Eiffel for ASP.NET without IIS if the Eiffel CodeDom Provider is going to be used through other [[Common Scenarios|scenarios]] . If IIS is available then the installer will open an Eiffel ASP.NET page at the end of the installation process. This page contains links to the documentation and samples. The installer will also put links to these documents in the ''Start'' menu under 'Programs\Eiffel for ASP.NET x.x' where 'x.x' corresponds to the version number of Eiffel for ASP.NET. +Without IIS, ASP.NET pages cannot be loaded and thus the samples will not be installed. It might still be useful to install Eiffel for ASP.NET without IIS if the Eiffel CodeDom Provider is going to be used through other [[Common Scenarios|scenarios]]. If IIS is available then the installer will open an Eiffel ASP.NET page at the end of the installation process. This page contains links to the documentation and samples. The installer will also put links to these documents in the ''Start'' menu under 'Programs\Eiffel for ASP.NET x.x' where 'x.x' corresponds to the version number of Eiffel for ASP.NET. ==System Requirements== * Windows 2000 Server or Advanced Server with Service Pack 2, Windows XP Professional or 64-Bit Edition, or one of the Windows Server 2003 family products. * .NET Framework (1.0 or 1.1) @@ -11,7 +11,6 @@ Without IIS, ASP.NET pages cannot be loaded and thus the samples will not be ins ==ASP.NET Installation== Please consult the corresponding documentation (available online at [http://msdn.microsoft.com/asp.net/ http://msdn.microsoft.com/asp.net/] ) for configuring ASP.NET properly. In particular, be aware that by default ASP.NET is disabled on Windows 2003 Server. -{{seealso|[[CodeDom: Getting Started|Getting Started]] }} diff --git a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/using-eiffel-write-aspnet-pages.wiki b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/using-eiffel-write-aspnet-pages.wiki index 9e8caff5..2be6ca47 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/using-eiffel-write-aspnet-pages.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/eiffel-aspnet-documentation/writing-aspnet-pages-eiffel/using-eiffel-write-aspnet-pages.wiki @@ -13,7 +13,8 @@ However if an instance of STRING is passed as an argument to an ==Compilation and Timeouts== Eiffel compilations can take longer than the default timeouts set in ASP.NET. In particular ASP.NET will run batch compilations on the entire directory that is being accessed by IIS each time the time stamp of that directory changes. If the batch compilation takes longer than the ''batchTimeout'' property defined in the machine wide configuration file (''machine.config'') then ASP.NET will start another compilation just for the requested file. This can be quite resource intensive for the Web server and thus it might be beneficial to increase the default value of 15 seconds for ''batchTimeout''. -{{seealso|[[Names Mappings|Names Mapping]] }} + + diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/threads-samples/pools.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/threads-samples/pools.wiki index eb8cee4d..224bab2e 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/threads-samples/pools.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/threads-samples/pools.wiki @@ -31,15 +31,15 @@ When the display is finished, the application wait for you to pressed the return This application shows how to use the thread THREAD_POOL. An asynchronous thread is launched: - {THREAD_POOL}.queue_user_work_item (create {WAIT_CALLBACK}.make (Current, $async_operation, l_async_operation_done)) + return := {THREAD_POOL}.queue_user_work_item (create {WAIT_CALLBACK}.make (Current, $async_operation, l_async_operation_done)) and is associated to the local variable l_async_operation_done. Both threads perform simultaneously some operations. The main thread wait for the asynchronous thread to complete his own operations - l_async_operation_done.wait_one + return := l_async_operation_done.wait_one to close the application. -This sample contains the following class: +This sample uses the following .NET types: * THREAD_POOL * WAIT_CALLBACK * AUTO_RESET_EVENT diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/threads-samples/timers.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/threads-samples/timers.wiki index 74d5ded3..70aacb9c 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/threads-samples/timers.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/threads-samples/timers.wiki @@ -38,7 +38,7 @@ This application shows how to use the thread TIMER. The timer i and calls the feature check_status that displays the message "Checking Status." every two seconds. -This sample contains the following classes: +This sample uses the following .NET types: * TIMER * TIMER_CALLBACK diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/calculator-winform.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/calculator-winform.wiki index 2deda22d..a73ba726 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/calculator-winform.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/calculator-winform.wiki @@ -31,9 +31,9 @@ The application uses two local external assemblies, math.dll and parserutils.dll parserutils parses the command line entered, and checks if it is of the form operand1 operator operand2. math.dll calculates the actual result of the command line. -For the parserutils.dll, we have been obliged to introduce the prefix "parser_" to avoid conflicts between name classes. +For the parserutils.dll, we have been obliged to introduce the prefix "PARSER_" to class names in this assembly in order to avoid conflicts between class names from this and other sources. -This sample contains the following classes: +This sample uses the following classes: * FORM * BUTTON * TEXT_FIELD diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/date-time-picker.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/date-time-picker.wiki index 3ea8936b..6b4f76e0 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/date-time-picker.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/date-time-picker.wiki @@ -23,11 +23,13 @@ To compile the example: After launching the application, you will see a window displayed with a similar appearance to the one above. On the left side of the main window a date is displayed in a COMBO_BOX. Clicking on this COMBO_BOX and a CALENDAR control will appear showing the same date as in the COMBO_BOX. On the right side of the main window are the controls for selecting the format of the displayed date and the style of the CALENDAR control. -Clicking on the "Change font" button and a change font dialog box will appear. [[Image:change-font-dialog|change font dialog box]] . +Clicking on the "Change font" button and a change font dialog box will appear. -Clicking on the "Change color" button and a dialog_box will appear. [[Image:dotnet-samples--date-time-picker-change-color-dlg|dialog box]] +[[Image:change-font-dialog|change font dialog box]] . -It will permit you to customize the color appearance of the calendar though a color dialog box [[Image:dotnet-samples--date-time-picker-change-color-dlg|color dialog box]] . +Clicking on the "Change color" button and a dialog box will appear. This dialog box will permit you to customize the color appearance of the calendar. + +[[Image:dotnet-samples--date-time-picker-change-color-dlg|color dialog box]] . @@ -39,7 +41,7 @@ When one of the buttons "Change font" or "Change color" is pressed, an event is When the entry in the COMBO_BOX format changes, an event is launched and modify the format of the displayed date. -This sample contains the following classes: +This sample uses the following classes: * CALENDAR * COMBO_BOX * BUTTON diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/gdi-plus-text.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/gdi-plus-text.wiki index 0297b437..9c6df2ca 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/gdi-plus-text.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/gdi-plus-text.wiki @@ -29,7 +29,7 @@ After launching the application, you will see a window displayed with a similar This sample show how to draw some text in a window, using different brushes, different fonts, different style and different colors. -This sample contains the following class: +This sample uses the following class: * FORM ==Notes== diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/mdi/index.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/mdi/index.wiki index 3a15362e..956bf633 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/mdi/index.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/mdi/index.wiki @@ -35,7 +35,7 @@ You can choose the organization (cascade, title horizontal or title vertical) of This application demonstrates how to create a multiple document interface. More information regarding the use of a MDI, is available [[MDI Details|here]] . -This sample contains the following class: +This sample uses the following class: * FORM ==Notes== diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/mdi/mdi-details.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/mdi/mdi-details.wiki index fb347e69..a1f944fa 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/mdi/mdi-details.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/mdi/mdi-details.wiki @@ -6,11 +6,13 @@ Multiple Document Interface (MDI) applications have a single, primary window (th ==Creating an MDI Application== You can create an MDI application by following these steps: -# Create a '''Form''' ( '''MainForm''') that represents the MDI parent window and set its '''IsMdiContainer''' property to '''True'''. The following code demonstrates how to set this property. -set_is_mdi_container (True) +# Create a '''Form''' ('''MainForm''') that represents the MDI parent window and set its '''IsMdiContainer''' property to '''True'''. The following code demonstrates how to set this property. + + set_is_mdi_container (True) # Create child forms and set the '''MdiParent''' property of each form to reference the parent form. The following code demonstrates setting the MDI parent for an instance of a child form.
-doc.set_mdi_parent (Current) + + doc.set_mdi_parent (Current) If you have different types of data to display, you can have multiple types of child forms. To display a child form, create an instance of the child form and call its '''Show''' method. @@ -20,13 +22,17 @@ If you have different types of data to display, you can have multiple types of c ==Standard MDI Menus== Typically, an MDI application has a '''Windows''' menu that allows the user to arrange the open child windows through tiling or cascading. The '''Windows''' menu also allows you to navigate to any of the open child windows. To create a '''Windows''' menu, add the menu items for tiling and cascading to a '''Windows''' menu in your parent form and set the '''MdiList''' property to '''True''' for the top-level '''Windows''' menu. The following code demonstrates how to create a '''Windows''' menu in an MDIapplication. -mi_window: WINFORMS_MENU_ITEM -mi_window := main_menu.get_menu_items.add (("&Window").to_cil) -dummy := mi_window.get_menu_items.add_string_event_handler (("&Cascade").to_cil, create {EVENT_HANDLER}.make (Current, $window_cascade_clicked)) -dummy := mi_window.get_menu_items.add_string_event_handler (("Tile &Horizontal").to_cil, create {EVENT_HANDLER}.make (Current, $window_tile_h_clicked)) -dummy := mi_window.get_menu_items.add_string_event_handler (("Tile &Vertical").to_cil, create {EVENT_HANDLER}.make (Current, $window_tile_v_clicked)) -mi_window.set_mdi_list (True) -- Adds the MDI Window List to the bottom of the menu + mi_window: WINFORMS_MENU_ITEM + + ... + + mi_window := main_menu.get_menu_items.add ("&Window") + dummy := mi_window.get_menu_items.add_string_event_handler ("&Cascade", create {EVENT_HANDLER}.make (Current, $window_cascade_clicked)) + dummy := mi_window.get_menu_items.add_string_event_handler ("Tile &Horizontal", create {EVENT_HANDLER}.make (Current, $window_tile_h_clicked)) + dummy := mi_window.get_menu_items.add_string_event_handler ("Tile &Vertical", create {EVENT_HANDLER}.make (Current, $window_tile_v_clicked)) + mi_window.set_mdi_list (True) -- Adds the MDI Window List to the bottom of the menu + ... @@ -37,14 +43,18 @@ mi_window.set_mdi_list (True) -- Adds the MDI Window List to the bottom of the m If you want your parent form to be notified when a child window is activated by the user, you can register an event-handling method for the '''MdiChildActivate''' event. You can determine which child window is active by using the '''ActiveMdiChild''' property of the '''Form''' class. For example, the following code updates a '''StatusBar''' control on the parent form with the name of the child window. -... -add_mdi_child_activate (create {EVENT_HANDLER}.make (Current, $mdi_child_activated)) -... -mdi_child_activated (sender: SYSTEM_OBJECT; e: EVENT_ARGS) is - do - status_bar.set_text (active_mdi_child.get_text) - end -... + ... + + add_mdi_child_activate (create {EVENT_HANDLER}.make (Current, $mdi_child_activated)) + + ... + + mdi_child_activated (sender: SYSTEM_OBJECT; e: EVENT_ARGS) + do + status_bar.set_text (active_mdi_child.get_text) + end + + ... diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/menus/index.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/menus/index.wiki index 7da6bb6b..0e2cfb84 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/menus/index.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/menus/index.wiki @@ -14,7 +14,9 @@ After launching the application, you will see a window displayed with a similar appearance to the one above. The main window contains a main menu with two entries (File and Format). -The main window also has a blue LABEL that contains a context menu, that is the clone of "Format" in the main menu. Right click on the LABEL and a context menu will appear [[Image:menu-contextuel|context menu]] . +The main window also has a blue LABEL that contains a context menu, that is the clone of "Format" in the main menu. Right click on the LABEL and a context menu will appear + +[[Image:menu-contextuel|context menu]] . @@ -22,7 +24,7 @@ The main window also has a blue LABEL that contains a context menu, This application shows how to create a main menu and how to associate a context menu to a control (here to a LABEL). More information regarding the use of menus, is available [[Menu Details|here]] . -This sample contains the following class: +This sample uses the following classes: * FORM * CONTEXT_MENU * MAIN_MENU diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/message-box.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/message-box.wiki index bc0afab7..69031294 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/message-box.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/message-box.wiki @@ -49,7 +49,7 @@ with the text contained in TEXT_BOX msg.append ("'") -This sample contains the following classes: +This sample uses the following classes: * FORM * BUTTON * TEXT_BOX diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/progress-bar-sample.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/progress-bar-sample.wiki index 32ed98d8..715330fc 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/progress-bar-sample.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/progress-bar-sample.wiki @@ -27,7 +27,7 @@ The application shows how to configure a PROGRESS_BARon_load is redefined and launch a thread (THREAD_START) that simulates the progression of a process. -This sample contains the following classes: +This sample uses the following classes: * PROGRESS_BAR * GROUP_BOX * TRACK_BAR diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/simple-data-binding.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/simple-data-binding.wiki index 192b1c57..327924df 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/simple-data-binding.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/simple-data-binding.wiki @@ -39,7 +39,7 @@ Clicking on the right button (>|) will bring you on the last customer of the lis -This sample contains the following class: +This sample uses the following class: * FORM ==Notes== diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/simple-hello-world-form-sample.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/simple-hello-world-form-sample.wiki index 33d69629..8647c140 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/simple-hello-world-form-sample.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/simple-hello-world-form-sample.wiki @@ -23,17 +23,17 @@ After launching the application, you will see a window displayed with a similar ==Under the Hood== -The application shows how to display a Windows Form under the windows environment. The application inherits the FORM class, and just set the title with "Hello world" with the inherited feature set_title. +The application shows how to display a Windows Form under the windows environment. The application inherits the FORM class, and just set the title with "Hello world" with the inherited feature set_text. - set_title (("Hello world").to_cil) + set_text ("Hello world") The application is launched in a PROCESS with this command line: - feature {WINFORMS_APPLICATION}.run_form (Current). + {WINFORMS_APPLICATION}.run_form (Current). -This sample contains the following classes: +This sample uses the following classes: * FORM * WINFORMS_APPLICATION diff --git a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/tree-view.wiki b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/tree-view.wiki index 54b3f4a8..0353a87e 100644 --- a/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/tree-view.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/net/samples/winform-samples/tree-view.wiki @@ -29,7 +29,7 @@ After launching the application, you will see a window displayed with a similar The application shows how to use a TREE_VIEW and what are all its different configurations. -This sample contains the following classes: +This sample uses the following classes: * TREE_VIEW * GROUP_BOX * CHECK_BOX diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-common-concepts/common-message-hooks.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-common-concepts/common-message-hooks.wiki index 1398c13e..5b8db3a0 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-common-concepts/common-message-hooks.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-common-concepts/common-message-hooks.wiki @@ -3,20 +3,20 @@ [[Property:uuid|356b5211-f710-6509-3609-8d717ff425f7]] Each WEL library component implements a set of routines for processing the most common messages that a component receives. For example, looking at [[ref:libraries/wel/reference/wel_frame_window_chart|WEL_FRAME_WINDOW]] , you will see that there are many features which begin `on_'. Each of these features enable the user to know when a specific event has occurred, and to perform the appropriate processing as a result of this event. Most of the time, you will only be interested in a small subset of these, necessary to your program. For example, below is the code for on_paint: - on_paint (paint_dc: WEL_PAINT_DC; invalid_rect: WEL_RECT) is - --Draw a centered text - do - end + on_paint (paint_dc: WEL_PAINT_DC; invalid_rect: WEL_RECT) + --Draw a centered text + do + end An on_paint message corresponds to the Wm_paint message generated by Windows whenever it needs to re-paint a window, and if you look at the feature, you can see that the arguments are a [[ref:libraries/wel/reference/wel_paint_dc_chart|WEL_PAINT_DC]] and a[[ref:libraries/wel/reference/wel_rect_chart| WEL_RECT]] . which are relevant to this message. By redefining this feature (and others as required), your code will be able to respond appropriately to windows events. -{{note|. See [[Tutorial Step 2|step2]] in the [[WEL Tutorial|tutorial]] for a simple demonstration involving the re-definition of on_left_button_down. }} +{{note|See [[Tutorial Step 2|step2]] in the [[WEL Tutorial|tutorial]] for a simple demonstration involving the re-definition of on_left_button_down. }} For different messages received by a control, the arguments will differ (sometimes there are none), but those arguments will always be relevant to the message. For example, on_menu_command from [[ref:libraries/wel/reference/wel_composite_window_chart|WEL_COMPOSITE_WINDOW]] has an INTEGER as an argument, the value of which is a unique menu identifier.
-{{note|. Not all windows events have a corresponding `on_' message hook defined in WEL. If you wish to process a Windows message that does not correspond to one of the available features, you will need to redefine process_message.
+{{note|Not all windows events have a corresponding "on_" message hook defined in WEL. If you wish to process a Windows message that does not correspond to one of the available features, you will need to redefine process_message. }} diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-check-box-3-state.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-check-box-3-state.wiki index 35200d91..358ad8df 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-check-box-3-state.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-check-box-3-state.wiki @@ -5,13 +5,13 @@ ==Appearance== A [[ref:libraries/wel/reference/wel_check_box_3_state_chart|WEL_CHECK_BOX_3_STATE]]
- [[Image:wel-check-box-3-state-unchecked|wel_check_box_3_state_unchecked]]
+[[Image:wel-check-box-3-state-unchecked|wel_check_box_3_state_unchecked]]

A checked [[ref:libraries/wel/reference/wel_check_box_3_state_chart|WEL_CHECK_BOX_3_STATE]]
- [[Image:wel-check-box-3-state-checked|wel_check_box_3_state_checked]]
+[[Image:wel-check-box-3-state-checked|wel_check_box_3_state_checked]]

A indeterminate [[ref:libraries/wel/reference/wel_check_box_3_state_chart|WEL_CHECK_BOX_3_STATE]]
- [[Image:wel-check-box-3-state-indeterminate|wel_check_box_3_state_indeterminate]]
+[[Image:wel-check-box-3-state-indeterminate|wel_check_box_3_state_indeterminate]]

{{seealso|
diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-checkbox.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-checkbox.wiki index 468f680b..008fd70b 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-checkbox.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-checkbox.wiki @@ -5,10 +5,10 @@ A [[ref:libraries/wel/reference/wel_check_box_chart|WEL_CHECK_BOX]] control can ==Appearance== A [[ref:libraries/wel/reference/wel_check_box_chart|WEL_CHECK_BOX]]
- [[Image:wel-check-box-unchecked|wel_check_box_unchecked]]
+[[Image:wel-check-box-unchecked|wel_check_box_unchecked]]

A checked [[ref:libraries/wel/reference/wel_check_box_chart|WEL_CHECK_BOX]]
- [[Image:wel-check-box-checked|wel_check_box_checked]] +[[Image:wel-check-box-checked|wel_check_box_checked]] {{seealso|
[[WEL_CHECK_BOX_3_STATE|WEL_CHECK_BOX_3_STATE]] }} diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-down-control.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-down-control.wiki index 7b2aa4af..880a58d2 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-down-control.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-down-control.wiki @@ -1,9 +1,9 @@ [[Property:title|WEL_UP_DOWN_CONTROL]] [[Property:weight|15]] [[Property:uuid|71cbdf70-3bf0-a087-6859-30c1564c27a4]] -A [[ref:libraries/wel/reference/wel_up_down_control_chart|WEL_UP_DOWN_CONTROL]] consists of a pair of arrows which are used to increment or decrement a value. Using set_buddy_window, a window of type [[ref:libraries/wel/reference/wel_window_chart|WEL_WINDOW]] can be linked to this control, and is commonly used to display the current value. +A [[ref:libraries/wel/reference/wel_up_down_control_chart|WEL_UP_DOWN_CONTROL]] consists of a pair of arrows which are used to increment or decrement a value. Using set_buddy_window, a window of type [[ref:libraries/wel/reference/wel_window_chart|WEL_WINDOW]] can be linked to this control, and is commonly used to display the current value. ==Appearance== - [[Image:wel-up-down-control|wel_up_down_control]] +[[Image:wel-up-down-control|wel_up_down_control]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-group-box.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-group-box.wiki index 94fef84b..7d30bc7f 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-group-box.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-group-box.wiki @@ -4,7 +4,7 @@ A [[ref:libraries/wel/reference/wel_group_box_chart|WEL_GROUP_BOX]] is used to enclose other controls, and certain controls such as a [[WEL_RADIO_BUTTON|WEL_RADIO_BUTTON]] have special behavior when parented in a [[ref:libraries/wel/reference/wel_group_box_chart|WEL_GROUP_BOX]] . ==Appearance== - [[Image:wel-group-box|wel_group_box]] +[[Image:wel-group-box|wel_group_box]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-list-view.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-list-view.wiki index e3e56645..fabd2f3c 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-list-view.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-list-view.wiki @@ -4,16 +4,16 @@ A [[ref:libraries/wel/reference/wel_list_view_chart|WEL_LIST_VIEW]] control is an encapsulation of the Windows List View control and provides several ways of displaying a collection of items. Each item can consist of a text and an icon. Certain styles allow additional information to be displayed in columns to the right of the icon and label. ==Appearance== A [[ref:libraries/wel/reference/wel_list_view_chart|WEL_LIST_VIEW]] with the Lvs_report style.
- [[Image:wel-list-view-style-lvs-report|list_view_style_lvs_report]]
+[[Image:wel-list-view-style-lvs-report|list_view_style_lvs_report]]

A [[ref:libraries/wel/reference/wel_list_view_chart|WEL_LIST_VIEW]] with the Lvs_list style.
- [[Image:wel-list-view-style-lvs-list|list_view_style_lvs_list]]
+[[Image:wel-list-view-style-lvs-list|list_view_style_lvs_list]]

A [[ref:libraries/wel/reference/wel_list_view_chart|WEL_LIST_VIEW]] with the Lvs_icon style.
- [[Image:wel-list-view-style-lvs-icon|list_view_style_lvs_icon]]
+[[Image:wel-list-view-style-lvs-icon|list_view_style_lvs_icon]]

A [[ref:libraries/wel/reference/wel_list_view_chart|WEL_LIST_VIEW]] with the Lvs_smallicon style.
- [[Image:wel-list-view-style-lvs-small-icon|list_view_style_lvs_icon_small]] +[[Image:wel-list-view-style-lvs-small-icon|list_view_style_lvs_icon_small]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-multiple-line-edit.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-multiple-line-edit.wiki index afd42194..58ec8c34 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-multiple-line-edit.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-multiple-line-edit.wiki @@ -4,7 +4,7 @@ A [[ref:libraries/wel/reference/wel_multiple_line_edit_chart|WEL_MULTIPLE_LINE_EDIT]] is used to display multiple lines of text. Using set_read_only, the text can be made non-editable. ==Appearance== - [[Image:wel-multiple-line-edit|wel_multiple_line_edit]] +[[Image:wel-multiple-line-edit|wel_multiple_line_edit]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-multiple-selection-list-box.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-multiple-selection-list-box.wiki index 897a46f0..9353261c 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-multiple-selection-list-box.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-multiple-selection-list-box.wiki @@ -4,7 +4,7 @@ A [[ref:libraries/wel/reference/wel_multiple_selection_list_box_chart|WEL_MULTIPLE_SELECTION_LIST_BOX ]] is a control used to display a list of STRING. Multiple items may be selected at once. ==Appearance== - [[Image:wel-multiple-selection-list-box|wel_multiple_selection_list_box]]
+[[Image:wel-multiple-selection-list-box|wel_multiple_selection_list_box]]

{{seealso|
diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-progress-bar.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-progress-bar.wiki index 2641836c..36a059eb 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-progress-bar.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-progress-bar.wiki @@ -7,7 +7,7 @@ A [[ref:libraries/wel/reference/wel_progress_bar_chart|WEL_PROGRESS_BAR]] contr ==Appearance== A [[ref:libraries/wel/reference/wel_progress_bar_chart|WEL_PROGRESS_BAR]] .
- [[Image:wel-progress-bar-half|wel_progress_bar_half]] +[[Image:wel-progress-bar-half|wel_progress_bar_half]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-push-button.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-push-button.wiki index 301b97eb..6e8601c6 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-push-button.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-push-button.wiki @@ -3,7 +3,7 @@ [[Property:uuid|186eb349-b7c9-9944-285e-34dd9968c4e0]] A [[ref:libraries/wel/reference/wel_push_button_chart|WEL_PUSH_BUTTON]] is a control that the user can click to provide notification to the application. ==Appearance== - [[Image:wel-push-button|wel_push_button]] +[[Image:wel-push-button|wel_push_button]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-radio-button.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-radio-button.wiki index 7e9dd4aa..5dd8641e 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-radio-button.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-radio-button.wiki @@ -5,10 +5,10 @@ A [[ref:libraries/wel/reference/wel_radio_button_chart|WEL_RADIO_BUTTON]] contr ==Appearance== A [[ref:libraries/wel/reference/wel_radio_button_chart|WEL_RADIO_BUTTON]]
- [[Image:wel-radio-button-unchecked|wel_radio_button_unchecked]]
+[[Image:wel-radio-button-unchecked|wel_radio_button_unchecked]]

A checked [[ref:libraries/wel/reference/wel_radio_button_chart|WEL_RADIO_BUTTON]]
- [[Image:wel-radio-button-checked|wel_radio_button_checked]] +[[Image:wel-radio-button-checked|wel_radio_button_checked]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-scroll-bar.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-scroll-bar.wiki index 22c7066a..3d09f8c6 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-scroll-bar.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-scroll-bar.wiki @@ -5,10 +5,10 @@ A [[ref:libraries/wel/reference/wel_scroll_bar_chart|WEL_SCROLL_BAR]] control i ==Appearance== A [[ref:libraries/wel/reference/wel_scroll_bar_chart|WEL_SCROLL_BAR]] created with make_horizontal.
- [[Image:wel-scroll-bar-horizontal|wel_scroll_bar_horizontal]]
+[[Image:wel-scroll-bar-horizontal|wel_scroll_bar_horizontal]]

A [[ref:libraries/wel/reference/wel_scroll_bar_chart|WEL_SCROLL_BAR]] created with make_vertical.
- [[Image:wel-scroll-bar-vertical|wel_scroll_bar_vertical]] +[[Image:wel-scroll-bar-vertical|wel_scroll_bar_vertical]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-single-line-edit.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-single-line-edit.wiki index cbaffbdf..93e46d9d 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-single-line-edit.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-single-line-edit.wiki @@ -3,7 +3,7 @@ [[Property:uuid|69694ef8-a422-7f46-d97b-d42a16bfe838]] A [[ref:libraries/wel/reference/wel_single_line_edit_chart|WEL_SINGLE_LINE_EDIT]] is a control used to input a single line of text. ==Appearance== - [[Image:wel-single-line-edit|wel_single_line_edit]] +[[Image:wel-single-line-edit|wel_single_line_edit]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-single-selection-list-box.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-single-selection-list-box.wiki index 2bac9e9e..66480f0d 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-single-selection-list-box.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-single-selection-list-box.wiki @@ -4,7 +4,7 @@ A [[ref:libraries/wel/reference/wel_single_selection_list_box_chart|WEL_SINGLE_SELECTION_LIST_BOX]] is a control used to display a list of STRING. Only one item may be selected at once. ==Appearance== - [[Image:wel-single-selection-list-box|wel_single_selection_list_box]]
+[[Image:wel-single-selection-list-box|wel_single_selection_list_box]]

{{seealso|
diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-tooltip.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-tooltip.wiki index ec64c5dd..317eed85 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-tooltip.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-tooltip.wiki @@ -3,7 +3,7 @@ [[Property:uuid|2eb53721-d1a8-cec0-5c6a-692e9dc58755]] A [[ref:libraries/wel/reference/wel_tooltip_chart|WEL_TOOLTIP]] is an encapsulation of the Win32 tooltip control, and controls pop-up windows which display text. Each tooltip may control multiple pop-up windows, which are added to the tooltip using add_tool. ==Appearance== - [[Image:wel-tooltip|wel_tooltip]] +[[Image:wel-tooltip|wel_tooltip]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-track-bar.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-track-bar.wiki index c5dcefb8..307beacf 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-track-bar.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/controls-cluster/wel-track-bar.wiki @@ -5,10 +5,10 @@ A [[ref:libraries/wel/reference/wel_track_bar_chart|WEL_TRACK_BAR]] control has ==Appearance== A [[ref:libraries/wel/reference/wel_track_bar_chart|WEL_TRACK_BAR]] created with make_horizontal.
- [[Image:wel-track-bar-horizontal|wel_track_bar_horizontal]]
+[[Image:wel-track-bar-horizontal|wel_track_bar_horizontal]]

A [[ref:libraries/wel/reference/wel_track_bar_chart|WEL_TRACK_BAR]] created with make_vertical.
- [[Image:wel-track-bar-vertical|wel_track_bar_vertical]] +[[Image:wel-track-bar-vertical|wel_track_bar_vertical]] diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-color-dialog.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-color-dialog.wiki index daa12e2a..deeb7105 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-color-dialog.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-color-dialog.wiki @@ -4,7 +4,7 @@ The [[ref:libraries/wel/reference/wel_choose_color_dialog_chart|WEL_CHOOSE_COLOR_DIALOG]] is an encapsulation of the Win32 choose color dialog, and provides a means of selecting standard colors or creating custom colors. ==Appearance== - [[Image:wel-choose-color-dialog|wel_choose_color_dialog]]
+[[Image:wel-choose-color-dialog|wel_choose_color_dialog]]

{{seealso|
diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-folder-dialog.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-folder-dialog.wiki index 5c4850d2..95b4cb56 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-folder-dialog.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-folder-dialog.wiki @@ -4,7 +4,7 @@ The [[ref:libraries/wel/reference/wel_choose_folder_dialog_chart|WEL_CHOOSE_FOLDER_DIALOG]] allows the directory structure to be viewed and a folder selected. ==Appearance== - [[Image:wel-choose-folder-dialog|wel_choose_folder_dialog]]
+[[Image:wel-choose-folder-dialog|wel_choose_folder_dialog]]

{{seealso|
diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-font-dialog.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-font-dialog.wiki index d2118f92..986d20d7 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-font-dialog.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-choose-font-dialog.wiki @@ -4,7 +4,7 @@ The [[ref:libraries/wel/reference/wel_choose_font_dialog_chart|WEL_CHOOSE_FONT_DIALOG]] is an encapsulation of the Win32 choose font dialog, and provides a means of selecting a font available on the system. ==Appearance== - [[Image:wel-choose-font-dialog|wel_choose_font_dialog]]
+[[Image:wel-choose-font-dialog|wel_choose_font_dialog]]

{{seealso|
diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-open-file-dialog.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-open-file-dialog.wiki index 374f0074..ac28fc02 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-open-file-dialog.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-open-file-dialog.wiki @@ -4,7 +4,7 @@ The [[ref:libraries/wel/reference/wel_open_file_dialog_chart|WEL_OPEN_FILE_DIALOG]] is an encapsulation of the Win32 open file dialog, and provides a means of specifying a file to be opened. ==Appearance== - [[Image:wel-open-file-dialog|wel_open_file_dialoG]]
+[[Image:wel-open-file-dialog|wel_open_file_dialoG]]

{{seealso|
diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-print-dialog.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-print-dialog.wiki index 3758cda8..a29b1896 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-print-dialog.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-print-dialog.wiki @@ -4,7 +4,7 @@ The [[ref:libraries/wel/reference/wel_print_dialog_chart|WEL_PRINT_DIALOG]] is an encapsulation of the Win32 print dialog and provides a means of specifying print preferences. ==Appearance== - [[Image:wel-print-dialog|wel_print_dialog]]
+[[Image:wel-print-dialog|wel_print_dialog]]

{{seealso|
diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-save-file-dialog.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-save-file-dialog.wiki index bf8b1763..8d41fdf0 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-save-file-dialog.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-interface-content/stddlgs-cluster/wel-save-file-dialog.wiki @@ -4,7 +4,7 @@ The [[ref:libraries/wel/reference/wel_save_file_dialog_chart|WEL_SAVE_FILE_DIALOG]] is an encapsulation of the Win32 save file dialog, and provides a means of specifying a file name and location for saving. ==Appearance== - [[Image:wel-save-file-dialog|wel_save_file_dialoG]]
+[[Image:wel-save-file-dialog|wel_save_file_dialoG]]

{{seealso|
diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-samples/brushes.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-samples/brushes.wiki index a6a66e62..5e119bbf 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-samples/brushes.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-samples/brushes.wiki @@ -18,7 +18,7 @@ To compile the example: After launching the program you will see a window displayed containing three push buttons marked "Brushes", "Rectangles" and "3D". Clicking "Brushes" will open a new window demonstrating different brushes available. Clicking "Rectangles" will open a new window within which many different shaped and colored rectangles will be drawn. Clicking"3D" will open a new window demonstrating the use of multiple bitmaps for animation. ==Under the Hood== Each of the three windows that are opened from the programs MAIN_WINDOW inherit [[ref:libraries/wel/reference/wel_frame_window_chart|WEL_FRAME_WINDOW]] and contains code for generating their output. BRUSHES_DEMO redefines idle_action to force a re-draw on the applicable windows. -{{note|. If enable_idle_action is not called, then idle_action is never executed. }} +{{note|If enable_idle_action is not called, then idle_action is never executed. }} This sample contains the following classes: * APPLICATION_IDS diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-1.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-1.wiki index 7607fb54..ef6b87a3 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-1.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-1.wiki @@ -2,7 +2,8 @@ [[Property:weight|0]] [[Property:uuid|b952d232-1ef9-04a8-bac4-117185aa316d]] This sample shows you how to set up your first [[ref:/libraries/wel/reference/wel_application_chart|WEL_APPLICATION]] consisting of a single [[ref:/libraries/wel/reference/wel_frame_window_chart|WEL_FRAME_WINDOW]] . This is one of the simplest WEL applications you can write, and the output is shown below: - [[Image:step1|step1]]
+ +[[Image:step1|step1]]
==Compiling== diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-2.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-2.wiki index 29efee42..f979a497 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-2.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-2.wiki @@ -2,7 +2,8 @@ [[Property:weight|1]] [[Property:uuid|f4a73538-8a2f-ce6b-5190-6bd4d0e8c8d1]] This sample shows you how to respond to an event occurring within your application. It also demonstrates the use of a [[ref:libraries/wel/reference/wel_msg_box_chart|WEL_MSG_BOX]] control and a redefinition of closeable from [[ref:libraries/wel/reference/wel_composite_window_chart|WEL_COMPOSITE_WINDOW]] . - [[Image:step2|step2]]
+ +[[Image:step2|step2]]

==Compiling== @@ -21,9 +22,9 @@ After launching the sample, you should see a [[ref:libraries/wel/reference/wel_f ==Under the Hood== -This system is a demonstration of how to connect an event to one of the common message hooks available within WEL. See [[WEL Common Concepts|Common message hooks]] for more information. In this example, on_left_button_down has been redefined from [[ref:libraries/wel/reference/wel_window_chart|WEL_WINDOW]] to display a [[ref:libraries/wel/reference/wel_msg_box_chart|WEL_MSG_BOX]] containing notification of the event occurring. +This system is a demonstration of how to connect an event to one of the common message hooks available within WEL. See [[WEL Common Concepts|Common message hooks]] for more information. In this example, on_left_button_down has been redefined from [[ref:libraries/wel/reference/wel_window_chart|WEL_WINDOW]] to display a [[ref:libraries/wel/reference/wel_msg_box_chart|WEL_MSG_BOX]] containing notification of the event occurring. -If you look at closeable from MAIN_WINDOW, you will see that it has been redefined to display a [[ref:libraries/wel/reference/wel_msg_box_chart|WEL_MSG_BOX]] and the result from this message box is used to generate the return value of closeable. If this Result is True, the window will be closed. +If you look at closeable from MAIN_WINDOW, you will see that it has been redefined to display a [[ref:libraries/wel/reference/wel_msg_box_chart|WEL_MSG_BOX]] and the result from this message box is used to generate the return value of closeable. If this Result is True, the window will be closed. This sample contains the following classes: * TUTORIAL_STEP2 * MAIN_WINDOW diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-3.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-3.wiki index d5c4765a..408391be 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-3.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-3.wiki @@ -2,7 +2,8 @@ [[Property:weight|2]] [[Property:uuid|7d79155a-fe75-e252-49d7-b03243ac96fd]] This sample demonstrates the use of a [[ref:libraries/wel/reference/wel_client_dc_chart|WEL_CLIENT_DC]] to display output in the MAIN_WINDOW. The output is shown below: - [[Image:step3|step3]]
+ +[[Image:step3|step3]]

==Compiling== diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-4.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-4.wiki index 555e1698..d5e00ced 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-4.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-4.wiki @@ -2,7 +2,8 @@ [[Property:weight|3]] [[Property:uuid|a43c069c-d56e-47f0-f1b0-d58df627b5a4]] This sample builds on the knowledge learned in the previous tutorials ( [[Tutorial Step 1|1]] , [[Tutorial Step 2|2]] and [[Tutorial Step 3|3]] ) and again demonstrates the use of a [[ref:libraries/wel/reference/wel_client_dc_chart|WEL_CLIENT_DC]] . - [[Image:step4|step4]]
+ +[[Image:step4|step4]]

==Compiling== diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-5.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-5.wiki index 2c2c613d..9a44a94b 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-5.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-5.wiki @@ -2,7 +2,8 @@ [[Property:weight|4]] [[Property:uuid|05145328-5d2a-4d48-68cc-746ddf66b68f]] The sample builds on tutorial [[Tutorial Step 4|step 4]] and also demonstrates the use of a [[ref:libraries/wel/reference/wel_modal_dialog_chart|WEL_MODAL_DIALOG]] . The output is shown below: - [[Image:step5|step5]]
+ +[[Image:step5|step5]]

==Compiling== diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-6.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-6.wiki index 63f22342..e16337ba 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-6.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-6.wiki @@ -2,7 +2,8 @@ [[Property:weight|5]] [[Property:uuid|90d557e1-c4a6-e6ff-ff19-95a44c99f0ae]] This sample builds on tutorial [[Tutorial Step 5|step 5]] by preventing the loss of the drawing when Windows re-draws the client area of the [[ref:libraries/wel/reference/wel_frame_window_chart|WEL_FRAME_WINDOW]] . The output is shown below: - [[Image:step6|step6]]
+ +[[Image:step6|step6]]

==Compiling== diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-7.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-7.wiki index 529a69d6..133e1529 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-7.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-7.wiki @@ -2,7 +2,8 @@ [[Property:weight|6]] [[Property:uuid|751a492d-6902-838e-7468-38b67e40f4e2]] This sample builds on tutorial [[Tutorial Step 6|step 6]] , and also demonstrates the use of a [[ref:libraries/wel/reference/wel_menu_chart|WEL_MENU]] . The output is shown below: - [[Image:step7|step7]]
+ +[[Image:step7|step7]]

==Compiling== diff --git a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-8.wiki b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-8.wiki index b3bbaa66..cb57f795 100644 --- a/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-8.wiki +++ b/documentation/current/platform-specifics/microsoft-windows/wel/wel-tutorial/tutorial-step-8.wiki @@ -2,7 +2,8 @@ [[Property:weight|7]] [[Property:uuid|38c3a22d-2c15-cb68-a685-99a25d191885]] This sample builds on tutorial [[Tutorial Step 7|step 7]] , and also demonstrates the use of a [[ref:libraries/wel/reference/wel_open_file_dialog_chart|WEL_OPEN_FILE_DIALOG]] and a [[ref:libraries/wel/reference/wel_save_file_dialog_chart|WEL_SAVE_FILE_DIALOG]] . The output is shown below: - [[Image:step8|step8]]
+ +[[Image:step8|step8]]

==Compiling==