File: scigraphic.h

package info (click to toggle)
scilab 4.0-12
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k
  • size: 100,640 kB
  • ctags: 57,333
  • sloc: ansic: 377,889; fortran: 242,862; xml: 179,819; tcl: 42,062; sh: 10,593; ml: 9,441; makefile: 4,377; cpp: 1,354; java: 621; csh: 260; yacc: 247; perl: 130; lex: 126; asm: 72; lisp: 30
file content (5 lines) | stat: -rw-r--r-- 2,439 bytes parent folder | download | duplicates (2)
1
2
3
4
5
/**sciSetScrollInfo *@description: Sets the dimension of the scroll bars * Do not call SetScrollInfo windows function, * sciSetScrollInfo do that and more things ! *@input: struct BCG *Scilabgc, int sb_ctl, SCROLLINFO *si, BOOLEAN bRedraw *@output: int *@author: Matthieu PHILIPPE  *@date: Dec 1999 **/extern int sciSetScrollInfo(struct BCG *Scilabgc, int sb_ctl,SCROLLINFO *si, BOOLEAN bRedraw);/**sciGetScrollInfo *@description: Returns the dimension of the scroll bars * Do not call GetScrollInfo windows function, * sciGetScrollInfo do that and more things ! *@input: struct BCG *Scilabgc, int sb_ctl, SCROLLINFO *si *@output: int *@author: Matthieu PHILIPPE  *@date: Dec 1999 **/extern int sciGetScrollInfo(struct BCG *Scilabgc, int sb_ctl, SCROLLINFO *si);/**sciGetScrollInfo *@description: Returns the wresize status. * 0: it's in scroll bars mode * 1: it's in wresize mode *@input: NONE *@output: integer *@author: Matthieu PHILIPPE  *@date: Dec 1999 **/extern integer sciGetwresize();
/**sciGetPixmapStatus *@description: Returns the pixmap status. * 0: it's drawn directly on screen * 1: it's drawn by a pixmap first *@input: NONE *@output: integer *@author: Matthieu PHILIPPE  *@date: Dec 1999 **/extern integer sciGetPixmapStatus();
/**SciViewportGet *@description: used to get panner position through scilab command. * *@input: struct BCG *ScilabGC : structure associated to a Scilab Graphic window *        int x,y : the x,y point of the graphic window to be moved at  *        the up-left position of the viewport * *@output: NONE * *@author:  *@date: **/extern void SciViewportGet __PARAMS((struct BCG *ScilabXgc,int *x,int *y));
/**SciViewportMove *@description: used to move the panner and the viewport interactively  *              through scilab command. * *@input: struct BCG *ScilabGC : structure associated to a Scilab Graphic window *        int x,y : the x,y point of the graphic window to be moved at  *        the up-left position of the viewport * *@output: NONE * *@author:  *@date: **/extern void SciViewportMove __PARAMS((struct BCG *ScilabXgc,int x,int y));
/**GPopupResize *@description: a little beat different to windowdim. GPopupResize sets the visible * window (parents dimension) * *@input: struct BCG *ScilabXgc,int *x,int *y , where x,y are * the new dimension * *@output: NONE * *@see: setwindowdim * *@author:  *@date:  **/extern void GPopupResize __PARAMS((struct BCG *ScilabXgc,int *x,int *y));