text stringlengths 14 6.51M |
|---|
//***********************************************************************
//* Проект "Студгородок" *
//* Добавление льготы *
//* Выполнил: Чернявский А.Э. 2004-2005 г. *
//*********************... |
unit Objekt.DHLBaselist;
interface
uses
SysUtils, Classes, Contnrs;
type
TDHLBaseList = class
private
function GetCount: Integer;
protected
fList: TObjectList;
public
constructor Create; virtual;
destructor Destroy; override;
property Count: Integer read GetCount;
procedure Clear; ... |
unit GuiaAlvo.Model.Delivery;
interface
type
TDelivery = class
private
FAPPLECOM: String;
FRAPPICOM: String;
FIFOODCOM: String;
procedure SetAPPLECOM(const Value: String);
procedure SetIFOODCOM(const Value: String);
procedure SetRAPPICOM(const Value: String);
p... |
{
SuperMaximo GameLibrary : Sound class unit
by Max Foster
License : http://creativecommons.org/licenses/by/3.0/
}
unit SoundClass;
{$mode objfpc}{$H+}
interface
uses SDL_mixer;
type
PSound = ^TSound;
TSound = object
strict private
chunk : PMix_Chunk;
volume_, currentChannel : integer;
name_ : str... |
//------------------------------------------------------------------------------
//DatabaseOptions UNIT
//------------------------------------------------------------------------------
// What it does-
// This unit is used to gain access to configuration va... |
unit VolumeFaceVerifier;
// This class stores all faces (triangles or quads that a mesh extraction
// algorithm is building at each region. It's conceived to avoid quads or
// triangles being constructed at the same face. Check VoxelMeshGenerator.pas
// for its usage.
interface
uses BasicRenderingTypes, Bas... |
unit InflatablesList_HTML_Parser;
{$INCLUDE '.\InflatablesList_defs.inc'}
interface
uses
Classes,
AuxTypes, CountedDynArrayObject,
InflatablesList_HTML_Tokenizer,
InflatablesList_HTML_Document;
type
TILHTMLParser = class(TObject)
private
fRaiseParseErrs: Boolean;
fSource: TStream;
... |
unit uModelBill;
interface
uses
Classes, Windows, SysUtils, DBClient, uPubFun, uParamObject, uBusinessLayerPlugin,
uBaseInfoDef, uModelParent, uModelBaseListIntf, uModelBillIntf;
type
TModelBillOrder = class(TModelBill, IModelBillOrder) //单据-订单
function GetBillCreateProcName: string; override;
end;
TM... |
unit uArrayList;
interface
type List = Array of TObject;
{
Automatic dynamic array
}
type ArrayList = class
protected
arr: List;
len: integer;
public
constructor Create(); overload;
constructor Create(amount: integer); overload;
function enlargeBy(arr: List; amo... |
unit uWfxPluginUtil;
{$mode objfpc}{$H+}
{$if FPC_FULLVERSION >= 30300}
{$modeswitch arraytodynarray}
{$endif}
interface
uses
Classes, SysUtils, LCLProc, DCOSUtils, uLog, uGlobs,
WfxPlugin, uWfxModule,
uFile,
uFileSource,
uFileSourceOperation,
uFileSourceTreeBuilder,
uFileSourceOperationOptions,
uFil... |
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Objekt.TapiData;
type
TForm1 = class(TForm)
Button1: TButton;
Edit1: TEdit;
Button2: TButton;
procedure Button1Click(Se... |
unit uDlgAddress;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uBASE_DialogForm, Menus, cxLookAndFeelPainters, StdCtrls,
cxButtons, cxClasses, dxRibbon, cxControls, ExtCtrls, cxGraphics,
cxSpinEdit, cxTextEdit, cxContainer, cxEdit, cxMaskEdit, cxDr... |
namespace proholz.xsdparser;
interface
type
XsdSimpleContentVisitor = public class(XsdAnnotatedElementsVisitor)
private
// *
// * The {@link XsdSimpleContent} instance which owns this {@link XsdSimpleContentVisitor} instance. This way this
// * visitor instance can perform changes in the {@link XsdS... |
unit TwoDPointOrderList;
interface
uses TwoDPointQueue;
type
P2DPointOrderItem = ^C2DPointOrderItem;
C2DPointOrderItem = record
Value: integer;
Edges: C2DPointQueue;
Next: P2DPointOrderItem;
end;
C2DPointOrderList = class
private
Start,Active : P2DPointOr... |
{$apptype console}
{$product Biker 2 Installer}
{$company Kotov Projects}
{$copyright Alexandr Kotov}
{$resource 'interface.dat'}
{$resource 'help.dat'}
{$resource 'map.dat'}
{$resource 'items.dat'}
{$resource 'quest.dat'}
{$resource 'shop.dat'}
{$resource 'mapview.exe'}
{$resource 'game.exe'}
{$resour... |
unit uNeClasses;
{*******************************************************************************
* *
* Название модуля : *
* ... |
unit Pospolite.View.Drawing.Drawer;
{
+-------------------------+
| Package: Pospolite View |
| Author: Matek0611 |
| Email: matiowo@wp.pl |
| Version: 1.0p |
+-------------------------+
Comments:
...
}
{$mode objfpc}{$H+}
{$modeswitch advancedrecords}
interface
uses
Classes, S... |
unit settings;
interface
procedure LoadSettings(
out ADirectory: string;
out AFilter: string;
out AItemIndex: integer;
out AFontHeight: integer
);
procedure SaveSettings(
const ADirectory: string;
const AFilter: string;
const AItemIndex: integer;
const AFontHeight: integer
);
imp... |
unit MainExport;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, ExtCtrls, cxLookAndFeelPainters, cxControls,
cxContainer, cxEdit, cxLabel, StdCtrls, cxButtons, DB, RxMemDS,
IniFiles, Halcn6db, FIBQuery, pFIBQuery, pFIBStoredProc, FIBDatabase,
pFI... |
unit FD.Compiler.Lexer;
interface
uses
// Refactor Units
RRPG.Unicode, RRPG.UTF16Glyphs, RRPG.UTF16Glyphs.UnicodeData,
System.SysUtils, System.Classes, System.Generics.Collections, System.BTree,
FD.Compiler.Lexer.Tokens, FD.Compiler.Environment, FD.Compiler.Exceptions,
System.Comparers, FD.Compiler.StateMac... |
unit API_ORM_BindVCL;
interface
uses
API_ORM,
System.Classes,
Vcl.Forms,
Vcl.StdCtrls;
type
PBindItem = ^TBindItem;
TBindItem = record
Control: TComponent;
Entity: TEntityAbstract;
Index: Integer;
PropName: string;
end;
TORMBind = class
private
FBindItemArr: TArray<TBindItem>;
... |
unit uFrmMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, Buttons, ComCtrls, Wininet, IniFiles,
IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdFTP;
const
MR_DIR = 'C:\Program Files\MainRetail\Suporte';
HTTP_DOWNLOAD ... |
unit UDExportXML;
interface
uses
Classes, Controls, Forms, StdCtrls, ExtCtrls, UCrpe32;
type
TCrpeXML1Dlg = class(TForm)
btnOk: TButton;
btnCancel: TButton;
pnlHTML4: TPanel;
cbSeparatePages: TCheckBox;
cbPrompt: TCheckBox;
procedure FormCreate(Sender: TObject);
procedure FormShow(Sen... |
program ThirdExample;
var
x, result: integer;
str1: string;
begin
write('Hello world!');
write('Lets calculate a factorial!');
write('Enter the integer number:');
read(x);
write('The factorial is:');
if (x < 2) then
begin
write(1);
write('The result was calculated in the false branch.');
... |
{***************************************************************************}
{ }
{ Delphi Package Manager - DPM }
{ }
{ ... |
unit uFrmGeraArquivo;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, cxStyles, cxCustomData, cxGraphics, cxFilter, cxData, cxEdit,
DB, cxDBData, DBClient, cxGridLevel, cxGridCustomTableView,
cxGridTableView, cxGridDBTableView, cxClasses, cxControls,
cxGrid... |
(*
* DGL(The Delphi Generic Library)
*
* Copyright (c) 2004
* HouSisong@gmail.com
*
* This material is provided "as is", with absolutely no warranty expressed
* or implied. Any use is at your own risk.
*
* Permission to use or copy this software for any purpose is hereby granted
* without fee, provided the ab... |
unit Test.Order.Classes;
interface
{$M+}
type
TOrderDetails = class
strict private
FItemNumber: string;
FQuantity: Double;
FPrice: Double;
public
property ItemNumber: string read FItemNumber write FItemNumber;
property Quantity: Double read FQuantity write FQuantity;
property Price: Dou... |
unit ProdutoOperacaoIncluir.Controller;
interface
uses Produto.Controller.interf, Produto.Model.interf, system.SysUtils,
TESTPRODUTO.Entidade.Model;
type
TProdutoOperacaoIncluirController = class(TInterfacedObject,
IProdutoOperacaoIncluirController)
private
FProdutoModel: IProdutoModel;
FCodigoSin... |
PROGRAM JunkMail (Letters, (* The file to write the letters to *)
Addresses, (* contains the list of sendees' addresses *)
Senderinfo, (* the address of the sender *)
LetterBody, (* the body of the letter *)
Output); (* standard out... |
unit UFrmCadastroPais;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, UFrmCRUD, Menus, Buttons, StdCtrls, ExtCtrls
, UPais
, URegraCRUDPais
, UUtilitarios
;
type
TFrmCadastroPais = class(TFrmCRUD)
gbInformacoes: TGroupBox;
edNome: TLabeledEdit... |
//
// This unit is part of the GLScene Project, http://glscene.org
//
{: GLTextureCombiners<p>
Texture combiners setup utility functions.<p>
<b>History : </b><font size=-1><ul>
<li>02/04/07 - DaStr - Added $I GLScene.inc
<li>17/12/03 - EG - Alpha and RGB channels separate combination now supported
... |
unit Backend.Google.Connector;
interface
uses
Data.Articles,
Data.API.Google,
Core.Articles.Gen,
JOSE.Core.JWT,
JOSE.Core.JWK,
JOSE.Core.JWS,
JOSE.Core.JWA,
JOSE.Types.Bytes,
System.IOUtils,
System.DateUtils,
System.SysUtils,
System.Net.HTTPClient,
System.Net.HTTPClientComponent,
System... |
// Wheberson Hudson Migueletti, em Brasília.
// Internet : http://www.geocities.com/whebersite
// E-mail : whebersite@zipmail.com.br
// Referência: [1] PCX - Technical Reference Manual
// Codificação/Descodificação de arquivos ".pcx" (PC Paintbrush)
unit DelphiPCX;
interface
uses Windows, SysUtils, Classes, Grap... |
unit SDL2_SimpleGUI_Canvas;
{:< The Canvas Class (base of drawable widgets) Unit and its support }
{ 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/... |
unit uPavkooStringList;
interface
uses
Classes,Windows;
type
TThreadStringList = class
private
FList: TStringList;
FLock: TRTLCriticalSection;
public
constructor Create;
destructor Destroy; override;
procedure Add(const Item: String);
procedure Clear;
... |
{ ZFM-20 series fingerprint library Lazarus/FPC wrapper.
Copyright (c) 2015 Dilshan R Jayakody [jayakody2000lk@gmail.com]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restricti... |
namespace LocalXMLDataStore;
interface
uses
System.IO,
System.Windows.Forms,
System.Drawing, System.Reflection;
type
/// <summary>
/// Summary description for MainForm.
/// </summary>
MainForm = class(System.Windows.Forms.Form)
{$REGION Windows Form Designer generated fields}
private
iDDataGri... |
Unit RequestList;
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
Interface
Uses
Classes, Generics.Collections,
IRPMonDll,
RefObject,
AbstractRequest,
IRPMonRequest,
DataParsers,
ProcessList,
SymTables;
Type
TRequestList = Class;
TRequestListOnRequestProcessed = Procedure (ARequestList:TRequestList; AReque... |
namespace MetalExample;
interface
uses
Metal,
MetalKit;
type
VertexBuffer = class
private
_buffer : MTLBuffer;
public
class method newBuffer(_device : MTLDevice; const _src : ^Void; const _bufflen : Integer) : VertexBuffer;
class method newBuffer(_device : MTLDevice) SourceData(_src :^Void) wi... |
unit winftp;
interface
uses
Classes, Windows, WinInet, SysUtils, StrUtils, nsGlobals;
function InitializeFTPSession(const AConnectionType: TFTPConnectType;
const HostName, UserName, Password, Port, ProxyName, ProxyPort, ProxyUser, ProxyPassword: string;
const APassive: Boolean): DWORD;
procedure Fina... |
unit fOptionsColors;
{$mode ObjFPC}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, ExtCtrls, Dialogs,
fOptionsFrame, fOptionsGroups;
type
{ TfrmOptionsColors }
TfrmOptionsColors = class(TOptionsColorsGroup)
rgDarkMode: TRadioGroup;
private
FAppMode: Integer;
protecte... |
unit URateioVO;
interface
uses Atributos, Classes, Constantes, Generics.Collections, SysUtils, UGenericVO,
UCondominioVO,UItensRateioVO;
type
[TEntity]
[TTable('Rateio')]
TRateioVO = class(TGenericVO)
private
FidRateio : Integer;
FTotalRateio : currency;
FdtRateio : TDateTime;
FidCondomin... |
unit Demo.Miscellaneous.Animation;
interface
uses
System.Classes, Demo.BaseFrame, cfs.GCharts;
type
TDemo_Miscellaneous_Animation = class(TDemoBaseFrame)
public
procedure GenerateChart; override;
end;
implementation
procedure TDemo_Miscellaneous_Animation.GenerateChart;
var
AreaChart, BarChart: IcfsG... |
unit JavaScriptCodeDesigner;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls,
TypInfo,
dcsystem, dcparser, dcstring, dccommon, dcmemo, dccdes, dcdsgnstuff;
type
TJavaScriptCodeDesigner = class(TJSCodeDesigner)
public
function CreateEventName(const EventName: strin... |
unit UTraducao;
interface
uses Windows, Consts;
procedure SetResourceString(AResString: PResStringRec; ANewValue: PChar);
const
SNewMsgDlgYes: PChar = '&Sim';
SNewMsgDlgOK: PChar = 'Ok';
SNewMsgDlgCancel: PChar = 'Cancelar';
SNewMsgDlgNo: PChar = '&Não';
SNewMsgDlgWarning = 'Aviso';
SNewMsgDlgError = ... |
unit ResizeToolThreadUnit;
interface
uses
Winapi.Windows,
System.Classes,
Vcl.Graphics,
UnitResampleFilters,
uBitmapUtils,
uEditorTypes,
uMemory,
uDBThread;
type
TResizeToolThread = class(TDBThread)
private
{ Private declarations }
FSID: string;
BaseImage:... |
unit BasicProgramTypes;
interface
uses ExtCtrls, StdCtrls, Menus;
type
PPaintBox = ^TPaintBox;
PLabel = ^TLabel;
PMenuItem = ^TMenuItem;
TSitesList = array of packed record
SiteName : string;
SiteUrl : string;
end;
TColourSchemesInfo = array of packed record
N... |
//
// Generated by JavaToPas v1.5 20150831 - 132350
////////////////////////////////////////////////////////////////////////////////
unit android.media.MediaFormat;
interface
uses
AndroidAPI.JNIBridge,
Androidapi.JNI.JavaTypes,
java.nio.ByteBuffer;
type
JMediaFormat = interface;
JMediaFormatClass = interf... |
unit scrollimg;
(*##*)
(*******************************************************************************
* *
* S C R O L I M G *
* image collections, part of CVRT2WBMP ... |
unit ExceptionJCLSupport;
interface
implementation
uses
SysUtils, Classes, JclDebug;
function GetExceptionStackInfoJCL(P: PExceptionRecord): Pointer;
const
cDelphiException = $0EEDFADE;
var
Stack: TJclStackInfoList;
Str: TStringList;
Trace: String;
Sz: Integer;
begin
if P^.ExceptionC... |
namespace Indigo;
interface
uses
System.Drawing,
System.Collections,
System.Collections.Generic,
System.Linq,
System.Windows.Forms,
System.ComponentModel,
System.ServiceModel, System.ServiceModel.Description;
type
/// <summary>
/// Summary description for MainForm.
/// </summary>
MainForm = pa... |
unit PhpDocument;
interface
uses
Classes, LrDocument;
type
TPhpDocument = class(TLrDocument)
protected
procedure LazyUpdate;
public
Php: TStringList;
constructor Create; override;
destructor Destroy; override;
procedure Activate; override;
procedure Deactivate; override;
procedure ... |
{
The benchmark expects the path to the samples folder as a parameter
}
program parse_bench;
{$mode delphi}
uses
LazUtf8, Classes, SysUtils, DateUtils, FileUtil,
lgUtils, lgJson, JsonTools, FpJson, JsonParser;
type
TParseFun = function(const s: string): Boolean;
TParser = TGTuple2<string, TParseFun>;
fun... |
unit API_DragDrop;
interface
uses
Vcl.Forms,
Winapi.Messages,
Winapi.ShellAPI;
type
TDragDropEngine = class
private
FForm: TForm;
function GetFileCount(aDropHandle: HDROP): Integer;
function GetFileName(aDropHandle: HDROP; aIndx: Integer): string;
public
function GetDropedFiles(aMsg: TWMD... |
unit StrUtils;
{
-ooooooooooooooooooooooooooooooooooooooooooooooooooooooo-
-o Título: Manipulação de strings o-
-o Descrição: Várias rotinas para tratamentos diversos o-
-o em strings o-
-o Autor: Waack3(Davi Ramos) o-
-o Última mod... |
unit MultiSelection;
interface
uses Classes, SysUtils;
Type
TMultiSelection=class(TStringList)
ApSC,ApWL,ApVX,ApOB:Integer;
Appended:Boolean;
Function AddSector(sc:Integer):Integer;
Function AddWall(sc,wl:Integer):Integer;
Function AddVertex(sc,vx:Integer):Integer;
Function AddObject(ob:Integer):Integer;
Func... |
{ *********************************************************************** }
{ }
{ GUI Hangman }
{ Version 1.0 - First release of program }
{ Last Revi... |
unit FhirServerTests;
interface
uses
SysUtils,
IniFiles,
AdvObjects,
TerminologyServer;
Type
TFhirServerTests = class (TAdvObject)
private
FIni: TIniFile;
FTerminologyServer: TTerminologyServer;
procedure TestSnomedExpressions;
procedure SetTerminologyServer(const Value: TTerminologyServe... |
unit uModAdjustmentFaktur;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics,
Controls, Forms, Dialogs, uModApp, uModBarang, uModRekening, uModDO, uModPO,
uModSuplier, uModUnit, System.Generics.Collections, uModSatuan,
Datasnap.DBClient;
type
TModAdjustmentFakturItem = class;
TModAdjustmentFa... |
unit MeshSetVertexNormals;
interface
uses LOD;
{$INCLUDE source/Global_Conditionals.inc}
type
TMeshSetVertexNormals = class
protected
FLOD: TLOD;
public
constructor Create(var _LOD: TLOD); virtual;
procedure Execute;
end;
implementation
uses MeshNorm... |
unit TimeoutControler;
interface
uses
Windows, SysUtils, Generics.Collections, RegistroControler, SyncObjs, Winapi.Messages, Classes, UAssyncControler;
Type
TProcedure = Procedure of object;
TTimeOut = Class(TObject)
Callback : TProc;
RestInterval : Integer;
LoopTimer: Boolean;
IDEvent... |
unit uSubModelImage;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uParentSub, siComp, siLangRT, ExtCtrls, DB, ADODB, Buttons,
StdCtrls, ExtDlgs;
type
TSubModelImage = class(TParentSub)
pnlImgPath: TPanel;
imgItem: TImage;
quModelImage: TADODat... |
// Proof-of-Concept attempt at using a Memo or RichMemo to scroll arbitrarily-sized
// data from both small and large (over 1 million) query datasets
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, SynEdit, RichMemo, Forms, Controls, Graphics,
Dialogs, StdCtrls, ExtCtrls, ... |
{* ***** BEGIN LICENSE BLOCK *****
Copyright 2009 Sean B. Durkin
This file is part of TurboPower LockBox 3. TurboPower LockBox 3 is free
software being offered under a dual licensing scheme: LGPL3 or MPL1.1.
The contents of this file are subject to the Mozilla Public License (MPL)
Version 1.1 (the "License"); you may ... |
unit BitBtnVCL;
interface
uses
Windows, Messages, CommCtrl;
function Button_SetImageEx(hBtn : HWND; Image : HGDIOBJ; ImageType, Width, Height : Integer) : Integer;
implementation
function Button_SetImageEx(hBtn : HWND; Image : HGDIOBJ; ImageType, Width, Height : Integer) : Integer;
const
BCM_FIRST ... |
namespace RemObjects.Elements.EUnit;
interface
uses
Sugar;
type
Assert = public partial static class {$IF NOUGAT}mapped to Object{$ENDIF}
private
method BoolToString(Value: Boolean): String;
public
method AreEqual(Actual, Expected : Boolean; Message: String := nil);
method AreNotEqu... |
unit VoxelBank;
interface
uses Voxel, VoxelBankItem, SysUtils;
type
TVoxelBank = class
private
Items : array of TVoxelBankItem;
// Constructors and Destructors
procedure Clear;
// Adds
function Search(const _Filename: string): integer; overload;
... |
unit uExplorerPersonsProvider;
interface
uses
System.SysUtils,
System.StrUtils,
Winapi.Windows,
Vcl.Graphics,
Dmitry.Utils.System,
Dmitry.Utils.ShellIcons,
Dmitry.PathProviders,
Dmitry.PathProviders.MyComputer,
UnitDBDeclare,
uPeopleRepository,
uBitmapUtils,
uTime,
uMe... |
{ ***************************************************************************
Copyright (c) 2016-2019 Kike Pérez
Unit : Quick.Logger.UnhandledExceptionHook
Description : Log Unhandled Exceptions
Author : Kike Pérez
Version : 1.20
Created : 28/03/2019
Modified : 28/03/2019
This ... |
(* Generates a grid based dungeon with wider spaces between rooms, this is then processed to apply bitmasked walls *)
unit bitmask_dungeon;
{$mode objfpc}{$H+}
interface
uses
SysUtils, process_dungeon, globalutils, map;
type
coordinates = record
x, y: smallint;
end;
var
r, c, i, p, t, listLength, firs... |
unit Invoice.View.OrderProduct;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs;
type
TFormOrderProduct = class(TForm)
procedure FormShow(Sender: TObject);
private
{ Private de... |
// ************************************************************************
// ***************************** CEF4Delphi *******************************
// ************************************************************************
//
// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based
// browser in D... |
unit Main;
interface
uses
Winapi.OpenGL,
Winapi.Windows,
Winapi.Messages,
System.SysUtils,
System.Variants,
System.Classes,
System.Contnrs,
System.Math,
Vcl.Graphics,
Vcl.Controls,
Vcl.Forms,
Vcl.Dialogs,
Vcl.ExtCtrls,
Vcl.ComCtrls,
Vcl.Buttons,
Vcl.StdCtrls,
//G... |
unit uStajRecalcForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, uFControl, uLabeledFControl, uDateControl,
FIBQuery, pFIBQuery, FIBDatabase, pFIBDatabase, IBase;
type
TStajRecalcForm = class(TForm)
pFIBD_FullDB: TpFIBDatabase;
... |
unit essentials1;
interface
uses
Winapi.Windows,
Winapi.Messages,
System.SysUtils,
System.Variants,
System.Classes,
Vcl.Graphics,
Vcl.Controls,
Vcl.Forms,
Vcl.Dialogs,
Vcl.StdCtrls,
Vcl.ExtCtrls,
Vcl.Menus, EsGrad;
type
TfrmMainForm = class(TForm)
MainMenu1: TMainMenu;
Examples1: TMe... |
unit UStack;
interface
type
TStack = ^TElem;
TElem = record
next: TStack;
case isOperand:Boolean of
true: (operand: String[25]);
false: (operation: Char);
end;
{ Создаёт вершину стека }
procedure createStack(var stack: TStack);
{ Проверяет, пуст ли стек }
function isEmpty(stack: TStack):B... |
unit UnitLogin;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Layouts,
FMX.Controls.Presentation, FMX.Edit, FMX.StdCtrls, FMX.Objects,
System.JSON,
Firebase.Auth,
Firebase.Interfaces,
Fir... |
unit feli_operators;
{$mode objfpc}
interface
type
FeliOperators = class(TObject)
public
const
largerThanOrEqualTo = '>=';
largerThan = '>';
smallerThanOrEqualTo = '<=';
smallerThan = '<';
equalsTo = '==';
... |
unit ModelVxt;
// Model: Voxel Extension, for models based from voxed used in Voxel Section Editor III
interface
{$INCLUDE source/Global_Conditionals.inc}
{$ifdef VOXEL_SUPPORT}
uses Palette, HVA, Voxel, Mesh, LOD, SysUtils, Graphics, GlConstants, ShaderBank,
Model, MeshVxt;
type
TVoxelCrea... |
unit Pospolite.View.Controls;
{
+-------------------------+
| Package: Pospolite View |
| Author: Matek0611 |
| Email: matiowo@wp.pl |
| Version: 1.0p |
+-------------------------+
Comments:
...
}
{$mode objfpc}{$H+}
{$modeswitch advancedrecords}
{$macro on}
{$define tabdebug}
int... |
unit PanelCanvas;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls;
type
TPanelCanvas = class(TCustomPanel)
private
{ Private declarations }
FCanvas: TCanvas;
protected
{ Protected declarations }
procedure Erased(var Mes: TWMEr... |
unit vwuCommon;
interface
uses
System.SysUtils, System.Classes, System.Variants, FireDAC.Stan.Intf,
FireDAC.Stan.Option, FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS,
FireDAC.Phys.Intf, FireDAC.DApt.Intf, FireDAC.Stan.Async, FireDAC.DApt,
Data.DB, FireDAC.Comp.DataSet, FireDAC.Comp.Client, App.DB.Conn... |
unit uspQuery;
interface
uses
FireDAC.Comp.Client, System.Classes, Firedac.Dapt, System.SysUtils;
type
TspQuery = class(TFDQuery)
private
function GetSQL: String;
public
FSQL: String;
FspColunas: TStringList;
FspTabelas: TStringList;
FspCondicoes: TStringList;
procedure GeraSQL;
... |
namespace OxygeneLogo;
interface
uses
System.Windows,
System.Windows.Controls,
System.Windows.Data,
System.Windows.Documents,
System.Windows.Media,
System.Windows.Navigation,
System.Windows.Shapes;
type
OxygeneWindow = public partial class(Window)
private
// To use Loaded event put the Loaded... |
unit Main_U;
// Description: TSDUURLLabel Test Application
// By Sarah Dean
// Email: sdean12@sdean12.org
// WWW: http://www.SDean12.org/
//
// -----------------------------------------------------------------------------
//
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Fo... |
//Dada la siguiente tabla de temperaturas y deportes implementar un algoritmo que lee
//una temperatura y establezca el correspondiente deporte mostrando el nombre por pantalla
//TEMPERATURA < -5° esquí
//-5° <= TEMPERATURA < 3° ajedrez
//3° <= TEMPERATURA < 10° golf
//10° <= TEMPERATURA < 18° ciclismo
//18° <=... |
(*
Category: SWAG Title: DATE & TIME ROUTINES
Original name: 0027.PAS
Description: Calculate Day Of Week
Author: EARL DUNOVANT
Date: 11-02-93 05:33
*)
{
EARL DUNOVANT
> Which date is what day For a particular month.
Zeller's Congruence is an algorithm that calculates a day of the week given
a year, month ... |
unit svm_callbacks;
{$mode objfpc}
{$H+}
interface
uses
SysUtils,
svm_common;
const
CallBackStackBlockSize = 1024;
type
TCallBackStack = object
public
items: array of TInstructionPointer;
i_pos, size: cardinal;
procedure init;
procedure push(ip: TInstructionPointer);
... |
unit AddPriceForm_ex;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, cxLookAndFeelPainters, cxControls, cxContainer, cxEdit,
cxTextEdit, StdCtrls, cxButtons, ExtCtrls, ActnList, cxMaskEdit,
cxDropDownEdit, cn_common_funcs, cnConsts, cnConsts_Messages;
type
... |
unit Nathan.ObjectMapping.NamingConvention;
interface
uses
System.SysUtils;
{$M+}
type
INamingConvention = interface
['{4768B825-816A-42E3-8244-4C209CA5B232}']
function GenerateKeyName(const AValue: string): string;
end;
/// <summary>
/// Base class for all derived naming converation.
/// </s... |
{$F+,O+}
Unit Help;
INTERFACE
Var
HelpFile : String; (* gdje je commands.bhf (bbs help file) *)
Procedure On (what: String);
IMPLEMENTATION
Uses
Modem;
Var
F : TEXT;
Line: String;
Function Upper (s : String) : String;
Var
i : Integer;
d : Byte;
Begin
d:=Ord(s[0]);
For i:= 1... |
unit Terbilang;
{
Component : Penomoran
Version : 1.0
Coder : Much. Yusron Arif <yusron.arif4@gmail.com>
Copyright © Mata Air Teknologi - Januari 2017
Original Comp. : ATTerbilang v1.0.5
Original Coder : Sony Arianto K <sony-ak@programmer.net>
}
interface
uses
Windows, Messages, S... |
{*******************************************************************************
Title: T2Ti ERP
Description: Controller relacionado à tabela [ECF_MOVIMENTO]
The MIT License... |
(* Generate a cavern, not linked by tunnels *)
unit cavern;
{$mode objfpc}{$H+}
{$RANGECHECKS OFF}
interface
uses
globalutils, map;
type
coordinates = record
x, y: smallint;
end;
var
terrainArray, tempArray, tempArray2: array[1..MAXROWS, 1..MAXCOLUMNS] of char;
r, c, i, iterations, tileCounter: smal... |
unit AvanceMemorialPrint;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, FIBDatabase, pFIBDatabase, cxLookAndFeelPainters, StdCtrls,
cxButtons, ExtCtrls, cxCheckBox, cxSpinEdit, cxTextEdit, cxMaskEdit,
cxDropDownEdit, cxControls, cxContainer, cxEdit,... |
namespace MetalExample;
interface
uses
Metal,
MetalKit;
type
// "Basic Buffers"
MetalExample2 = class(MetalBaseDelegate)
private
const QUAD_SIZE = 20;
cShaderName = 'AAPLShaders2.metallib';
cVertexFuncName = 'vertexShader2';
cFragmentFuncName = 'fragmentColorShader2';
var
_pipelin... |
unit WindowsMissing_U;
// Description: Standard Windows type definitions that are missing from Delphi
// Description:
// By Sarah Dean
// Email: sdean12@sdean12.org
// WWW: http://www.SDean12.org/
//
// -----------------------------------------------------------------------------
//
interface
uses
... |
unit HVABankItem;
interface
uses HVA, Voxel, BasicFunctions, SysUtils;
type
THVABankItem = class
private
Counter: longword;
Editable : boolean;
HVA : THVA;
Filename: string;
// Gets
procedure GetFilenameFromHVA;
public
// C... |
unit APS_Define;
interface
const
// Initial option
INIT_MANUAL_ID:Longint=$1; //CardId manual by dip switch; Input parameter of APS_initial:Longint= cardId; "MODE" ;
// Board parameter define :Longint=General;
PRB_EMG_LOGIC :Longint=$0; // Board EMG logic
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.