2007-10-08 08:05:23 +00:00
|
|
|
package GUIBase;
|
|
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
{$ALIGN 8}
|
|
|
|
|
{$ASSERTIONS ON}
|
|
|
|
|
{$BOOLEVAL OFF}
|
|
|
|
|
{$DEBUGINFO ON}
|
|
|
|
|
{$EXTENDEDSYNTAX ON}
|
|
|
|
|
{$IMPORTEDDATA ON}
|
|
|
|
|
{$IOCHECKS ON}
|
|
|
|
|
{$LOCALSYMBOLS ON}
|
|
|
|
|
{$LONGSTRINGS ON}
|
|
|
|
|
{$OPENSTRINGS ON}
|
|
|
|
|
{$OPTIMIZATION OFF}
|
|
|
|
|
{$OVERFLOWCHECKS OFF}
|
|
|
|
|
{$RANGECHECKS OFF}
|
|
|
|
|
{$REFERENCEINFO ON}
|
|
|
|
|
{$SAFEDIVIDE OFF}
|
|
|
|
|
{$STACKFRAMES ON}
|
|
|
|
|
{$TYPEDADDRESS OFF}
|
|
|
|
|
{$VARSTRINGCHECKS ON}
|
|
|
|
|
{$WRITEABLECONST OFF}
|
|
|
|
|
{$MINENUMSIZE 1}
|
|
|
|
|
{$IMAGEBASE $400000}
|
2008-03-25 17:05:10 +00:00
|
|
|
{$IMPLICITBUILD OFF}
|
2007-10-08 08:05:23 +00:00
|
|
|
{$DEFINE DEBUG}
|
|
|
|
|
|
|
|
|
|
requires
|
|
|
|
|
rtl,
|
|
|
|
|
vcl,
|
|
|
|
|
dbrtl,
|
|
|
|
|
vcldb,
|
2007-11-19 15:30:02 +00:00
|
|
|
frx11,
|
|
|
|
|
frxe11,
|
|
|
|
|
fs11,
|
2007-10-08 08:05:23 +00:00
|
|
|
JvAppFrmD11R,
|
|
|
|
|
JvCtrlsD11R,
|
2007-12-27 19:09:56 +00:00
|
|
|
Base,
|
|
|
|
|
dxBarD11,
|
|
|
|
|
dxBarExtItemsD11,
|
|
|
|
|
dxLayoutControlD11,
|
|
|
|
|
dxPScxCommonD11,
|
|
|
|
|
dxPsPrVwAdvD11,
|
|
|
|
|
dxPScxGrid6LnkD11;
|
2007-10-08 08:05:23 +00:00
|
|
|
|
|
|
|
|
contains
|
|
|
|
|
uEditorBase in 'uEditorBase.pas' {fEditorBase: TCustomEditor},
|
|
|
|
|
uEditorGridBase in 'uEditorGridBase.pas' {fEditorGridBase: TCustomEditor},
|
|
|
|
|
uEditorItem in 'uEditorItem.pas' {fEditorItem: TCustomEditor},
|
|
|
|
|
uEditorPreview in 'uEditorPreview.pas' {fEditorPreview: TCustomEditor},
|
|
|
|
|
uViewPreview in 'uViewPreview.pas' {frViewPreview: TFrame},
|
|
|
|
|
uViewBase in 'uViewBase.pas' {frViewBase: TFrame},
|
|
|
|
|
uEditorDBBase in 'uEditorDBBase.pas' {fEditorDBBase: TCustomEditor},
|
|
|
|
|
uEditorDBItem in 'uEditorDBItem.pas' {fEditorDBItem: TCustomEditor},
|
|
|
|
|
uViewBarraSeleccion in 'uViewBarraSeleccion.pas' {frViewBarraSeleccion: TFrame},
|
|
|
|
|
uViewGridBase in 'uViewGridBase.pas' {frViewGridBase: TFrame},
|
|
|
|
|
uViewFormaPago in 'uViewFormaPago.pas' {frViewFormaPago: TFrame},
|
|
|
|
|
uViewObservaciones in 'uViewObservaciones.pas' {frViewObservaciones: TFrame},
|
|
|
|
|
uViewTotales in 'uViewTotales.pas' {frViewTotales: TFrame},
|
|
|
|
|
uViewDetallesBase in 'uViewDetallesBase.pas' {frViewDetallesBase: TFrame},
|
|
|
|
|
uViewIncidencias in 'uViewIncidencias.pas' {frViewIncidencias: TFrame},
|
|
|
|
|
uViewDetallesDTO in 'uViewDetallesDTO.pas' {frViewDetallesDTO: TCustomView},
|
|
|
|
|
uViewDetallesGenerico in 'uViewDetallesGenerico.pas' {frViewDetallesGenerico: TFrame},
|
|
|
|
|
uViewGrid2Niveles in 'uViewGrid2Niveles.pas' {frViewGrid2Niveles: TFrame},
|
|
|
|
|
uEditorBasico in 'uEditorBasico.pas' {fEditorBasico},
|
|
|
|
|
uDialogBase in 'uDialogBase.pas' {fDialogBase},
|
|
|
|
|
uViewFiltroBase in 'uViewFiltroBase.pas' {frViewFiltroBase: TFrame},
|
2007-12-11 16:24:53 +00:00
|
|
|
uViewGrid in 'uViewGrid.pas' {frViewGrid: TFrame},
|
|
|
|
|
uViewRichEditor in 'uViewRichEditor.pas' {frViewRichEditor: TCustomView};
|
2007-10-08 08:05:23 +00:00
|
|
|
|
|
|
|
|
end.
|