git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioCarnicero_ProGestion/trunk@4 1b8572a8-2d6b-b84e-8c90-20ed86fa4eca
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.
|