1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2001 - 2002 - INRIA - Mathieu Philipe
* Copyright (C) 2002 - 2004 - INRIA - Djalel Abdemouche
* Copyright (C) 2004 - 2006 - INRIA - Fabrice Leray
* Copyright (C) 2011 - 2011 - DIGITEO - Bruno JOFRET
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
*
*/
/*------------------------------------------------------------------------
* Graphic library
* Comment:
* This file contains all functions used to INTERACT with the graphic
* window (zoom by pressing button, callbacks...)
--------------------------------------------------------------------------*/
#ifndef __SCI_INTERACTION__
#define __SCI_INTERACTION__
#include "dynlib_graphics.h"
#include "BOOL.h"
/**
* Different status after resizing a canvas or a window.
*/
typedef enum
{
RESIZE_SUCCESS = 0,
RESIZE_MULTIPLE_DOCKED_TAB = -1,
RESIZE_SIZE_TOO_LARGE = -2,
RESIZE_UNCHANGED = 1
} EResizeStatus;
GRAPHICS_IMPEXP int Objmove(int iObjUID, double d[], int m, BOOL opt); /* INTERACTION */
/**
* Call rubber box on a figure in pixels
* @param pFigure figure on which to apply the rubber box
* @param isClick specify whether the rubber box is selected by mouse click
* or a sequence of press/release.
* @param intialRect if not null, specify the initial rectangle to use
* @param[out] endRect array containing the coordinates of two opposite corners of
* the rubber box
* @param[out] usedButton Scilab code of the button used to terminate the rubber box
*/
GRAPHICS_IMPEXP void pixelRubberBox(int iFigure, BOOL isClick,
const int initialRect[4], int endRect[4], int * usedButton);
/**
* Call rubber box using a subwn scale
* @param pFigure figure on which to apply the rubber box
* @param isClick specify whether the rubber box is selected by mouse click
* or a sequence of press/release.
* @param intialRect if not null, specify the initial rectangle [x,y,w,h] to use
* @param[out] endRect array containing the [x,y,w,h] of the selected rectangle
* @param[out] usedButton Scilab code of the button used to terminate the rubber box
*/
GRAPHICS_IMPEXP void rubberBox(int iSubwin, BOOL isClick,
const double initialRect[4], double endRect[4], int * usedButton);
/**
* Put the figure in top of other windows.
* @pram pFigure figure corresponding to the window
*/
GRAPHICS_IMPEXP void showWindow(int iFigureUID);
#endif /* __SCI_INTERACTION__ */
|