CLIM mail archive
[Prev][Next][Index][Thread]
Re: Width of Accepting-value widget
-
To: Nichael Cramer <ncramer@BBN.COM>
-
Subject: Re: Width of Accepting-value widget
-
From: Whitney Winston <wwinston@medg.lcs.mit.edu>
-
Date: Thu, 30 Sep 93 15:10:10 EDT
-
Cc: clim@BBN.COM
-
In-Reply-To: <9309301802.AA24035@MEDG.lcs.mit.edu>
-
References: <9309301802.AA24035@MEDG.lcs.mit.edu>
Nichael Cramer <ncramer@bbn.com> writes:
> However the input-field is about 1/3 as wide as I need/would like it to be.
>
> Do I have any control over the size of this thing at this level (or do I
> need to go in and lay them out myself)?
You can change the width of the window using the :width option.
(defun get-string-data (message &optional (default nil))
(let ((stream (frame-standard-output *application-frame*))
(val nil))
(accepting-values (stream :own-window t
:width 500)
(accept 'string
:prompt message
:default default
:stream stream))))
--Whitney
Main Index |
Thread Index