Update of /cvsroot/q-lang/qcalc
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17287
Modified Files:
calclib.q
Log Message:
comment changes
Index: calclib.q
===================================================================
RCS file: /cvsroot/q-lang/qcalc/calclib.q,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -d -r1.50 -r1.51
*** calclib.q 30 Nov 2007 22:25:18 -0000 1.50
--- calclib.q 1 Dec 2007 09:59:37 -0000 1.51
***************
*** 41,53 ****
public matrix KEY Xs, rowvect KEY Xs, colvect KEY Xs;
! /* Definition of GUI elements in table cells. Currently supported are (rich)
! text labels, pixmaps, checkboxes, comboboxes (both non-editable and
! editable), spinboxes, horizontal and vertical sliders, push buttons and
! toggle buttons. You can find examples for all of these in the
! guiexamples.qcalc spreadsheet included in the QCalc distribution. */
public label ARGS, pixmap ARGS, checkbox ARGS, combobox ARGS, comboedit ARGS,
spinbox ARGS, hslider ARGS, vslider ARGS, pushbutton ARGS, togglebutton ARGS;
/* The action button is a special push button which has an associated Q
expression (special argument) to be evaluated in the inferior Q process
--- 41,57 ----
public matrix KEY Xs, rowvect KEY Xs, colvect KEY Xs;
! /* Basic GUI elements. Currently supported are (rich) text labels, pixmaps,
! checkboxes, comboboxes (both non-editable and editable), spinboxes,
! horizontal and vertical sliders, push buttons and toggle buttons. You can
! find examples for all of these in the guiexamples.qcalc spreadsheet
! included in the QCalc distribution. */
public label ARGS, pixmap ARGS, checkbox ARGS, combobox ARGS, comboedit ARGS,
spinbox ARGS, hslider ARGS, vslider ARGS, pushbutton ARGS, togglebutton ARGS;
+ /* Advanced GUI elements. Currently supported are action buttons, task buttons
+ and task windows. See guiexamples.qcalc for examples showing how to use
+ these. */
+
/* The action button is a special push button which has an associated Q
expression (special argument) to be evaluated in the inferior Q process
***************
*** 71,79 ****
the task's cell which can be operated directly by the task in the inferior
Q process. The id of the parent window is available inside the task with
! the task_winid function. In addition, messages of the form (W:Int,H:Int)
! are delivered via the task_input semaphore (see above) whenever the size of
! the parent window changes, and the task_params function (see above) can be
! used to extract arguments from a quoted taskwindow call (which is sent to
! the task when the task window cell is recomputed). */
public special taskwindow X;
--- 75,81 ----
the task's cell which can be operated directly by the task in the inferior
Q process. The id of the parent window is available inside the task with
! the task_winid function, and messages of the form (W:Int,H:Int) are
! delivered via the task_input semaphore (see above) whenever the size of the
! parent window changes. */
public special taskwindow X;
|