text stringlengths 14 6.51M |
|---|
unit win_data_swap;
interface
{ Exchange two 32-bit values }
procedure Swap(var A, B: Pointer); overload;{$IFDEF USEINLINING} inline; {$ENDIF}
procedure Swap(var A, B: Integer); overload;{$IFDEF USEINLINING} inline; {$ENDIF}
procedure Swap32(var A, B); overload;{$IFDEF USEINLINING} inline; {... |
Unit U_CSVMappedHandler;
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{
* Documentation :
* // http://confluence.dvpt.xxxxxx.fr:8090/pages/viewpage.action?pageId=54047441
}
interface
uses
{$IFnDEF FPC}
VarConv, VarCmplx, Windows,
{$ELSE}
LCLIntf, LCLType, LMessages,
{$ENDIF}
Classes,
StrUtils... |
unit uProVenda;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, uTelaHeranca, Data.DB,
ZAbstractRODataset, ZAbstractDataset, ZDataset, Vcl.Buttons, Vcl.DBCtrls,
Vcl.Grids, Vcl.DBGrids, Vcl.StdCtrls, Vcl.Mask,... |
unit u_imports;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, u_writers, u_common;
type
TImportLibrary = class(TObject)
public
LibraryPath: string;
Imports, Methods: TStringList;
constructor Create(lpath: string);
destructor Destroy; override;
end;
TImportSection... |
unit LayoutsInForms.Mobile.View.Splash;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Objects,
FMX.StdCtrls, FMX.Layouts;
type
TFrmSplash = class(TForm)
imgLogo: TImage;
tmrCreateForms:... |
unit MedicalInstitutions;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Like, FIBDatabase, pFIBDatabase, Buttons, ExtCtrls, cxGridLevel,
cxClasses, cxControls, cxGridCustomView, cxGridCustomTableView,
cxGridTableView, cxGridDBTableView, cxGrid, StdC... |
{
ClickFORMS
(C) Copyright 1998 - 2010, Bradford Technologies, Inc.
All Rights Reserved.
Purpose: A form to navigate pages of a document.
}
unit UFormPageNavigator;
interface
uses
Classes,
Controls,
Forms,
Messages,
UContainer,
UControlPageNavigatorPanel,
UForms,
UPage;
type
/// summary:... |
program WormBlits;
Uses Graph, Crt, GrafBits, WormPics;
const
North: array[1..3] of Byte = (1, 2, 8);
NorthEast: array[1..3] of Byte = (1, 2, 3);
East: array[1..3] of Byte = (2, 3, 4);
SouthEast: array[1..3] of Byte = (3, 4, 5);
South: array[1..3] of Byte = (4, 5, 6);
SouthWest: array[1..3] of B... |
unit NetImporter;
interface
uses Project, NetReader, Adjuster, SysUtils, Classes, Outlines, ExceptSafe;
type ETveNetImporter = class( Exception );
type ESafeNetImporter = class( ESafe );
type TveNetImporter = class
protected
FProject : TveProject;
FNetReader : TveNetReader;
ItemAdjuster :... |
unit UAMC_CheckUAD_SAXWrapper;
{ ClickForms Application }
{ Bradford Technologies, Inc. }
{ All Rights Reserved }
{ Source Code Copyrighted © 1998-2012 by Bradford Technologies, Inc. }
interface
uses
classes, MSXML6_TLB, ComCtrls, StdCtrls, Gauges,osAdvDbGrid;
type
... |
unit AuxDebugFunctionsUnit;
interface
uses Windows, Variants;
procedure DebugOutput(const Data: Variant);
implementation
uses SysUtils;
procedure DebugOutput(const Data: Variant);
var I, VarArrayElementCount: Integer;
ArrayString: String;
VarArrayElement: Variant;
begin
if not VarIsArray(Data) then
... |
{******************************************************************************}
{ }
{ Indy (Internet Direct) - Internet Protocols Simplified }
{ ... |
unit BaseGameData;
interface
type TKeyHoldState = record
IsActive: boolean;
IsHoldContinued:boolean;
ActivationStart: cardinal;
HoldDeltaTimePeriod: cardinal; //время, после истечения которого мы засчитываем удержание клавиши
end;
function Init(dwFlags:cardinal):boolean;
function WriteJump(var write_addr:car... |
unit uDebugEx;
interface
uses
Contnrs, Windows, Classes, SysUtils, Dialogs, Forms;
function LoadAndParseMapFile: Boolean;
procedure CleanUpMapFile;
function GetMapAddressFromAddress(const Address: DWORD): DWORD;
function GetMapFileName: string;
function GetModuleNameFromAddress(const Address: DWORD): s... |
{-----------------------------------------------------------------------------
Unit Name: DUXMLParser
Author: Sebastian Hütter
Date: 01-08-2006
Purpose: Simple Parser for XML files, w/o MSXML
History: 2006-08-01 Initial release
2006-09-07 Rewritten Parser
2007-03-03 Successfull... |
unit RTX_Demo;
{$WARN SYMBOL_PLATFORM OFF}
interface
uses
Winapi.windows,
SysUtils,
ComObj,
ActiveX,
StdVcl,
Variants,
Classes,
RTXCPluginLib_TLB,
RTXCAPILib_TLB,
ClientObjectsLib_TLB,
RTXCModulEinterfaceLib_TLB,
RTXC.IMEventSink,
RTXC.EventSink,
RTXC.ClientObjectsEventSink,
RTXC.... |
unit pGCAxitddelphicommon_TLB;
// ************************************************************************ //
// WARNING
// -------
// The types declared in this file were generated from data read from a
// Type Library. If this type library is explicitly or indirectly (via
// another type library referring to this ty... |
unit Cliente;
interface
Type
TCliente = Class
private
nome: String;
identidade: String;
cpf: String;
telefone: String;
email: String;
cep: String;
logradouro: String;
numero: String;
complemento: String;
bairro: String;
cidade... |
unit fmLogin;
interface
uses
Winapi.Windows
, Winapi.Messages
, Winapi.ActiveX
, System.SysUtils
, System.Variants
, System.Classes
, System.IniFiles
, Vcl.Graphics
, Vcl.Controls
, Vcl.Forms
, Vcl.Dialogs
, Vcl.OleCtrls
, Vcl.Edge
, SHDocVw
, WebView2
;
type
TfrmLogin = class(TFo... |
unit BuilderPizzaExample.Domain.ValueObject.PizzaSize;
interface
type
TPizzaSize = (Small = 1, Normal = 2, Big = 3, Family = 4);
type
TPizzaSizeUtil = class
public
class function GetText(APizzaSize: TPizzaSize): string;
end;
implementation
{ TPizzaSizeUtil }
class function TPizzaSizeUtil.GetText(APizz... |
unit main;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
wclBluetooth, wclWeDoWatcher, wclWeDoHub, Vcl.ComCtrls, Vcl.StdCtrls,
System.generics.Collections;
type
TfmMain = class(TForm)
btStart: TButto... |
unit uTabMan;
{
Sandcat Tab Manager
Copyright (c) 2011-2014, Syhunt Informatica
License: 3-clause BSD license
See https://github.com/felipedaragon/sandcat/ for details.
}
interface
uses
Windows, Messages, Classes, Forms, Controls, Graphics, uTab, SysUtils,
ExtCtrls, Dialogs, ShellAPI, uUIComponents;
typ... |
unit CompUtils;
{**********************************************
Kingstar Delphi Library
Copyright (C) Kingstar Corporation
<Unit> CompUtils
<What> 扩充标准组件(与数据库无关)的使用方法的工具
<Written By> Huang YanLai
<History>Move DB to DBCompUtils
**********************************************}
interface
uses Win... |
{***************************************************************************}
{ }
{ DUnitX }
{ }
{ ... |
unit IdTestDateTimeStamp;
interface
uses
IdTest,
IdDateTimeStamp,
//IdObjs,
IdSys;
type
TIdTestDateTimeStamp = class(TIdTest)
published
procedure TestSet;
end;
implementation
procedure TIdTestDateTimeStamp.TestSet;
var
D: TIdDateTimeStamp;
const
cYear=2005;
cMonth=12;
... |
unit Model.Entities.Produto;
interface
type
TModelEntitiesProduto = class
private
FPreco: Currency;
FDescricao: string;
FCodigo: Integer;
procedure SetCodigo(const Value: Integer);
procedure SetDescricao(const Value: string);
procedure SetPreco(const Value: Currency);
public
con... |
{==============================================================================*
* Copyright © 2020, Pukhkiy Igor *
* All rights reserved. *
*============================================================================... |
(*
Copyright (c) 2011, Stefan Glienke
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 conditions and t... |
unit Menus.Controller.Facade;
interface
uses
Menus.Controller.Interfaces, Menus.Controller.Conexoes.Interfaces,
Menus.Controller.Entity.Interfaces, Menus.Controller.Conexoes.Facade,
Menus.Controller.Entity.Facade, Menus.Controller.ListBox.Interfaces,
Menus.Controller.ListBox.Facade;
type
TControllerFacade ... |
unit uDSDTestModule;
interface
uses
TestFramework, System.Classes, SysUtils, System.Generics.Collections,
Datasnap.DBClient, System.Variants, Data.DB, dmDSD, Windows, uFillDataSet;
type
TCDSTest = class(TTestCase)
private
function CompareDataSet(ADataSet1, ADataSet2: TDataSet): boolean;
protected
... |
unit configregs;
// TODO: check structure sizes.
interface
uses
exec;
{$IFDEF AMIGA} {$PACKRECORDS 2} {$ENDIF}
{$IFDEF MORPHOS} {$PACKRECORDS 2} {$ENDIF}
Type
PDiagArea = ^TDiagArea;
TDiagArea =
record
da_Config : UBYTE;
da_Flags : UBYTE;
da_Size : UWORD;
da_D... |
unit GridGroupCalculate;
interface
uses
cxGridDBBandedTableView, cxCustomData, dsdOlap, cxCustomPivotGrid;
type
TmycxPivotGridController = class(TcxPivotGridController)
protected
function CreateFilterPopup: TcxPivotGridFilterPopup; override;
end;
TmycxPivotGridFilterPopup = class(TcxPivotGridFilterPo... |
unit uDemoExtractProtocol;
interface
uses
uDemo;
type
TDemoExtractProtocol = class(TDemo)
strict protected
procedure Run; override;
public
class function Description: String; override;
end;
implementation
uses
RegularExpressions;
{ TDemoExtractProtocol }
class function TDemoExtractProtocol.De... |
unit msg_box;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Zutils_h, ExtCtrls, StdCtrls, uZButton;
type
Tfmessage = class(TForm)
p_left: TPanel;
p_buttons: TPanel;
ed_message: TMemo;
procedure FormShow(Sender: TObject);
pro... |
unit FindUnit.Header;
interface
const
VERSION: array[0..2] of Word = (1,2,0);//(MAJOR, RELEASE, BUILD)
type
TListType = (ltClasses = 0,
ltProcedures = 1,
ltFunctions = 2,
ltContants = 3,
ltVariables = 4,
ltClassFunctions = 5,
ltClassProcedures = 6,
ltEnumeratores = 7,
ltInterfaces... |
{******************************************************************************}
{ }
{ Indy (Internet Direct) - Internet Protocols Simplified }
{ ... |
unit MyQueue;
interface
type
Queue = class
//private
queue: array[,] of integer;
length: integer;
//public
constructor Create();
procedure Push(x: integer; y: integer);
procedure Unshift(x: integer; y: integer);
function Pop(): array of integer;
function Shift(): array... |
unit UProgress;
{ ClickForms Application }
{ Bradford Technologies, Inc. }
{ All Rights Reserved }
{ Source Code Copyrighted © 1998-2011 by Bradford Technologies, Inc. }
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtr... |
unit uZMaster;
interface
uses
Windows, Messages, SysUtils, Classes, Controls, Tabs, ExtCtrls, TypInfo,
uZButton, Graphics, dxEditor, dxExEdtr, dxEdLib, dxCntner, StdCtrls;
type
ZMasterResult = (MasterResultOk=idOk,
MasterResultCancel = idCancel,
MasterResultNext =... |
unit GrEPS;
interface
uses SysUtils, Math, zlib;
type
epsFonts = (efRoman,efRomanItal,efRomanBold,efSymbol,efHelvetica,
efHelvItal,efHelvBold,efCourier,efCourierItal,efCourierBold);
Doubles = array of Double;
const
epsNum = '%.5g ';
var
epsCreator : String = 'GrEPS';
epsDX : double = 0;
epsDY : double = 0... |
unit UConexao;
interface
uses Uni, UniProvider, InterBaseUniProvider, UConfigIni, System.SysUtils, Vcl.Forms, UMensagem, Utils.Message;
type
TUsuarios = record
private
FCodigo: Integer;
FSenha: string;
FLogin: string;
FNome: string;
FSenhaHash: string;
procedure SetCodigo(const Value: Int... |
// Author: Wayne Buchner 6643140
// Purpose: A guess the number game
// Created: 29/03/2011
// Last updated: 29/03/2011
// Credits:
program GuessNumber;
uses SysUtils, CRT;
Const MAX_NUMBER = 100;
Const MAX_GUESSES = 7;
Function ReadString(prompt : String):String;
begin
Write(prompt);
ReadLn(result);
end;
Func... |
unit kRPC_DataBuffer;
interface
uses
System.SysUtils,
kRPC_Protocol;
type
TkRPC_DataBuffer = class
private
FBuffer: TBytes;
function CheckForCompleteMessage(out Size: kRPC_Protocol.TSizeField): boolean;
function GetIsMessageInBuffer: boolean;
public
procedure AddD... |
unit NFCe;
interface
uses SysUtils, Contnrs, Classes;
type
TNFCe = class
private
Fcodigo :Integer;
Fnr_nota :Integer;
Fcodigo_pedido :Integer;
Fserie :String;
Fchave :String;
Fprotocolo :String;
Fdh_recebimento :TDateTime;
FXML :TMemoryStream;
Fstatus :String;
... |
PROGRAM MCRF;
// This code is made by Uto, but strongly based on original Hisoft C code made my Tim Gilberts and maybe Graeme Yeandle.
// Creates a run file for the Amstrad CPC system. This combines the required interpreter with a given database and graphics
// database (all of which have a CPC... |
unit Facade.SubSystem.SubSystem2;
interface
type
TSubSystem2 = class
public
function Operation1 : string;
function OperationZ : string;
end;
implementation
{ TSubSystem2 }
function TSubSystem2.Operation1: string;
begin
Result := 'Subsystem2: Get ready!';
end;
function TSubSystem2.OperationZ: strin... |
PROGRAM Prime(INPUT, OUTPUT);
CONST
MIN = 2;
MAX = 100;
VAR
Sieve: SET OF MIN..MAX;
UserMax, MainNumber, NextNumber: INTEGER;
BEGIN { Prime }
WRITE('Введите максимум: ');
READLN(UserMax);
WRITELN;
IF (MIN <= UserMax) AND (UserMax <= MAX)
THEN
BEGIN
WRITE('Числа в диапазоне до ', UserMax, ... |
unit YoutubeU;
interface
uses
WinAPI.Windows, System.Classes, Generics.Collections, Generics.Defaults;
{$M+}
type
TInformation = record
Size: TSize;
VideoLink: String;
MimeType: String;
Quality: String;
YoutubeID: String;
YoutubeURL: String;
procedure Clear;
function VideoTag: St... |
unit Frm_Provincias_Browse;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics,
Controls, Forms, Dialogs, uniGUITypes, uniGUIAbstractClasses,
uniGUIClasses, uniGUIForm, Frm_Browse, FireDAC.Stan.Intf, FireDAC.Stan.Option,
FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.Phys.Intf, FireDAC.D... |
unit MUICompUnit;
{$mode objfpc}{$H+}
interface
uses
SysUtils, Fgl, TypInfo,
MUIClass.Base, MUIClass.Area, MUIClass.Window, MUIClass.Group,
MUIClass.Gadget, MUIClass.Image, MUIClass.List, MUIClass.Numeric,
MUIClass.Menu;
type
TMUIClass = class of TMUINotify;
TMUIComp = class
public
MUIClass: TMUICla... |
unit UCL.TUPopupMenu;
interface
uses
UCL.Classes, UCL.TUThemeManager, UCL.TUPopupBox,
System.Classes, System.SysUtils,
VCL.Controls, VCL.Menus;
type
TUPopupMenu = class(TPopupMenu{, IUThemeControl})
private
FPopupBox: TUPopupBox;
FUseNewPopup: Boolean;
public
constr... |
{*******************************************************}
{ }
{ FluentSQL }
{ }
{ Copyright (C) 2013 Allan Gomes }
{ ... |
unit sfloatingbutton;
{$mode delphi}
interface
uses
Classes, SysUtils, And_jni, AndroidWidget, systryparent;
type
TFABSize = (fabNormal, fabMini, fabAuto); //SIZE_MINI SIZE_AUTO SIZE_NORMAL
{Draft Component code by "Lazarus Android Module Wizard" [12/11/2017 23:35:15]}
{https://github.com/jmpessoa/lazandroidmo... |
unit CadastroMovimentosDiversosRapido;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, TelaGeralTEMPLATE, StdCtrls, Buttons, RxLookup, DBCtrls,
RxDBComb, Mask, ToolEdit, RXDBCtrl, DB, DBTables, RxQuery, jpeg, ExtCtrls,
Grids, DBGrids;
type
TFormTelaRapidaM... |
unit Unit_PrintPreview;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, Printers, WinSpool;
const FontSize = 12;
type
TPos = record
x1, x2, y1, y2, y3 : integer;
end;
TfrmPrintPreview = class(TForm)
ScrollBar1: TScrollB... |
{! Unified reading from StdIn for different OS.
Tested on:
- Windows 7
- Ubuntu 18.04
@copyright
(c)2021 Medical Data Solutions GmbH, www.medaso.de
@license
MIT:
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files
(the "S... |
unit TripCMP;
{$mode objfpc}{$H+}
interface
var
NothingVariable: pointer;
function IsNothing(var AVar): boolean;
procedure SetNothing(var AVar);
function Ternary(AIF: boolean; AThen: variant; AElse: variant): variant;
implementation
function IsNothing(var AVar): boolean;
begin
Result := pointer(AVar) = Nothin... |
program KeyJoy;
{$IFNDEF HASAMIGA}
{$FATAL This source is compatible with Amiga, AROS and MorphOS only !}
{$ENDIF}
{$MODE OBJFPC}{$H+}{$HINTS ON}
{$UNITPATH ../../../Base/CHelpers}
{$UNITPATH ../../../Base/Trinity}
{$UNITPATH ../../../Base/Sugar}
{$IFDEF AMIGA} {$UNITPATH ../../../Sys/Amiga} {$ENDIF}
{$IFDEF AR... |
// ************************************************************************ //
// The types declared in this file were generated from data read from the
// WSDL File described below:
// WSDL : http://ws2.bradfordsoftware.com/WSMarshalSwiftAW/MarshalSwiftServiceAW.asmx?wsdl
// >Import : http://ws2.bradfordsoftware.... |
unit Vs.Pedido.Venda.Testes.Integracao;
interface
uses
DUnitX.TestFramework,
// Vs
Vs.Auditor.Pedido.Venda,
Vs.Pedido.Venda.Salvar.Controlador;
type
[TestFixture]
TPedidoVendaTestesIntegracao = class
strict private
FAuditorPedidoVenda: IAuditorPedidoVenda;
FPedidoVendaSalvarControlador: IPedid... |
unit Model.Database;
interface
uses Model.Declarations, System.Generics.Collections, Model.Interfaces;
function CreateDatabaseClass: IDatabaseInterface;
implementation
uses
System.IniFiles, System.SysUtils, System.IOUtils;
type
TDatabase = class (TInterfacedObject, IDatabaseInterface)
private
const
Sa... |
unit uSerialForm;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
EditBtn, StdCtrls, uModbus, uConfiguratorData, uLibrary;
type
(*
#define MAX_LENGHT_UID 64
#define MAX_LENGHT_SN 32
#define MAX_LENGHT_DATA 32
typedef __packed struct{
... |
unit mensajesPanel;
interface
uses windows, messages, classes, graphics, controls, ComCtrls, db, StdCtrls, Htmlview;
const
OIDSinAsignar = -1;
type
TOnGetBetaIndex = function (const OIDBeta: string): string of object;
TMensaje = record
TipoOID: integer;
Params: string;
Mensaje: string;
Titulo... |
unit ParentFormTest;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, ParentForm, cxGraphics, cxControls,
cxLookAndFeels, cxLookAndFeelPainters, cxStyles, cxCustomData, cxFilter,
cxData, cxDataStorage, cxEdit,... |
unit UMemoryTests;
interface
uses
Classes, SysUtils, Types, Variants, {$ifdef Windows} ComObj, {$endif}
dwsXPlatform, dwsUtils,
dwsXPlatformTests, dwsComp, dwsCompiler, dwsExprs, dwsSymbols;
type
TMemoryTests = class (TTestCase)
private
FTests : TStringList;
FCompil... |
unit Udf.RegularExpressions;
interface
uses
WinAPI.Windows,
System.Types,
System.SysUtils,
System.Classes,
System.RegularExpressions,
mungis.utils;
{
DECLARE EXTERNAL FUNCTION REGEX_BLOB
BLOB,
CSTRING(2000),
CSTRING(1),
CSTRING(15),
BLOB
RETURNS PARAMETER 5
ENTRY_POINT 'RegularExpress... |
Unit XLnkPipe;
Interface
Uses Classes, Forms, DB, ppEndUsr, XReports;
type
{ TXLinkReport}
{ TXReportItem = class;}
TXLinkReport = class(TXDBReport)
private
FControl: TComponent; {?+TXReportItem or Index?}
FReportItem: TCollectionItem;
procedure SetControl(AControl: TComponent);
... |
unit core_texture;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,dglOpenGL,Graphics,core_types,core_utils,VectorTypes,
VectorGeometry;
type
rSprite = record
name:string;
x,y,w,h:single;
atlasWidth, atlasHeight:single;
end;
pSprite = ^rSprite;
{ TTexture }
TTexture = class
... |
unit main;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
const
contactExpireTime= 90; // Hard coded at the moment ****
type
TGroupContact= record
groupName: string;
... |
unit uProcessExplorer;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, ComCtrls, VirtualTrees, sts_processlist, ShellApi;
type
TProcessExplorerForm = class(TForm)
Panel2: TPanel;
Bevel4: TBevel;
TopPanel: TPanel;
... |
{*******************************************************************************
product: Alcinoe.FBX.Client (Alcinoe FireBird Express Client)
Description: Retrieving Data as XML from Firebird Server.
Link : http://www.progdigy.com/modules.php?name=UIB
**************************************************... |
unit TelaDescricaoTecnicaProduto;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, DBCtrls, Buttons, ConerBtn, RXCtrls,
AdvOfficeStatusBar, AdvOfficeStatusBarStylers;
type
TFormTelaDescricaoTecnicaProduto = class(TForm)
AdvOfficeStatu... |
unit AuxGraphicFunctions;
interface
uses Windows, SysUtils, Graphics;
procedure RotateBitmap(
Bmp: TBitmap;
Degs: Single;
AdjustSize: Boolean = True;
BkColor: TColor = clNone
);
implementation
uses Classes, Forms, Controls, Math;
procedure RotateBitmap(
Bmp: TBitmap;
Degs: Single;
AdjustSize: Boolea... |
unit uServices;
interface
uses UtilThread, Contnrs;
type
TService = class(TProtectedThread)
end;
TServiceClass = class of TService;
TServices = class
private
Services: TObjectList;
ServicesClass: TObjectList;
public
constructor Create;
destructor Destroy; override;
procedure Registe... |
unit gSpawner;
interface
uses
Classes, SysUtils,
gWorld, gTypes, gBullets, gUnits, gBots,
UPhysics2D, UPhysics2DTypes,
B2Utils,
mutils,
SpineH,
intfUtils;
type
TBotSpawner = class(TSpawnObjectSprite)
private
FFinishSpawnTime: Int64;
FActive: Boolean;
FSpawned: Boolean;
protected
F... |
unit DW.Geodetic.iOS;
{*******************************************************}
{ }
{ Kastri Free }
{ }
{ DelphiWorlds Cross-Platform Library }
{ ... |
unit AqDrop.DB.Tokenizer;
interface
uses
AqDrop.Core.Collections.Intf,
AqDrop.Core.Tokenizer;
type
TAqDBTokenizerDictionaryID = (diOther, diDigits, diCharacters, diPlus, diMinus, diAsterisk, diSlash, diSharp,
diUnderscore, diSemicolon, diComma, diColon, diLeftParenthesis, diRightParenthesis, diSp... |
unit ufrmCombinationCalculator;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
System.Types, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TfrmCombinationCalculator = class(TForm)
edtN: TEdit;
edtR: TEdit;
btnOk: TButton;... |
unit unit_SoapParams;
interface
Type TSoapValueType = (vtString,vtInteger,vtArray,vtBoolean,vtLong);
Type TSoapParam = class(TObject)
Private
FName: String;
FParamType: TSoapValueType;
FValue: String;
Published
Property Name: String Read FName Write FName;
Property ParamType: TSoapValueType Re... |
unit qtxTransformController;
//#############################################################################
//
// Unit: qtxTransformController.pas
// Author: Jon Lennart Aasenden [cipher diaz of quartex]
// Copyright: Jon Lennart Aasenden, all rights reserved
//
// Description:
// ============
// Th... |
unit cell;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,arrayUtils,customcell;
type
TProcHandler = procedure();
{ TSudokuNumber }
TSudokuNumber = class(TInterfacedObject)
private
fValue:integer;
fAvailable:boolean;
fExclude:boolean;
property exclude: boolean read fExclude write f... |
unit UnitScan;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
WinSock, StdCtrls;
const
WM_USER_UPDATE_MSG = WM_USER + 1;
type
TScanThread = class(TThread)
private
FFromPort: Integer;
FToPort: Integer;
FHost: string;
procedure SendR... |
{* *****************************************************************************
PROYECTO FACTURACION ELECTRONICA
Copyright (C) 2010 - Bambu Code SA de CV - Ing. Luis Carrasco
Esta clase representa un Comprobante Fiscal Digital en su Version 2.0 asi como
los metodos para generarla.
Este archivo pertenece a... |
unit RepositorioRetornoLoteNFe;
interface
uses
DB,
Repositorio;
type
TRepositorioRetornoLoteNFe = class(TRepositorio)
protected
function Get (Dataset :TDataSet) :TObject; overload; override;
function GetNomeDaTabela :String; override;
function GetIdenti... |
(*
* Copyright © 2013 Red Hat, Inc.
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that copyright
* notice and this permission notice appear... |
unit Delphi.Mocks.Validation;
interface
uses
System.TypInfo;
type
TMocksValidation = class(TObject)
class procedure CheckMockType(const ATypeInfo : PTypeInfo); static;
class procedure CheckMockInterface(const ATypeInfo : PTypeInfo); static;
class procedure CheckMockObject(const ATypeInfo : PTypeInfo)... |
unit IPCUtils;
{**********************************************
Kingstar Delphi Library
Copyright (C) Kingstar Corporation
<Unit> IPCUtils
<What> 包含进程间通信的工具类
<Written By> Huang YanLai
<History>
**********************************************}
interface
uses Windows,Sysutils,Classes,SyncObjs;
t... |
UNIT Effects;
(*<Implements different effects. *)
(*
Copyright (c) 2019 Guillermo Martínez J.
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use ... |
program Cucicle;
uses Crt, Graph, GrafBits;
type
Point3D = record
X, Y, Z: integer;
end;
Point2D = record
X, Y: integer;
end;
TCube = object
Point: array[1..8] of Point3D;
Vertice: array[1..8] of Point2D;
SideLength,
RotationAngle: integer;
procedure PointVals(Pnt, ... |
unit UCommon;
interface
uses
Vcl.Forms, Winapi.Windows;
// ф-ии чтения атрибутов из XML
function getStr(const AttrValue: OleVariant): string; overload;
function getStr(const AttrValue: OleVariant; const ADefValue: string): string; overload;
function getInt(const AttrValue: OleVariant; const ADefValue: Inte... |
unit uFrmPrincipalJSON;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls, System.JSON;
type
TForm1 = class(TForm)
Panel1: TPanel;
Panel2: TPanel;
btnGerarJSON: TButton;
... |
unit untMain;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls,
FMX.Controls.Presentation, FMX.ListBox, ksTypes, ksTableView, ksSegmentButtons;
type
TForm24 = class(TForm)
ToolBar1: T... |
unit mnTPL;
interface
uses cxTextEdit, cxListBox, cxDropDownEdit, cxMCListBox, mnSystem, cxCheckComboBox,
cxGraphics, Types, superobject;
{--------------------------------
将一个Json串或Json数组对象转换为字符串数组。
Tested in TestUnit.
--------------------------------}
function mnParseJsonToStrArray(const JsonStr: string): mn... |
{$IFDEF FPC}
{$MODE DELPHI}{$H+}
{$ENDIF}
unit cef_api;
{$ALIGN ON}
{$MINENUMSIZE 4}
{$I cef.inc}
interface
uses
cef_type;
type
PCefv8Handler = ^TCefv8Handler;
PCefV8Accessor = ^TCefV8Accessor;
PCefv8Value = ^TCefv8Value;
PCefV8ValueArray = array[0..(High(Integer) div SizeOf(Integer)) ... |
{ Copyright (C) Christian Ulrich info@cu-tec.de
This source 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 commercial alternative
contact us for more information
Th... |
{*******************************************************}
{ }
{ TFacturaElectronica }
{ }
{ Copyright (C) 2017 Bambu Code SA de CV }
{ ... |
unit AntennaSimulation;
interface
uses
SysUtils;
type
TAntennaManager =
class
private
fAzimutPosition : integer;
fELevationPosition : integer;
fAzimutSpeed : integer;
fELevationSpeed : integer;
fAzTimeMark, fElTimeMark : cardinal;
fAzSinc,... |
{***************************************************************************}
{ }
{ DUnitX }
{ }
{ ... |
unit UAMC_RELSOrder;
{ ClickForms Application }
{ Bradford Technologies, Inc. }
{ All Rights Reserved }
{ Source Code Copyrighted © 1998-2009 by Bradford Technologies, Inc. }
{ This unit is used to read the RELS order xml (*.rxml file) and then link }
{ to the RELS si... |
{******************************************************************************}
{ }
{ WiRL: RESTful Library for Delphi }
{ ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.