2010-03-05 21:57:25 +00:00
|
|
|
{ registerrx unit
|
|
|
|
|
|
|
|
Copyright (C) 2005-2010 Lagunov Aleksey alexs@hotbox.ru and Lazarus team
|
|
|
|
original conception from rx library for Delphi (c)
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU Library General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
option) any later version with the following modification:
|
|
|
|
|
|
|
|
As a special exception, the copyright holders of this library give you
|
|
|
|
permission to link this library with independent modules to produce an
|
|
|
|
executable, regardless of the license terms of these independent modules,and
|
|
|
|
to copy and distribute the resulting executable under terms of your choice,
|
|
|
|
provided that you also meet, for each linked independent module, the terms
|
|
|
|
and conditions of the license of that module. An independent module is a
|
|
|
|
module which is not derived from or based on this library. If you modify
|
|
|
|
this library, you may extend this exception to your version of the library,
|
|
|
|
but you are not obligated to do so. If you do not wish to do so, delete this
|
|
|
|
exception statement from your 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 Library General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
|
|
along with this library; if not, write to the Free Software Foundation,
|
|
|
|
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
}
|
|
|
|
|
2007-08-09 21:36:59 +00:00
|
|
|
unit registerrx;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Classes, SysUtils, LResources, LazarusPackageIntf;
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
|
|
|
|
implementation
|
2007-10-30 11:43:24 +00:00
|
|
|
uses
|
2010-08-11 18:38:19 +00:00
|
|
|
PropEdits, dbdateedit, dbcurredit, rxlookup, folderlister, rxmemds, duallist,
|
2007-08-09 21:36:59 +00:00
|
|
|
curredit, rxswitch, rxdice, rxdbcomb, rxtoolbar, rxxpman, PageMngr, RxAppIcon,
|
2007-08-28 21:55:23 +00:00
|
|
|
Dialogs, ComponentEditors, seldsfrm, DBPropEdits, DB, rxctrls, RxLogin,
|
2008-02-19 15:55:07 +00:00
|
|
|
RxCustomChartPanel, AutoPanel, pickdate, rxconst, tooledit, rxclock,
|
2010-03-02 17:47:14 +00:00
|
|
|
rxceEditLookupFields, rxpopupunit, rxspin, RxTimeEdit, RxVersInfo,
|
2010-08-22 19:37:24 +00:00
|
|
|
RxAboutDialog, RxViewsPanel;
|
2007-08-09 21:36:59 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
|
|
|
|
|
2008-05-14 18:28:14 +00:00
|
|
|
{ TPopUpColumnFieldProperty }
|
|
|
|
|
|
|
|
TPopUpColumnFieldProperty = class(TFieldProperty)
|
|
|
|
public
|
|
|
|
procedure FillValues(const Values: TStringList); override;
|
|
|
|
end;
|
|
|
|
|
|
|
|
{ TPopUpColumnFieldProperty }
|
|
|
|
|
|
|
|
procedure TPopUpColumnFieldProperty.FillValues(const Values: TStringList);
|
|
|
|
var
|
|
|
|
Column: TPopUpColumn;
|
|
|
|
DataSource: TDataSource;
|
|
|
|
begin
|
|
|
|
Column:=TPopUpColumn(GetComponent(0));
|
|
|
|
if not (Column is TPopUpColumn) then exit;
|
|
|
|
DataSource := TPopUpFormColumns(Column.Collection).PopUpFormOptions.DataSource;
|
|
|
|
if Assigned(DataSource) and Assigned(DataSource.DataSet) then
|
|
|
|
DataSource.DataSet.GetFieldNames(Values);
|
|
|
|
end;
|
|
|
|
|
2007-08-09 21:36:59 +00:00
|
|
|
|
2010-03-05 21:57:25 +00:00
|
|
|
{$IFDEF USE_TRxAppIcon}
|
2007-08-09 21:36:59 +00:00
|
|
|
procedure RegisterRxAppIcon;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxAppIcon]);
|
|
|
|
end;
|
2010-03-05 21:57:25 +00:00
|
|
|
{$ENDIF}
|
|
|
|
{$IFDEF USE_TRXXPManifest}
|
2007-08-09 21:36:59 +00:00
|
|
|
procedure RegisterRxXPMan;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRXXPManifest]);
|
|
|
|
end;
|
2010-03-05 21:57:25 +00:00
|
|
|
{$ENDIF}
|
2007-08-09 21:36:59 +00:00
|
|
|
|
|
|
|
procedure RegisterPageMngr;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TPageManager]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterUnitDBDateEdit;
|
|
|
|
begin
|
2010-08-11 18:38:19 +00:00
|
|
|
RegisterComponents('RX DBAware',[TDBDateEdit, TRxDBCalcEdit, TRxDBCurrEdit]);
|
2007-08-09 21:36:59 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterRXLookup;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX DBAware',[TRXLookupEdit, TRxDBLookupCombo]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterRxMemDS;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX DBAware',[TRxMemoryData]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterRxDBComb;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX DBAware',[TRxDBComboBox]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterDualList;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TDualListDialog]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterCurrEdit;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TCurrencyEdit]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterRXSwitch;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxSwitch]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterRXDice;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxDice]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterFolderLister;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TFolderLister]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterRxToolBar;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TToolPanel]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterRxCtrls;
|
|
|
|
begin
|
2008-02-19 15:55:07 +00:00
|
|
|
RegisterComponents('RX',[TRxLabel, TSecretPanel, TRxSpeedButton]);
|
2007-08-09 21:36:59 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
2007-08-10 22:15:51 +00:00
|
|
|
procedure RegisterChartPanel;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxChart]);
|
|
|
|
end;
|
2007-08-09 21:36:59 +00:00
|
|
|
|
2007-08-28 21:55:23 +00:00
|
|
|
procedure RegisterAutoPanel;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TAutoPanel]);
|
|
|
|
end;
|
2007-08-09 21:36:59 +00:00
|
|
|
|
2007-10-17 10:19:26 +00:00
|
|
|
procedure RegisterPickDate;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxCalendarGrid]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure RegisterToolEdit;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxDateEdit]);
|
|
|
|
end;
|
|
|
|
|
2008-02-19 15:55:07 +00:00
|
|
|
procedure RegisterRxClock;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxClock]);
|
|
|
|
end;
|
|
|
|
|
2009-01-26 21:09:40 +00:00
|
|
|
procedure RegisterRxSpin;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxSpinButton, TRxSpinEdit]);
|
|
|
|
end;
|
|
|
|
|
2009-02-11 16:34:36 +00:00
|
|
|
procedure RegisterRxTimeEdit;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxTimeEdit]);
|
|
|
|
end;
|
|
|
|
|
2009-02-25 19:31:17 +00:00
|
|
|
procedure RegisterRxLogin;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxLoginDialog]);
|
|
|
|
end;
|
|
|
|
|
2010-02-16 20:20:22 +00:00
|
|
|
procedure RegisterRxVersInfo;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxVersionInfo]);
|
|
|
|
end;
|
|
|
|
|
2010-03-02 17:47:14 +00:00
|
|
|
procedure RegisterRxAboutDialog;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxAboutDialog]);
|
|
|
|
end;
|
|
|
|
|
2010-08-22 19:37:24 +00:00
|
|
|
procedure RegisterRxViewsPanel;
|
|
|
|
begin
|
|
|
|
RegisterComponents('RX',[TRxViewsPanel]);
|
|
|
|
end;
|
|
|
|
|
2007-08-09 21:36:59 +00:00
|
|
|
procedure Register;
|
|
|
|
begin
|
|
|
|
//RX
|
|
|
|
RegisterUnit('folderlister', @RegisterFolderLister);
|
|
|
|
RegisterUnit('duallist', @RegisterDualList);
|
|
|
|
RegisterUnit('curredit', @RegisterCurrEdit);
|
|
|
|
RegisterUnit('rxswitch', @RegisterRXSwitch);
|
|
|
|
RegisterUnit('rxdice', @RegisterRXDice);
|
2010-03-05 21:57:25 +00:00
|
|
|
{$IFDEF USE_TRXXPManifest}
|
2007-08-09 21:36:59 +00:00
|
|
|
RegisterUnit('RxXPMan', @RegisterRxXPMan);
|
2010-03-05 21:57:25 +00:00
|
|
|
{$ENDIF}
|
2007-08-09 21:36:59 +00:00
|
|
|
RegisterUnit('PageMngr', @RegisterPageMngr);
|
|
|
|
RegisterUnit('rxtoolbar', @RegisterRxToolBar);
|
2010-03-05 21:57:25 +00:00
|
|
|
{$IFDEF USE_TRxAppIcon}
|
2007-08-09 21:36:59 +00:00
|
|
|
RegisterUnit('rxappicon', @RegisterRxAppIcon);
|
2010-03-05 21:57:25 +00:00
|
|
|
{$ENDIF}
|
2007-08-09 21:36:59 +00:00
|
|
|
RegisterUnit('rxctrls', @RegisterRxCtrls);
|
2007-08-10 22:15:51 +00:00
|
|
|
RegisterUnit('RxCustomChartPanel', @RegisterChartPanel);
|
2007-10-17 10:19:26 +00:00
|
|
|
RegisterUnit('AutoPanel', @RegisterAutoPanel);
|
|
|
|
RegisterUnit('pickdate', @RegisterPickDate);
|
|
|
|
RegisterUnit('tooledit', @RegisterToolEdit);
|
2008-02-19 15:55:07 +00:00
|
|
|
RegisterUnit('rxclock', @RegisterRxClock);
|
2009-01-26 21:09:40 +00:00
|
|
|
RegisterUnit('rxspin', @RegisterRxSpin);
|
2009-02-11 16:34:36 +00:00
|
|
|
RegisterUnit('RxTimeEdit', @RegisterRxTimeEdit);
|
2009-02-25 19:31:17 +00:00
|
|
|
RegisterUnit('RxLogin', @RegisterRxLogin);
|
2010-02-16 20:20:22 +00:00
|
|
|
RegisterUnit('RxVersInfo', @RegisterRxVersInfo);
|
2010-03-02 17:47:14 +00:00
|
|
|
RegisterUnit('RxAboutDialog', @RegisterRxAboutDialog);
|
2010-08-22 19:37:24 +00:00
|
|
|
RegisterUnit('RxViewsPanel', @RegisterRxViewsPanel);
|
2007-10-17 10:19:26 +00:00
|
|
|
|
2007-08-09 21:36:59 +00:00
|
|
|
//RX DBAware
|
|
|
|
RegisterUnit('dbdateedit', @RegisterUnitDBDateEdit);
|
|
|
|
RegisterUnit('rxlookup', @RegisterRXLookup);
|
|
|
|
RegisterUnit('rxmemds', @RegisterRxMemDS);
|
|
|
|
RegisterUnit('rxdbcomb', @RegisterRxDBComb);
|
2007-08-28 21:55:23 +00:00
|
|
|
|
2007-08-09 21:36:59 +00:00
|
|
|
//Component Editors
|
|
|
|
RegisterComponentEditor(TRxMemoryData, TMemDataSetEditor);
|
|
|
|
//
|
2008-02-19 15:55:07 +00:00
|
|
|
|
2008-05-14 18:28:14 +00:00
|
|
|
RegisterPropertyEditor(TypeInfo(string), TPopUpColumn, 'FieldName', TPopUpColumnFieldProperty);
|
2007-10-30 11:43:24 +00:00
|
|
|
RegisterCEEditLookupFields;
|
2007-08-09 21:36:59 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
initialization
|
|
|
|
{$i rx.lrs}
|
|
|
|
end.
|