<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://dokuwiki.librecad.org/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://dokuwiki.librecad.org/feed.php">
        <title>Wiki - dev:v3:gui_api:dialog</title>
        <description></description>
        <link>https://dokuwiki.librecad.org/</link>
        <image rdf:resource="https://dokuwiki.librecad.org/lib/exe/fetch.php/wiki:dokuwiki.svg" />
       <dc:date>2026-05-05T15:29:44+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:dialogexample1?rev=1594358677&amp;do=diff"/>
                <rdf:li rdf:resource="https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:dialogwidget?rev=1594270014&amp;do=diff"/>
                <rdf:li rdf:resource="https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:inputgui1?rev=1594353362&amp;do=diff"/>
                <rdf:li rdf:resource="https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:inputgui2?rev=1594298512&amp;do=diff"/>
                <rdf:li rdf:resource="https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:inputgui3?rev=1594352949&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://dokuwiki.librecad.org/lib/exe/fetch.php/wiki:dokuwiki.svg">
        <title>Wiki</title>
        <link>https://dokuwiki.librecad.org/</link>
        <url>https://dokuwiki.librecad.org/lib/exe/fetch.php/wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:dialogexample1?rev=1594358677&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-07-10T05:24:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>dialogexample1</title>
        <link>https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:dialogexample1?rev=1594358677&amp;do=diff</link>
        <description>Dialog Example 1

In this simple example we attempt to use the dialog widget to allow the user to create a simple entity. The user would specify two points which we use to create a line, and then using the rotation angle specified by the user and the number of rotations we rotate and copy the entity that many times creating a simple entity like the one shown below.</description>
    </item>
    <item rdf:about="https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:dialogwidget?rev=1594270014&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-07-09T04:46:54+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>dialogwidget</title>
        <link>https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:dialogwidget?rev=1594270014&amp;do=diff</link>
        <description>Dialog Widget Class

Github Link

 namespace lc::ui::api 

A Dialog widget object acts a parent widget containing all the input gui widgets. A finish button can be added which on being clicked retrieves the values of all the input guis in a table when the user is finished with the dialog. This table is passed in as a parameter to all the finish callbacks added to the dialog widget.</description>
    </item>
    <item rdf:about="https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:inputgui1?rev=1594353362&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-07-10T03:56:02+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>inputgui1</title>
        <link>https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:inputgui1?rev=1594353362&amp;do=diff</link>
        <description>Input GUI Widgets I

----------

Input GUI Class

----------

Github Link

 namespace lc::ui::api 

The Input GUI class is the parent class of all input gui widgets (except button and checkbox) which is added to the dialog widget. This is an abstract class.

----------</description>
    </item>
    <item rdf:about="https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:inputgui2?rev=1594298512&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-07-09T12:41:52+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>inputgui2</title>
        <link>https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:inputgui2?rev=1594298512&amp;do=diff</link>
        <description>Input GUI Widgets II

----------

Coordinate GUI Class

----------

Github Link

 namespace lc::ui::api 

The Coordinate GUI widget allows the user to select a coordinate either by selecting the point using the mouse or by entering the coordinate into the widget. Clicking on the select point button allows the user to select a point using the mouse.</description>
    </item>
    <item rdf:about="https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:inputgui3?rev=1594352949&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-07-10T03:49:09+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>inputgui3</title>
        <link>https://dokuwiki.librecad.org/doku.php/dev:v3:gui_api:dialog:inputgui3?rev=1594352949&amp;do=diff</link>
        <description>Input GUI Widgets III

----------

Text GUI Class

----------

Github Link

 namespace lc::ui::api 

The Text GUI widget allows the user to enter data in a text format.

----------

Constructor

----------

Description

Constructs an Text GUI widget.

Examples</description>
    </item>
</rdf:RDF>
