File: sci_uigetdir.cpp

package info (click to toggle)
scilab 5.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 334,832 kB
  • ctags: 52,586
  • sloc: xml: 526,945; ansic: 223,590; fortran: 163,080; java: 56,934; cpp: 33,840; tcl: 27,936; sh: 20,397; makefile: 9,908; ml: 9,451; perl: 1,323; cs: 614; lisp: 30
file content (150 lines) | stat: -rw-r--r-- 4,058 bytes parent folder | download | duplicates (2)
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
149
150
/*
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 * Copyright (C) 2007 - INRIA - Vincent COUVERT
 *
 * 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
 *
 */

#include "CallJuigetfile.hxx"
#include "BOOL.h"

extern "C"
{
#include <stdio.h>
#include "gw_gui.h"
#include "PATH_MAX.h"
#include "stack-c.h"
#include "MALLOC.h"
#include "localization.h"
#include "Scierror.h"
#include "expandPathVariable.h"
#include "freeArrayOfString.h"
}

using namespace org_scilab_modules_gui_filechooser;
/*--------------------------------------------------------------------------*/
int sci_uigetdir(char *fname,unsigned long l)
{
  int nbRow = 0, nbCol = 0;

  int titleAdr = 0;
  int initialDirectoryAdr = 0;

  char *title = NULL, *initialDirectory = NULL;

  char **userSelection = NULL;

  char *expandedpath = NULL;
  
  CheckRhs(0,2);
  CheckLhs(1,1);

  if (Rhs >= 1)
    {
      /* First argument is initial directory */
      if (VarType(1) == sci_strings)
        {
          GetRhsVar(1, STRING_DATATYPE, &nbRow, &nbCol, &initialDirectoryAdr);
          if (nbCol !=1)
            {
              Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 1);
              FREE(expandedpath);
              return FALSE;
            }
          initialDirectory = cstk(initialDirectoryAdr);

		  expandedpath = expandPathVariable(initialDirectory);
       }
      else
        {
          Scierror(999, _("%s: Wrong type for input argument #%d: A string expected.\n"), fname, 1);
		  if (expandedpath) {FREE(expandedpath); expandedpath = NULL;}
          return FALSE;
        }

    }

   if (Rhs == 2)
     {
       /* Second argument is title */
       if (VarType(2) == sci_strings)
         {
           GetRhsVar(2, STRING_DATATYPE, &nbRow, &nbCol, &titleAdr);
           if (nbCol !=1)
             {
               Scierror(999, _("%s: Wrong size for input argument #%d: A string expected.\n"), fname, 2);
               if (expandedpath) {FREE(expandedpath); expandedpath = NULL;}
               return FALSE;
             }
           title = cstk(titleAdr);
         }
       else
         {
           Scierror(999, _("%s: Wrong type for input argument #%d: A string expected.\n"), fname, 2);
           if (expandedpath) {FREE(expandedpath); expandedpath = NULL;}
           return FALSE;
         }
     }
   
  switch (Rhs)
    {
      /* Initial path is given */
    case 1:
      CallJuigetfileForDirectoryWithInitialdirectory(expandedpath);
      break;
      /* Initial path and title are given */
    case 2:
      CallJuigetfileForDirectoryWithInitialdirectoryAndTitle(expandedpath, title);
      break;
      /* Default call with default path and title */
    default:
      CallJuigetfileForDirectoryWithoutInput();
      break;
    }

  /* Read the size of the selection, if 0 then no file selected */
  nbRow = getJuigetfileSelectionSize();
  /* Read the selection */
  userSelection = getJuigetfileSelection();

  if (nbRow !=0 )
    {
      /* The user selected a file --> returns the files names */
      nbCol = 1;

      CreateVarFromPtr(Rhs+1, MATRIX_OF_STRING_DATATYPE, &nbRow, &nbCol, userSelection);
	  if (userSelection)
	  {
		  for(int i = 0; i < nbRow;i++)
		  {
			  if (userSelection[i])
			  {
				  delete userSelection[i];
				  userSelection[i] = NULL;
			  }
		  }
		  delete [] userSelection;
		  userSelection = NULL;
	  }
    }
  else
    {
      /* The user canceled the selection --> returns an empty matrix */
      nbRow = 1;
      nbCol = 1;
      CreateVarFromPtr(Rhs+1, MATRIX_OF_STRING_DATATYPE, &nbRow, &nbCol, NULL);
    }

  LhsVar(1)=Rhs+1;
  PutLhsVar();

  if (expandedpath) {FREE(expandedpath); expandedpath = NULL;}
  
  return TRUE;
}
/*--------------------------------------------------------------------------*/