desarrollosconsejeria/adtos-server/1.7-0/adtos/globales1.pas @ 23a384b9
54e95a47 | Elisa | {
|
|
23a384b9 | Elisa | Adtos 1.0 Software de gestión de Aulas Tecnológicas
|
|
Copyright (C) 2008-2009, Consejería de Educación,Junta de Extremadura
|
|||
54e95a47 | Elisa | Programación: Manuel Narváez Martínez <mnarvaez007@gmail.com>
|
|
Diseño gráfico: Ana María Zamora Moreno
|
|||
Desarrollado con Lazarus 0.9.26
|
|||
This program is free software; you can redistribute it and/or modify
|
|||
it under the terms of the GNU General Public License as published by
|
|||
the Free Software Foundation; either version 2 of the License, or
|
|||
(at your option) any later version.
|
|||
This program is distributed in the hope that it will be useful,
|
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
GNU General Public License for more details.
|
|||
You should have received a copy of the GNU General Public License
|
|||
along with this program; if not, write to the Free Software
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|||
}
|
|||
unit globales1;
|
|||
{$mode objfpc}{$H+}
|
|||
interface
|
|||
23a384b9 | Elisa | uses SysUtils,clequiposervidoraula,clequipoadministrador, Classes, Graphics;
|
|
type
|
|||
54e95a47 | Elisa | ||
TnumeroPantalla=(eEncender,eVer,eMostrar,eMensaje,eArchivo,eRecibir,eLanzar,eNavegar,eDevolver,eCarpeta,eVideo,ePresentar,eInternet);
|
|||
Tcuestion=record
|
|||
tipo:integer;
|
|||
codigo:string;
|
|||
nombre:string;
|
|||
numOpciones:integer;
|
|||
pregunta:string;
|
|||
opciones:array[0..7] of string;
|
|||
23a384b9 | Elisa | mejoresAulas:array of string;
|
|
54e95a47 | Elisa | mejorestiempos:array of integer;
|
|
mejoresequipos:array of string;
|
|||
mejoresrespuestas:array of integer;
|
|||
solucion:integer;
|
|||
tiempo:integer;
|
|||
archivo:string;
|
|||
numfallos:integer;
|
|||
numAciertos:integer;
|
|||
numBlancos:integer;
|
|||
end;
|
|||
Tcursos=record
|
|||
nombre:string ;
|
|||
23a384b9 | Elisa | numeroAulas:integer;
|
|
nombreAulas:array of string;
|
|||
54e95a47 | Elisa | posicionequipo:array of TPoint;
|
|
numerogrupos:integer;
|
|||
nombregrupos:array of string;
|
|||
cgrupos:array of integer
|
|||
end;
|
|||
var
|
|||
23a384b9 | Elisa | equipoServidorAula: Array of Tequipo;
|
|
equipoAdministrador:TEquipoAdministrador;
|
|||
54e95a47 | Elisa | g_Cursos:Array of Tcursos;
|
|
g_testeada:Boolean=false;
|
|||
implementation
|
|||
end.
|
|||