git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_FactuGES/trunk@5 9a1d36f3-7752-2d40-8ccb-50eb49674c68
38 lines
751 B
ObjectPascal
38 lines
751 B
ObjectPascal
unit uViewBarraSeleccion;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, uViewBase, StdCtrls, ActnList, ExtCtrls;
|
|
|
|
type
|
|
TfrViewBarraSeleccion = class(TfrViewBase)
|
|
pnlSeleccion: TPanel;
|
|
bSeleccionar: TButton;
|
|
bCancelar: TButton;
|
|
ActionListSeleccion: TActionList;
|
|
actSeleccionar: TAction;
|
|
actCancelar: TAction;
|
|
procedure actCancelarExecute(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
frViewBarraSeleccion: TfrViewBarraSeleccion;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
procedure TfrViewBarraSeleccion.actCancelarExecute(Sender: TObject);
|
|
begin
|
|
inherited;
|
|
//
|
|
end;
|
|
|
|
end.
|