Стартовый пул

This commit is contained in:
2024-04-02 08:46:59 +03:00
parent fd57fffd3a
commit 3bb34d000b
5591 changed files with 3291734 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
rm rx.lrs
rm rx.res
/usr/local/share/lazarus/tools/lazres rx.res TRxDateEdit_150.png TRxDateEdit_200.png TRxDateEdit.png \
TRxLookupEdit_150.png TRxLookupEdit_200.png TRxLookupEdit.png \
TRxDBGrid.png TRxDBGrid_150.png TRxDBGrid_200.png \
TRxDBGridExportPDF.png TRxDBGridExportPDF_150.png TRxDBGridExportPDF_200.png \
TRxDBGridFooterTools.png TRxDBGridFooterTools_150.png TRxDBGridFooterTools_200.png \
TRxDBCalcEdit.png TRxDBCalcEdit_150.png TRxDBCalcEdit_200.png \
TRxDBColorBox.png TRxDBColorBox_150.png TRxDBColorBox_200.png \
TRxDBCurrEdit.png TRxDBCurrEdit_150.png TRxDBCurrEdit_200.png \
TRxMemoryData.png TRxMemoryData_150.png TRxMemoryData_200.png \
TRxDBVerticalGrid.png TRxDBVerticalGrid_150.png TRxDBVerticalGrid_200.png \
TRxDBTrackBar.png TRxDBTrackBar_150.png TRxDBTrackBar_200.png \
TRxDBTimeEdit.png TRxDBTimeEdit_150.png TRxDBTimeEdit_200.png \
TRxDBSpinEdit.png TRxDBSpinEdit_150.png TRxDBSpinEdit_200.png \
TRxDBDateEdit.png TRxDBDateEdit_150.png TRxDBDateEdit_200.png \
TRxDBComboBox.png TRxDBComboBox_150.png TRxDBComboBox_200.png \
TRxDBRadioGroup.png TRxDBRadioGroup_150.png TRxDBRadioGroup_200.png \
TRxDBProgressBar.png TRxDBProgressBar_150.png TRxDBProgressBar_200.png \
TRxDBLookupCombo.png TRxDBLookupCombo_150.png TRxDBLookupCombo_200.png \
TDualListDialog.xpm TFolderLister.xpm TCURRENCYEDIT.xpm TRXSWITCH.xpm TRXDICE.xpm ttoolpanel.xpm TPAGEMANAGER.xpm TRXAPPICON.xpm TSECRETPANEL.xpm TRXLABEL.xpm tautopanel.xpm TRxCalendarGrid.xpm TRxClock.png TRxSpeedButton.png TRxSpinButton.png TRxSpinEdit.png \
TRxTimeEdit.png \
TRxLoginDialog.png TRxVersionInfo.png TRxAboutDialog.png \
TRxViewsPanel.png \
TRxHistoryNavigator.png TRxCloseFormValidator.png TRxIniPropStorage.png TRxDateRangeEdit.png TRxMDICloseButton.png TRxMDIPanel.png TRxMDITasks.png TRxRangeSelector.png

View File

@@ -0,0 +1,62 @@
{ RxSortFBDataSet unit
Copyright (C) 2005-2017 Lagunov Aleksey alexs@yandex.ru
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.
}
unit RxSortFBDataSet;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
type
TRxSortFBDataSet = class(TComponent)
private
{ Private declarations }
protected
{ Protected declarations }
public
{ Public declarations }
published
{ Published declarations }
end;
procedure Register;
implementation
uses exsortfb;
procedure Register;
begin
RegisterComponents('RX DBAware',[TRxSortFBDataSet]);
end;
end.