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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2006 - INRIA - Fabrice Leray
* Copyright (C) 2006 - INRIA - Jean-Baptiste Silvy
*
* 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-en.txt
*
*/
/*------------------------------------------------------------------------*/
/* file: sci_xtitle.c */
/* desc : interface for xtitle routine */
/*------------------------------------------------------------------------*/
#include "gw_graphics.h"
#include "stack-c.h"
#include "Scierror.h"
#include "SetProperty.h"
#include "MALLOC.h"
#include "CurrentObjectsManagement.h"
#include "freeArrayOfString.h"
#include "localization.h"
#include "GraphicSynchronizerInterface.h"
#include "DrawingBridge.h"
/*--------------------------------------------------------------------------*/
int sci_xtitle( char * fname, unsigned long fname_len )
{
int narg ;
int nbLabels ; /* number of modified labels */
int box = 0 ;
BOOL isBoxSpecified = FALSE ;
sciPointObj * psubwin = NULL;
sciPointObj * pFigure = NULL;
static rhs_opts opts[] = { {-1,"boxed","i" ,0,0,0},
{-1,NULL ,NULL,0,0,0} };
if (Rhs <= 0)
{
sci_demo(fname, fname_len);
return 0;
}
CheckRhs(1,5);
nbLabels = Rhs ;
/* get the given options from the name in opts */
if ( !get_optionals(fname,opts) )
{
/* error */
return 0;
}
/* compatibility with previous version in which box was put */
/* at the fourth position */
if ( Rhs == 4 )
{
int type = GetType(4);
if ( type == 1 || type == 8 )/* double or int */
{
int n,m ;
int boxPtr = -1 ; /* pointer of box on the stack */
GetRhsVar(4,MATRIX_OF_INTEGER_DATATYPE,&m,&n,&boxPtr);
CheckScalar(4,m,n);
box = *istk( boxPtr ) ;
nbLabels-- ; /* it is not a label text */
isBoxSpecified = TRUE ;
}
}
if ( opts[0].position != -1 && !isBoxSpecified )
{
/* check if "box" is in the options */
box = *istk(opts[0].l) ;
if ( opts[0].m * opts[0].n != 1 )
{
/* check size */
Scierror( 999, _("%s: Wrong type for input argument: Scalar expected.\n"), fname ) ;
return 1 ;
}
nbLabels-- ; /* it is not a label text */
}
pFigure = sciGetCurrentFigure();
psubwin = sciGetCurrentSubWin();
for ( narg = 1 ; narg <= nbLabels ; narg++)
{
int m,n;
char **Str;
sciPointObj * modifiedLabel = NULL ;
GetRhsVar(narg,MATRIX_OF_STRING_DATATYPE,&m,&n,&Str);
if ( m*n == 0 )
{
continue ;
}
switch(narg)
{
case 1:
modifiedLabel = pSUBWIN_FEATURE(psubwin)->mon_title ;
break;
case 2:
modifiedLabel = pSUBWIN_FEATURE(psubwin)->mon_x_label ;
break;
case 3:
modifiedLabel = pSUBWIN_FEATURE(psubwin)->mon_y_label ;
break;
case 4:
modifiedLabel = pSUBWIN_FEATURE(psubwin)->mon_z_label ;
default:
break;
}
startFigureDataWriting(pFigure);
sciSetText( modifiedLabel, Str, m, n ) ;
if ( box == 1 )
{
sciSetIsFilled( modifiedLabel, TRUE ) ;
}
else
{
sciSetIsFilled( modifiedLabel, FALSE ) ;
}
endFigureDataWriting(pFigure);
freeArrayOfString(Str,m*n);
}
sciSetCurrentObj(psubwin);
sciDrawObj(pFigure);
LhsVar(1)=0;
C2F(putlhsvar)();
return 0;
}
/*--------------------------------------------------------------------------*/
|