|
{
|
|
Adtos 1.0 Software de gestión de Aulas Tecnológicas
|
|
Copyright (C) 2008-2009, Consejería de Educación,Junta de Extremadura
|
|
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
|
|
uses SysUtils,clequiposervidoraula,clequipoadministrador, Classes, Graphics;
|
|
type
|
|
|
|
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;
|
|
mejoresAulas:array of string;
|
|
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 ;
|
|
numeroAulas:integer;
|
|
nombreAulas:array of string;
|
|
posicionequipo:array of TPoint;
|
|
numerogrupos:integer;
|
|
nombregrupos:array of string;
|
|
cgrupos:array of integer
|
|
end;
|
|
|
|
var
|
|
equipoServidorAula: Array of Tequipo;
|
|
equipoAdministrador:TEquipoAdministrador;
|
|
g_Cursos:Array of Tcursos;
|
|
g_testeada:Boolean=false;
|
|
implementation
|
|
|
|
end.
|
|
|
|
|