text stringlengths 14 6.51M |
|---|
{================================================================================
Copyright (C) 1997-2002 Mills Enterprise
Unit : rmScrollableControl
Purpose : Finally got tired of having to implement a scrolling control each time
I wanted one. So here is a base control....
Date : 04-14-2002... |
unit GABasicFunctions;
interface
function PowerBase2(_exponent: integer): integer;
implementation
function PowerBase2(_exponent: integer): integer;
var
i : integer;
begin
Result := 1;
if _exponent > 0 then
begin
for i := 1 to _exponent do
begin
Result := Result * 2;... |
unit BCEditor.Language;
interface
resourcestring
{ BCEditor.CompletionProposal }
SBCEditorCannotInsertItemAtPosition = 'Cannot insert item at position %d.';
{ BCEditor.Editor.Base }
SBCEditorScrollInfoTopLine = 'Top line: %d';
SBCEditorScrollInfo = '%d - %d';
SBCEditorSearchStringNotFound = 'S... |
unit u2DUtils;
interface
uses
Windows, Math;
function RectInRect(ROuter: TRect; RInner: TRect): Boolean;
function RectSquare(R: TRect): Double;
function RectInRectPercent(ROuter: TRect; RInner: TRect): Byte;
function RectIntersectWithRectPercent(ROuter: TRect; RInner: TRect): Byte;
function MoveRect(R: ... |
// Copyright (c) 2009, ConTEXT Project Ltd
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
//
// Redistributions of source code must retain the above copyright notice, this list of condition... |
unit ThPicture;
interface
uses
SysUtils, Classes, Graphics,
ThChangeNotifier;
type
TThCustomPicture = class(TThChangeNotifier)
public
class procedure SetPictureFolders(
const inPublishFolder, inProjectFolder: string);
private
FHeight: Integer;
FPictureData: TPicture;
FPicturePath: str... |
{***************************************************************************}
{ }
{ Delphi Package Manager - DPM }
{ }
{ ... |
// ************************************************************************
// ***************************** CEF4Delphi *******************************
// ************************************************************************
//
// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based
// browser in D... |
(* WinGraph: HDO 1995-2004, JH 2003, GHO 2010, HDO 2011
--------
Simple module for generating Windows graphics using Borland Pascal
or FreePascal (in Turbo Pascal mode: -Mtp).
==========================================================================*)
UNIT WinGraph;
INTERFACE
USES
{$... |
unit model_implementation;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, math,gdata, rdata, surface, idrisi_proc, lateralredistribution,
carboncycling,variables;
procedure Carbon;
Procedure export_txt;
procedure test_AD;
implementation
procedure test_AD;
var
C12_profile: array of sin... |
unit FDiskExport;
(*====================================================================
Progress info window for exporting disks to text format
======================================================================*)
interface
uses
{$ifdef mswindows}
WinTypes,WinProcs,
{$ELSE}
LCLIntf, LCLType, ... |
unit frmSelectHashCypher;
// Description:
// By Sarah Dean
// Email: sdean12@sdean12.org
// WWW: http://www.SDean12.org/
//
// -----------------------------------------------------------------------------
//
interface
uses
Classes, Controls, Dialogs,
Forms, Graphics, Grids,
Menus, Mess... |
unit Unit1;
interface
uses
FMX.Forms, FMX.Edit, FMX.StdCtrls, System.Sensors.Components, FMX.Controls,
System.Classes,
FMX.Types, System.Sensors,
{$IFDEF MSWINDOWS}
Winapi.ShellAPI, Winapi.Windows;
{$ENDIF MSWINDOWS}
{$IFDEF POSIX}
Posix.Stdlib;
{$ENDIF POSIX}
type
TForm1 = class(TForm)
... |
unit ufrmBarangCompetitor;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ufrmMasterBrowse, StdCtrls, ExtCtrls, ActnList,
System.Actions, Math, uConn, cxGraphics, cxControls, cxLookAndFeels,
cxLookAndFeelPainters, dxBarBuiltInMenu, cxStyles, cxCustomData, cx... |
unit uPortableClasses;
interface
uses
Generics.Collections,
System.Classes,
System.SyncObjs,
VCL.Graphics,
uMemory;
const
DEFAULT_PORTABLE_DEVICE_NAME = 'Unknown Device';
EMPTY_PATH = '?\\NULL';
type
TDeviceType = (dtCamera, dtVideo, dtPhone, dtOther);
TPortableItemType = (piStora... |
unit uFrmLanguage;
interface
uses
Winapi.Windows,
Winapi.Messages,
System.SysUtils,
System.Classes,
System.StrUtils,
System.Win.Registry,
Vcl.Graphics,
Vcl.Controls,
Vcl.Forms,
Vcl.Dialogs,
Vcl.StdCtrls,
Vcl.Imaging.pngimage,
Dmitry.Utils.System,
uDBForm,
uInstallU... |
{$I-,Q-,R-,S-}
{Problema 12: Ensamblaje DNA [Competencia Woburn, 2005]
El Granjero Juan ha encontrado la secuencia DNA de su vaca productora
de leche campeona, las secuencias DNA de Bessie son listas ordenadas
(cadenas) conteniendo las letras 'A', 'C', 'G', y 'T'.
Como es usual para secuencias DNA, los resultados ... |
unit UntMainMenu;
interface
uses
Forms, Classes, Dialogs, Controls, StdCtrls, UntRestClient;
type
TMainForm = class(TForm)
btnLogin: TButton;
btnObterEscritorio: TButton;
procedure FormCreate(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure btnLoginC... |
unit CouponCls;
interface
uses contnrs, SysUtils;
type
TCoupon = class
private
FIdPromo: integer; // = IdDiscont
FIdPreinventory: integer;
FIdModel: integer;
FRewardAmount: double;
FAmountType: string;
FIsFree: boolean;
FCashierShouldWarn: boolean;
FNeedsPhysic... |
unit SDL2_SimpleGUI_Element;
{:< The Element Class Unit and its supporting types }
{ Simple GUI is a generic SDL2/Pascal GUI library by Matthias J. Molski,
get more infos here:
https://github.com/Free-Pascal-meets-SDL-Website/SimpleGUI.
It is based upon LK GUI by Lachlan Kingsford for SDL 1.2/Free Pascal,
g... |
unit DebugMessageSaver;
interface
uses
Classes, Forms, SysUtils, DateUtils;
type
TDebugMessageSaver = class
private
FNeedSave: Boolean;
FSaveFilesPath: AnsiString;
FStreamLog: TFileStream;
FMaxSize: integer;
procedure DeleteFiles(const Path, ext: AnsiString;
const days:... |
unit XLSReadII2;
{
********************************************************************************
******* XLSReadWriteII V2.00 *******
******* *******
******* Copyright(C) 1999,2006 Lars Arvidsson, Axolot Dat... |
unit Results;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
const
SOURCE_FILE_NAME = 'E:\Универ\2 course\IT\Лабы\лаба 1_Виженер\kasiski\Win32\Debug\sourceText.txt';
ENCIPHERED_TEXT_FILE_NAM... |
unit IdIOHandler;
interface
{$I IdCompilerDefines.inc}
uses
Classes,
IdException,
IdAntiFreezeBase, IdBuffer, IdBaseComponent, IdComponent, IdGlobal, IdExceptionCore,
IdIntercept, IdResourceStringsCore, IdStream;
const
GRecvBufferSizeDefault = 32 * 1024;
GSendBufferSizeDefault = 32 * 1024;
IdMaxLine... |
unit uTransferFile;
interface
uses Classes, SysUtils;
type
TOnServerStatus = procedure (Online : Boolean) of Object;
TOnFinish = procedure of Object;
TTransferFile = class
private
FRemoteWorkingDir: String;
FLocalWorkingDir: String;
FFileList: String;
FIDCashReg: Integer;
FTh... |
unit BsEditStreet;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, cxLookAndFeelPainters, StdCtrls, cxButtons,
FIBDatabase, pFIBDatabase, cxMaskEdit, cxButtonEdit, cxControls,
cxContainer, cxEdit, cxTextEdit, ExtCtrls, cxLabel, DB, FIBDataSet,
pFIBDataSet, ... |
unit ULancamentoPadraoVO;
interface
uses Atributos, Classes, Constantes, Generics.Collections, SysUtils, UGenericVO,
UPlanoContasVO, UContasReceberVO, UContasPagarVO,UhistoricoVO, ULoteVO, UCondominioVO;
type
[TEntity]
[TTable('LancamentoPadrao')]
TLancamentoPadraoVO = class(TGenericVO)
private
FidLctoPa... |
{*******************************************************************************
lazbbosversionbase : Base functions and defintionsfor lazbbOsVersion component
sdtp - bb - september 2022
********************************************************************************}
unit lazbbosversionbase;
{$mode ObjFPC}{$H+}
in... |
unit AppForm;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, MainU, Vcl.StdCtrls;
type
TForm1 = class(TForm)
btnStart: TButton;
btnStop: TButton;
lblPort: TLabel;
procedure FormCreate(Sender:... |
unit FDiskPrint;
(*====================================================================
Progress window for printing disks, implements the printing in the
Run procedure
======================================================================*)
interface
uses
SysUtils,
{$ifdef mswindows}
WinTypes,WinPro... |
unit RolesForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ComCtrls, ToolWin, Grids, DBGrids, ActnList, IBDatabase, MainDM, Db,
AddRole, Role, Placemnt, cxStyles,
cxCustomData, cxGraphics, cxFilter, cxData, cxDataStorage, cxEdit,
cxDBData, cxGridCustomTableView,... |
PROGRAM rationalcalc;
TYPE
Rational = RECORD
num, denom: INTEGER;
END;
(* Function to get the greatest common dvisor *)
FUNCTION ggT (a,b : INTEGER) : INTEGER;
VAR remainder: INTEGER;
BEGIN
WHILE NOT (b=0) DO
BEGIN
remainder := a MOD b;
a := b;
b := remainder;
END;
ggT :=a;
E... |
unit IntXZeroandOneTest;
{$mode objfpc}{$H+}
interface
uses
fpcunit,
testregistry,
uIntX;
type
{ TTestIntXZeroandOne }
TTestIntXZeroandOne = class(TTestCase)
published
procedure IsCustomTIntXZeroEqualToZero();
procedure IsCustomTIntXZeroEqualToNegativeZero();
procedure IsCustomTIntXZero... |
program plus_min;
uses SysUtils;
const powers: array[0..9] of cardinal = (1, 10, 100, 1000, 10000,
100000, 1000000, 10000000,
100000000, 1000000000);
var history: array[1..9] of char;
idx: integer;
// Convert the performed operations i... |
unit PrevendaService;
interface
uses BasicService, ViewPrevendaVO, PrevendaVO, System.SysUtils, Vcl.ComCtrls,
Generics.Collections, System.StrUtils, ProdutoVO, PrevendaItemVO, Data.DB,
VendedorVO, Datasnap.DBClient, ViewPrevendaItemVO, ufrmBase, System.Math;
type
TPrevendaService = class(TBasicService)
cla... |
unit untClasses;
interface
uses
Windows, Messages, SysUtils, StrUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, XiPanel, Menus, DB, ADODB;
const
LIVRE : integer = 1;
ATIVO : integer = 1;
OCUPADO : integer = 2;
INATIVO : integer = 3;
// ==========... |
unit uLockBox_RSA_TestCases;
interface
uses TestFramework, uTPLb_Hash, uTPLb_CryptographicLibrary, Classes,
uTPLb_Codec, uTPLb_StreamCipher, uTPLb_HugeCardinal,
uTPLb_MemoryStreamPool;
type
TRSA_TestCase = class( TTestCase)
protected
FPool: IMemoryStreamPool;
FwasAborted: boolean;
FdoAbort: boo... |
program iLbc;
{$APPTYPE CONSOLE}
{$MODE Delphi}
uses
SysUtils, Interfaces,
iLBC_define in 'iLBC_define.pas',
constants in 'constants.pas',
C2Delphi_header in 'C2Delphi_header.pas',
syntFilters in 'syntFilters.pas',
lsf in 'lsf.pas',
anaFilters in 'anaFilters.pas',
createCB in 'createCB.pas'... |
unit sshsha;
interface
uses sshhash;
type
SHA_CTX = packed record
Data: array [0..23] of integer;
end;
PSHA_CTX = ^SHA_CTX;
TSSHSHA1 = class(TSSHHash)
protected
sha1: SHA_CTX;
function GetDigLen: integer; override;
public
constructor Create; override;
procedure Assign... |
(*
Category: SWAG Title: DATE & TIME ROUTINES
Original name: 0032.PAS
Description: Day of the Week
Author: MARK LAI
Date: 01-27-94 11:53
*)
{
> I am currently trying to create a calendar that will ask the
> user to input a year and month. The program should print out that
> particular month. I believe I h... |
{*******************************************************************************
Title: iTEC-SOFTWARE
Description: VO relational the table [PESSOA]
The MIT License ... |
unit MainForm;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, ThCanvasEditor,
FMX.Objects, FMX.ExtCtrls, ThothController, ThCanvasController, ThTypes,
FMX.Edit, FMX.Controls.Presentation, FMX.StdCtrls, FMX.Layouts;
type
Tfr... |
unit OrcamentoOperacaoExcluir.Controller;
interface
uses Orcamento.Controller.interf, Orcamento.Model.interf,
OrcamentoItens.Model.interf, TESTORCAMENTOITENS.Entidade.Model, Generics.Collections,
TESTORCAMENTO.Entidade.Model, System.SysUtils, FacadeController, ormbr.factory.interfaces;
type
TOrcamentoOperacaoE... |
unit BCEditor.Editor.Bookmarks;
interface
uses
Vcl.Controls, System.Classes, System.Contnrs, BCEditor.Consts;
type
TBCEditorBookmark = class
protected
FChar: Integer;
FData: Pointer;
FEditor: TCustomControl;
FImageIndex: Integer;
FIndex: Integer;
FInternalImage: Boolean;
... |
// Adobe Font Metrics and FontForge's Spline Font Database
unit fi_afm_sfd;
interface
implementation
uses
fi_common,
fi_info_reader,
line_reader,
classes,
sysutils;
type
TFontFormat = (
AFM,
SFD
);
const
FONT_IDENT: array [TFontFormat] of record
name,
sign: String;
end = (
(... |
unit uPhotoShelf;
interface
uses
System.Classes,
System.SysUtils,
UnitDBDeclare,
uMemory,
uCollectionEvents,
uDBForm,
uSettings,
uRWLock,
uProgramStatInfo,
uLogger;
type
TPhotoShelf = class(TObject)
private
FSync: IReadWriteSync;
FItems: TStringList;
funct... |
unit UShowProgressThread;
interface
uses
Classes, Forms,pFibDataSet,cxTextEdit,ComCtrls;
type
TShowProgressThread = class(TThread)
private
{ Private declarations }
Form:TForm;
PBStep:Integer;
PB:TProgressBar;
protected
procedure Execute; override;
public
procedure UpdatePB;
proc... |
// -------------------------------------------------------
//
// This file was generated using Parse::Easy v1.0 alpha.
//
// https://github.com/MahdiSafsafi/Parse-Easy
//
// DO NOT EDIT !!! ANY CHANGE MADE HERE WILL BE LOST !!!
//
// -------------------------------------------------------
unit CalcLexer;
interface
... |
unit EDSUtil;
{$D-}
{$L-}
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Controls, Graphics, Forms,
TabNotBk, Menus, StdCtrls, ExtCtrls;
type
TEnterEdit = class(TEdit)
private
{ Private declarations }
protected
{ Protected declarations }
procedure KeyPress(var Key: Char... |
{***************************************************************************}
{ }
{ DUnitX }
{ }
{ ... |
unit Forms.Main;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, VCL.TMSFNCTypes, VCL.TMSFNCUtils, VCL.TMSFNCGraphics,
VCL.TMSFNCGraphicsTypes, VCL.TMSFNCMapsCommonTypes, VCL.TMSFNCCustomControl, VCL.TMSFNCWebB... |
unit l4l_print;
{
Lua4Lazarus
sample:
License: New BSD
Copyright(c)2010- Malcome@Japan All rights reserved.
ToDo:
}
{$mode objfpc}{$H+}
{.$DEFINE USE_AGG}
interface
uses
Classes, SysUtils, contnrs, graphics, printers, types,
lua54, l4l_object;
type
{ TLuaPrint }
... |
{*******************************************************}
{ }
{ CodeGear Delphi Runtime Library }
{ Copyright(c) 2016-2019 Embarcadero Technologies, Inc. }
{ All rights reserved }
{ ... |
unit uMeter645Packet;
interface
uses
SysUtils, StrUtils;
type
TMeter645ControlCode = class
private
FValue: Byte;
function GetAsHexString: AnsiString;
function GetGongNengma: Byte;
function GetHasHouxuzheng: Boolean;
function GetIsFachu: Boolean;
function GetIsFanhui: Bool... |
unit UFilesIntegration;
interface
uses
UBookList, UVisitorList, UBorrowList;
implementation
uses SysUtils;
// Пути к файлам записей
const
BOOK_PATH = 'books.dat';
VISITOR_PATH = 'visitors.dat';
BORROW_PATH = 'borrows.dat';
type
TBookFile = file of TBook;
TVisitorFile = file of TVisitor;
TBorrowFile ... |
unit clsQuiz;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, clsHouse;
type
TQuiz = class
private
fArrHouses : array[1..3] of THouse;
fGrade : integer;
fArrAnswers : array[1..40] of string;
fArrQuestions : array[1..40] of strin... |
program CoverageTester;
{$mode delphi}{$h+}
uses
QEMUVersatilePBCoverage,GlobalConfig,Platform,Logging,Serial,SysUtils,Classes,CoverageMap;
procedure StartLogging;
begin
LOGGING_INCLUDE_COUNTER:=False;
SERIAL_REGISTER_LOGGING:=True;
SerialLoggingDeviceAdd(SerialDeviceGetDefault);
SERIAL_REGISTER_LOGGING:=False;
... |
unit uMenuManagement;
interface
{$M+}
uses SysUtils, Controls, Classes, Menus, ActnList, DB;
type
TMenuManagement = Class(TObject)
private
FUserId : Integer;
FUserUnt : Integer;
arrMenuId: array of Integer;
procedure setUserId(value: Integer);
procedure setUserUnt(value: Integer);
functi... |
unit Gar_Model_Edit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, gar_DM, cxLookAndFeelPainters, cxMaskEdit,
cxDropDownEdit, cxDBEdit, DB, FIBDataSet, pFIBDataSet, StdCtrls,
cxButtons, cxControls, cxContainer, cxEdit, cxTextEdit, gar_Type... |
unit Win32.EVR9;
// Checked (and Updated) for SDK 10.0.17763.0 on 2018-12-04
{$IFDEF FPC}
{$mode delphi}
{$ENDIF}
interface
uses
Windows, Classes, SysUtils, ActiveX, Direct3D9,
Win32.MFObjects, Win32.MFTransform, Win32.EVR,
Win32.DXVA2API;
const
IID_IEVRVideoStreamControl: TGUID = '{d0cfe38b-93e7-4... |
unit frmCPBUploadColor;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, ComCtrls, StdCtrls, Buttons, DB, DBClient, MakeSQL,iniFiles,
cxStyles, cxCustomData, cxGraphics, cxFilter, cxData, cxDataStorage,
cxEdit, cxDBData, cxGridLevel, cxClasses, cxCon... |
unit Bluetooth.Printer;
interface
uses
System.SysUtils, System.Bluetooth, System.Bluetooth.Components;
type
EBluetoothPrinter = class(Exception);
TBluetoothPrinter = class(TBluetooth)
private
FSocket: TBluetoothSocket;
FPrinterName: String;
function ConectarImpressora(ANomeDevice: String): Boole... |
{
Clever Internet Suite Version 6.2
Copyright (C) 1999 - 2006 Clever Components
www.CleverComponents.com
}
unit clImap4;
interface
{$I clVer.inc}
uses
Classes, clMC, clMailMessage, clTcpClient, clImapUtils;
type
TclCustomImap4 = class(TclCustomMail)
private
FCommandTag: Integer;
FMailBoxSeparat... |
unit DPM.Controls.GroupButton;
interface
uses
WinApi.Messages,
System.Classes,
Vcl.Graphics,
Vcl.Controls,
Vcl.StdCtrls;
const
CM_ACTIVE_CHANGED = CM_BASE + 501;
type
TDPMGroupButton = class(TCustomLabel)
private
FActive : boolean;
FHover : boolean;
FActiveColor : TColor;
FHoverColor... |
//////////////////////////////////////////////////////////////////////////
// SimplePlay sample
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PU... |
Program json;
Uses SysUtils;
{$INCLUDE node.pas}
{$INCLUDE parser.pas}
Type
TestResult = (Pass, Fail);
TestFn = Function () : TestResult;
Test = Class
Name : String;
Fn : TestFn;
Constructor Init(n : String; f: TestFn);
End;
Constructor Test.Init(n : String; f: TestFn);
Begin
Name := n;
... |
unit uModCreditCard;
interface
uses
uModApp, uModRekening;
type
TModCreditCard = class(TModApp)
private
FCARD_CHARGE: Double;
FCARD_CODE: string;
FCARD_DISCOUNT: Double;
FCARD_IS_ACTIVE: Integer;
FCARD_IS_CASHBACK: Integer;
FCARD_IS_CREDIT: Integer;
FCARD_IS_KRING: Integer;
FCAR... |
unit Demo.ScatterChart.Sample;
interface
uses
System.Classes, Demo.BaseFrame, cfs.GCharts;
type
TDemo_ScatterChart_Sample = class(TDemoBaseFrame)
public
procedure GenerateChart; override;
end;
implementation
procedure TDemo_ScatterChart_Sample.GenerateChart;
var
Chart: IcfsGChartProducer; //Defined a... |
unit AS_ShellUtils;
{
Arisesoft Shell Pack
Copyright (c) 1996-2001 Arisesoft
For conditions of distribution and use, see LICENSE.
Shell Utilities
}
{$I AS_Ver.inc}
interface
uses
Windows, ShlObj, ActiveX, CommCtrl;
{ Additional registry entries available in shell version at least 4.7 for
special paths... |
// Windows' FNT/FON
unit fi_winfnt;
interface
implementation
uses
fi_common,
fi_info_reader,
fi_utils,
classes,
streamex,
sysutils;
const
MZ_MAGIC = $5a4d;
NE_MAGIC = $454e; // New Executable
PE_MAGIC = $4550; // Portable Executable
{
Reading of PE executables is not implemented yet, sin... |
unit FMX.ISFloatMenu;
interface
uses
System.SysUtils, System.Classes, System.Types, System.UITypes, System.DateUtils, System.Generics.Collections, FMX.Utils, FMX.Types, FMX.Controls, FMX.Objects, FMX.StdCtrls, FMX.Graphics, FMX.MultiResBitmap,
FMX.Ani, FMX.Effects, System.Actions, FMX.ActnList, FMX.Layouts, FMX.F... |
unit uPaymentCard;
interface
uses
ADODB, uMRTraceControl, uPayment, uMRPCCharge, uMRPinPad, uPCCIntegration,
uCCMercuryIntegration, uCreditCardFunction, Classes, uOperationSystem,
DbClient, ProcessorInterface, SimpleProcessorFactory, SimpleDeviceFactory, DeviceIntegrationInterface;
const
SERVICE_ORDER_PREFIX... |
unit f1df_Ctrlm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, cxControls, cxContainer, cxEdit, cxTextEdit, cxMaskEdit,
ExtCtrls, cxCheckBox, cxDropDownEdit, cxCalendar, cxLookAndFeelPainters,
StdCtrls, cxButtons, FIBQuery, pFIBQuery, pFIBStoredProc, FIBDat... |
unit Embedded_GUI_AVR_Common;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Dialogs, LCLType, Controls,
ProjectIntf,
Embedded_GUI_Embedded_List_Const; // Unit wird von "./Tools/Ebedded_List_to_const" generiert.
type
{ TAVR_ProjectOptions }
TAVR_ProjectOptions = class
AvrdudeCommand: record
... |
unit UnitShowWorkTransactions;
// 欢乐幻灵·显示工作步骤
interface
uses
Windows, Messages, SysUtils, Classes, Controls, Forms,
StdCtrls, Grids, frmTemplate;
type
TFormShowWorkTransactions = class(TfTemplate)
StringGridTransactions: TStringGrid;
ButtonHide: TButton;
lblRepeatCount: TLabel;
procedure ButtonH... |
unit Common.Barcode;
interface
uses
Common.Barcode.IBarcode,
FMX.Objects,
System.Generics.Collections, Common.Barcode.Drawer;
type
TBarcodeType = (EAN8, EAN13, UPCA, UPCE, ITF14, GS128, Code128);
TBarcode = class
private
class var Impementations: TDictionary<TBarcodeType, TClass>;
class constructor ... |
unit CCJCALL_Status;
{
© PgkSoft 05.08.2015
Журнал регистрации вызовов IP-телефонии
Определение статуса пропущенного вызова
}
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, ComCtrls, ToolWin, DB, ADODB, ActnList;
type
TfrmCCJCALL_St... |
{*******************************************************************************
* qFStrings *
* *
* Библиотека компонентов для работы с формой редактирования (qFControls) ... |
unit ibSHDDLWizardActions;
interface
uses
SysUtils, Classes, Controls, Menus,
SHDesignIntf, ibSHDesignIntf;
type
TibSHDDLWizardToolbarAction_ = class(TSHAction)
private
procedure ShowChangedWizard;
public
constructor Create(AOwner: TComponent); override;
function SupportComponen... |
unit Internet;
interface
uses Windows, Forms, WinInet, SysUtils, Classes, BasicFunctions;
type
TWebFileDownloader = class(TThread)
private
FFileURL: string;
FFileName: string;
procedure ForceProcessMessages;
procedure EnforceDirectory(const _Path: string);
... |
(*
* FPG EDIT : Edit FPG file from DIV2, FENIX and CDIV
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later v... |
//------------------------------------------------------------------------------
//ZoneOptions UNIT
//------------------------------------------------------------------------------
// What it does-
// This unit is used to gain access to configuration v... |
{******************************************************************}
{ SVG fill classes }
{ }
{ home page : http://www.mwcs.de }
{ email : martin.walter@mwcs.de ... |
unit tMapping;
{*******************************************************************************
Program Modifications:
-------------------------------------------------------------------------------
Date ID Description
-------------------------------------------------------------------------------
11/17/20... |
unit GLDSkewParamsFrame;
interface
uses
Classes, Controls, Forms, ComCtrls, StdCtrls, GL, GLDTypes,
GLDSystem, GLDAxisFrame, GLDModifyLimitEffectFrame, GLDUpDown;
type
TGLDSkewParamsFrame = class(TFrame)
GB_Rotate: TGroupBox;
L_Amount: TLabel;
L_Direction: TLabel;
E_Amount: TEdit;
... |
unit lotofacil_constantes;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
const
lotofacil_url_download = 'http://loterias.caixa.gov.br/wps/portal/loterias/landing/lotofacil/!ut/p/a1/04_Sj9CPykssy0xPLMnMz0vMAfGjzOLNDH0MPAzcDbz8vTxNDRy9_Y2NQ13CDA0sTIEKIoEKnN0dPUzMfQwMDEwsjAw8XZw8XMwtfQ0MPM2I02-AAzgaENI... |
unit feli_ascii_art;
{$mode objfpc}
interface
// uses ;
type
FeliAsciiArt = class(TObject)
public
class function getCharFromRGBAverage(average: int64): ansiString; static;
class function generate(filepath: ansiString; height: int64 = 64; width: int64 = 64): ansiString; static;
... |
unit sgDriverAudio;
//=============================================================================
// sgDriverAudio.pas
//=============================================================================
//
// The Audio Driver is responsible for providing an interface between SwinGame
// code and the drivers. It can inter... |
unit ASUP_LoaderPrintDocs_Consts;
interface
resourcestring
Ini_ID_PROP_DOCTOR_REG = 'ID_PROP_DOCTOR_REG';
Ini_ID_PROP_CANDIDAT_REG = 'ID_PROP_CANDIDAT_REG';
Path_ALL_Reports = 'Reports\Asup';
Error_Caption = 'Помилка';
Error_LoadBPL_Text = 'Не можливо загрузити пакет:';
YesBtn_Caption = 'Гаразд';
C... |
(*
Category: SWAG Title: GRAPHICS ROUTINES
Original name: 0246.PAS
Description: Bezier Curve Example
Author: ALEKSANDAR DLABAC
Date: 03-04-97 13:18
*)
Program Bezier;
{
██████████████████████████████████████████████████
███▌▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▐███▒▒
... |
unit DXPCommonTypes;
interface
type
{ TDXPBoundLines }
TDXPBoundLines = set of (
blLeft, // left line
blTop, // top line
blRight, // right line
blBottom // bottom line
);
{ TDXPControlSt... |
unit AutoTablesDelphiSDK;
interface
uses
System.SysUtils, System.Classes, System.JSON, FireDAC.Stan.Intf, System.StrUtils,
FireDAC.Stan.Option, FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS,
FireDAC.Phys.Intf, FireDAC.DApt.Intf, Data.DB, FireDAC.Comp.DataSet,
FireDAC.Comp.Client, REST.Client, REST.Back... |
unit pSHGotoLineNumberFrm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls,
pSHConsts, pSHIntf, pSHCommon;
type
TpSHGotoLineNumberForm = class(TForm)
pnlOKCancelHelp: TPanel;
Bevel1: TBevel;
Panel6: TPanel;
bt... |
unit trl_usysutils;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, trl_isysutils, base64;
type
{ TSysUtils }
TSysUtils = class(TInterfacedObject, ISysUtils)
protected
// ISysUtils
function NewGID: string;
function NewGuid: TGuid;
end;
implementation
{ TSysUtils }
function TSysUtils... |
{*******************************************************************************
* uDateControl *
* *
* Библиотека компонентов для работы с формой редактирования (qFControls) ... |
{**************************************************************************************************}
{ }
{ Project JEDI Code Library (JCL) }
{ ... |
unit StmCpx1;
interface
{$IFDEF FPC} {$mode delphi} {$DEFINE AcqElphy2} {$A1} {$Z1} {$ENDIF}
uses math,
util1,Dgraphic,Ncdef2;
function fonctionRe(z:TfloatComp):float;pascal;
function fonctionIm(z:TfloatComp):float;pascal;
function fonctionComp(x,y:float):TfloatComp;pascal;
function fonctionComp1(rho,theta:float... |
//
// EE_EXPORT -- Export procedures and functions
//
unit ee_export;
{$MODE OBJFPC}
interface
uses
Crt,
Classes,
DateUtils, // For SecondsBetween
Process,
SysUtils,
USupportLibrary,
UTextFile,
ee_global;
function ExportEventLog(el: string) : string;
implementation
function GetPathLastRu... |
unit GameUnit;
interface
uses GameObjectUnit,ColliderUnit,Vcl.Forms,Vcl.Controls,Vcl.StdCtrls,
Types,Classes,Math,Windows,SysUtils,Vcl.ExtCtrls,System.Generics.Collections;
type
TGame = class
private
_ground: TList<TGameObject>; // границы игрового поля, список представляет собой набор по умолчанию из че... |
unit uLinkListEditorDatabases;
interface
uses
Generics.Defaults,
Generics.Collections,
Winapi.Windows,
Winapi.ActiveX,
System.SysUtils,
System.Classes,
Vcl.Controls,
Vcl.Graphics,
Vcl.StdCtrls,
Vcl.ExtCtrls,
Vcl.Forms,
Dmitry.Utils.System,
Dmitry.Utils.Files,
Dmitry.Con... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.