git-svn-id: https://192.168.0.254/svn/Proyectos.AbetoDesign_FactuGES/trunk@2 93f398dd-4eb6-7a46-baf6-13f46f578da2
29 lines
641 B
ObjectPascal
29 lines
641 B
ObjectPascal
unit uViewBarraSeleccion;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, uViewBase, StdCtrls, ActnList, ExtCtrls, JvExStdCtrls, JvButton,
|
|
JvCtrls, JvFooter, JvExExtCtrls, JvComponent, JvExtComponent;
|
|
|
|
type
|
|
TfrViewBarraSeleccion = class(TfrViewBase)
|
|
JvFooter1: TJvFooter;
|
|
bSeleccionar: TJvFooterBtn;
|
|
bCancelar: TJvFooterBtn;
|
|
BarraSeleccionActionList: TActionList;
|
|
actSeleccionar: TAction;
|
|
actCancelar: TAction;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|