IUP

Check-in [833e7a465c]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Some clarification in the documentation of show from iup-base
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 833e7a465c3f9af77ca7bb3622233fa4c33b223a
User & Date: murphy 2016-04-21 07:36:23.184
Context
2017-02-23
18:38
Point CHICKEN release-info to chisel mirror check-in: c270258d1a user: murphy tags: trunk
2016-04-21
07:36
Some clarification in the documentation of show from iup-base check-in: 833e7a465c user: murphy tags: trunk
2016-01-01
15:30
Added version 1.8.0 to release information file check-in: ce1db26f91 user: murphy tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to api/base.wiki.
264
265
266
267
268
269
270
271
272
273

274
275
276
277
278
279


280
281
282
283
284
285
286
elements are also redrawn. If <code>sync?</code> is true, the redrawing is
forced to happen immediately before the call returns.

<h2>Dialog Functions</h2>

<h3><a id="show"><code><nowiki>(show [handle ihandle?] #:x [x (or/c symbol? integer?) 'current] #:y [y (or/c symbol? integer?) 'current] #:modal? [modal? any/c #f]) → (or/c boolean? symbol? integer?)</nowiki></code></a></h3>

Shows a dialog. The <code>x</code> and <code>y</code> arguments determine where
the dialog is placed on the screen and default to the current position. Apart
from pixel coordinates the following values are acceptable: <code>'center</code>,

<code>'start</code>, <code>'top</code>, <code>'left</code>, <code>'end</code>,
<code>'bottom</code>, <code>'right</code>, <code>'mouse</code>,
<code>'parent-center</code>, <code>'current</code>.

If <code>modal?</code> is true, the dialog is shown as a modal dialog and the
call only returns after the dialog is dismissed.



<h3><a id="hide"><code><nowiki>(hide [handle ihandle?]) → void?</nowiki></code></a></h3>

Hides a dialog.

<h2>Composition Functions</h2>








|
|
|
>
|
|
|


|
>
>







264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
elements are also redrawn. If <code>sync?</code> is true, the redrawing is
forced to happen immediately before the call returns.

<h2>Dialog Functions</h2>

<h3><a id="show"><code><nowiki>(show [handle ihandle?] #:x [x (or/c symbol? integer?) 'current] #:y [y (or/c symbol? integer?) 'current] #:modal? [modal? any/c #f]) → (or/c boolean? symbol? integer?)</nowiki></code></a></h3>

Shows a dialog or popup menu. The <code>x</code> and <code>y</code> arguments
determine where the dialog is placed on the screen and default to the current
position. Apart from pixel coordinates the following values are acceptable:
<code>'center</code>, <code>'start</code>, <code>'top</code>,
<code>'left</code>, <code>'end</code>, <code>'bottom</code>,
<code>'right</code>, <code>'mouse</code>, <code>'parent-center</code>,
<code>'current</code>.

If <code>modal?</code> is true, the dialog is shown as a modal dialog and the
call only returns after the dialog is dismissed (using <code>IupPopup</code>).
Otherwise the function returns immediately after making the dialog visible
(using <code>IupShowXY</code>).

<h3><a id="hide"><code><nowiki>(hide [handle ihandle?]) → void?</nowiki></code></a></h3>

Hides a dialog.

<h2>Composition Functions</h2>