<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://humanemulator.net/wiki/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://humanemulator.net/wiki/feed.php">
        <title>Human Emulator wiki en:objects:windowinterface:is</title>
        <description></description>
        <link>https://humanemulator.net/wiki/</link>
        <image rdf:resource="https://humanemulator.net/wiki///humanemulator.net/wiki/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-08-12T14:34:25+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_child&amp;rev=1785960187&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_enable&amp;rev=1785960188&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_exist&amp;rev=1785960188&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_focus&amp;rev=1785960189&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_foreground&amp;rev=1785960190&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_maximize&amp;rev=1785960191&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_minimize&amp;rev=1785960191&amp;do=diff"/>
                <rdf:li rdf:resource="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_visible&amp;rev=1785960192&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://humanemulator.net/wiki///humanemulator.net/wiki/lib/tpl/dokuwiki/images/favicon.ico">
        <title>Human Emulator wiki</title>
        <link>https://humanemulator.net/wiki/</link>
        <url>https://humanemulator.net/wiki///humanemulator.net/wiki/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_child&amp;rev=1785960187&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-08-05T23:03:07+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:is:is_child</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_child&amp;rev=1785960187&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Check if the main visible window containing the XWeb text is a child:&quot;;
$xweb = $window-&gt;get_by_text(&quot;XWeb&quot;);
if(!$xweb-&gt;is_child())
echo &quot;main &lt;br&gt;&quot;;

//end
echo &quot;&lt;hr&gt; &lt;br&gt;&quot;;

//…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_enable&amp;rev=1785960188&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-08-05T23:03:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:is:is_enable</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_enable&amp;rev=1785960188&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Check the availability of the main visible window containing the name XWeb(human):&quot;;
echo $window-&gt;get_by_text(&quot;XWeb&quot;)-&gt;is_enable();

//end
echo &quot;&lt;hr&gt; &lt;br&gt;&quot;;

//Quit
$app-&gt;quit();…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_exist&amp;rev=1785960188&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-08-05T23:03:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:is:is_exist</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_exist&amp;rev=1785960188&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Check the existence of the main visible window containing the name XWeb(human):&quot;;
$xweb = $window-&gt;get_by_text(&quot;XWeb&quot;);
echo $xweb-&gt;is_exist().&quot;&lt;br&gt;&quot;;

//2
echo &quot;2.Check the exist…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_focus&amp;rev=1785960189&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-08-05T23:03:09+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:is:is_focus</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_focus&amp;rev=1785960189&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:705&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Check focus of the main visible window containing the name XWeb(human):&quot;;
$xweb = $window-&gt;get_by_text(&quot;XWeb&quot;);
if(!$xweb-&gt;is_focus())
echo &quot;no focus &lt;br&gt;&quot;;

//2
echo &quot;2.Set focus:…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_foreground&amp;rev=1785960190&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-08-05T23:03:10+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:is:is_foreground</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_foreground&amp;rev=1785960190&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:705&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Let&#039;s check the user focus of the main visible window containing the name XWeb(human):&quot;;
$xweb = $window-&gt;get_by_text(&quot;Human&quot;);
echo $xweb-&gt;is_foreground();

//end
echo &quot;&lt;hr&gt; &lt;br&gt;&quot;…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_maximize&amp;rev=1785960191&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-08-05T23:03:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:is:is_maximize</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_maximize&amp;rev=1785960191&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Let&#039;s check the XWeb maximization(human):&quot;;
$xweb = $window-&gt;get_by_text(&quot;XWeb&quot;);
$xweb-&gt;restore();
if(!$xweb-&gt;is_maximize())
echo &quot;not maximized &lt;br&gt;&quot;;

//2
echo &quot;2.Maximizing:&quot;;…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_minimize&amp;rev=1785960191&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-08-05T23:03:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:is:is_minimize</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_minimize&amp;rev=1785960191&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Let&#039;s check the minimization of XWeb(human):&quot;;
$xweb = $window-&gt;get_by_text(&quot;XWeb&quot;);
if(!$xweb-&gt;is_minimize())
echo &quot;not minimized &lt;br&gt;&quot;;

//2
echo &quot;2.Minimize:&quot;;
echo $xweb-&gt;mini…</description>
    </item>
    <item rdf:about="https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_visible&amp;rev=1785960192&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-08-05T23:03:12+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>en:objects:windowinterface:is:is_visible</title>
        <link>https://humanemulator.net/wiki/doku.php?id=en:objects:windowinterface:is:is_visible&amp;rev=1785960192&amp;do=diff</link>
        <description>PHP example: 

&lt;?php $xhe_host = &quot;127.0.0.1:7010&quot;;

//connect the object to control the emulator, if not already connected
if(!isset($path))
   $path = &quot;../../../Templates/xweb_human_emulator.php&quot;;
require($path);

//Start
echo &quot;&lt;hr&gt; &lt;font color = blue&gt; windowinterface-&gt;&quot;.basename(__FILE__).&quot;&lt;/font&gt; &lt;hr&gt;&quot;;

//1
echo &quot;1.Let&#039;s check the visibility of the main visible window containing the name XWeb(human):&quot;;
$xweb = $window-&gt;get_by_text(&quot;XWeb&quot;);
echo $xweb-&gt;is_visible().&quot;&lt;br&gt;&quot;;

//2
echo &quot;2.Hide t…</description>
    </item>
</rdf:RDF>
