text stringlengths 14 6.51M |
|---|
unit PerlinNoise;
{$include opts.inc}
interface
uses
USystem, UMath, Random;
type
pPerlinNoiseGenerator = ^PerlinNoiseGenerator;
PerlinNoiseGenerator = object
private const
PN_B = $100;
PN_BM = $FF;
PN_N = $1000;
private
p: array[0 .. 2 * PN_B + 1] of sint;
g3: array[0 .. 2 * PN_B +... |
{
Doppelt verlinkte Liste
Übungen zur Klausur: Imperative Programmierung
*
* Working Verson of the "remove Element" Exercise
}
program DualLinkedList(input, output);
type
tRefDualLinkedPointer = ^tDualLinkedList;
tDualLinkedList = record
Wert : integer;
next,
prev : tRefDualLinkedPoi... |
program MakePlyr;
{This program is used to initialize the PLY files. It assumes that the player
data read in from CSW is in alphabetical order.
get league and date;
read stats file;
validate data and convert to PLY format;
list error file.}
{$I DCLSTATS.PAS }
{$I GETSETUP.PAS }
v... |
unit unMainService;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, SvcMgr, Dialogs,
ExtCtrls;
type
TSQLServer2Oracle = class(TService)
TimerService: TTimer;
procedure ServiceCreate(Sender: TObject);
procedure ServiceDestroy(Sender: TObject);
procedure ServiceExecute(Se... |
unit StringDistance.DamerauLevenshtein;
interface
uses
StringDistance,
System.SysUtils;
type
{$REGION 'TDamerauLevenshteinDistance'}
TDamerauLevenshteinDistance = class(TInterfacedObject, IStringDistance)
strict private
function Distance(const A, B: string): Integer; inline;
end;
{$ENDREGION}
implemen... |
unit ParamTest.Thread.Write;
interface
uses
System.Classes;
type
TWrite = class(TThread)
protected
procedure Execute; override;
procedure WriteOutput;
end;
implementation
{ TWriteFile }
uses
System.SysUtils,
Vcl.Forms,
ParamTest.Utils;
procedure TWrite.Execute;
begin
while not Terminated ... |
unit RemotePayloadStream;
interface
uses
stringx, sysutils, endian, PerfMessage, perfmessageclient,idglobal,systemx,
idtcpclient, classes, killflag, debug, typex, tickcount;
type
TPayMessage = packed record
cmd: byte;
arg: int64;
end;
TRemotePayloadStream = class(TStream)
private
function ... |
unit DataProcessing.DUnit;
{
Delphi DUnit Test Case
----------------------
This unit contains a skeleton test case class generated by the Test Case Wizard.
Modify the generated code to correctly setup and call the methods from the unit
being tested.
}
interface
uses
System.SysUtils,
TestFramework,
D... |
unit DW.Firebase.Messaging;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
unit UndoBufferTest;
interface
uses
SysUtils, TestFrameWork, CalendarAction, UndoBuffer;
type
TUndoBufferTest = class(TTestCase)
private
FBuffer: TUndoBuffer;
protected
procedure SetUp; override;
procedure TearDown; override;
published
procedure TestCountAndClear;
pr... |
unit unFraCanal;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, unFraStaticCodigoDescripcion, ComboEditor,
ComboGrid, StdCtrls, Mask, PatternEdit, SDEngine, Db;
type
TfraCanal = class(TfraStaticCodigoDescripcion)
private
fFiltraUsuario: boolean;
function Get... |
unit UnitTranslate;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, OleCtrls, SHDocVw, UnitGoogleMaps,
cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters,
dxSkinsCore, dxSkinBlack, dxSkinBlue, dxSkinBlueprint, dxSkinCaramel,
d... |
unit CustomClasses;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
type
//Vertex class
TVertex = Class(TObject)
private
//Fields of TVertex class
VertexId: Integer;
VertexX: Integer;
VertexY: Integer;
//Id setter
procedure SetId(const Id: Integer);
public
... |
// Copyright(C): Advanced Card Systems Ltd
//
// File: DevProgMain.pas
//
// Description: This sample program outlines the steps on how to
// execute advanced device-specific functions of ACR128
//
// Author: Jose Isagani R. Mission
//
// Date: Ju... |
unit dtmMainU;
interface
uses
SysUtils, Classes, DB, ADODB, inifiles, Forms, Encryption_TLB, Variants;
const
TMP_ADDFUN_INI_FILE_NAME = 'TmpAddFun.ini';
ADDFUN_INI_FILE_NAME = 'AddFun.ini';
STR_SEP = '''';
SO_SEP = ',';
type
TdtmMain = class(TDataModule)
adoConn: TADOConnection;
qryCo... |
unit DW.AudioPlayer.Win;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
{==============================================================================}
{ PROJECT: lysee_odbc }
{ DESCRIPTION: ODBC database verdor (FPC) }
{ COPYRIGHT: Copyright (c) 2003-2011, Li Yun Jie. All Rights Reserved. ... |
unit uSxGUI;
interface
uses
Classes,
Menus,
uSxToolBar,
uSxAction;
type
TGUIDesign = (gdMainMenu, gdToolbar, gdMainMenuAndToolbar
// TODO : Implement gdSxGUI
);
TSxGUI = class(TComponent)
private
FSxAction: TSxAction;
FOwner: TComponent;
FGUIDesign: TGUIDesign;
... |
unit CodeGeneratorMainFormUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, StringListWrapperUnit,
ConcreteMethodReferencesUnit, NullablesUnit, CodeGeneratorUnit;
type
TCodeGeneratorMainForm = class(TForm)
Panel1: TPane... |
unit Main;
interface
{
CONTACT: WANGXINGHE1983@GMAIL.COM
}
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Menus, ComCtrls, ExtCtrls;
type
TPoint = record
i, j: integer;
end;
TFlag = (TOLEFT, TOUP, TORIGHT, TODOWN);
TFormMain = class(TForm)
MainMenu1: T... |
//////////////////////////////////////////////////////////////////////////////
//
// Unit: zlib_zlibstream
//
// Description: This file is a part of the zlib data
// compression library for delphi
// (re-implementation of zlib-1.2.3 in pure Delphi)
//
//... |
unit DW.iOSapi.JavaScriptCore;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
{$MODE OBJFPC}
program PWRFAIL;
const
maxN = 1000;
maxM = maxN * (maxN - 1) div 2;
maxD = maxM * Round(2e5) + 1;
type
TEdge = record
x, y : Integer;
w : Double;
end;
TCoord = record
x, y : Integer;
end;
THeap = record
nItems : Integer;
item, pos : array[1..maxN] of ... |
unit uFuncoes;
interface
uses System.SysUtils, System.Classes, 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, Datasnap.DBClient,
Datasnap.Provider, Data.DB, FireDAC.Comp.DataSet, Fire... |
unit InterpolationPIE;
interface
uses AnePIE;
const INTERPOLATION_PIE_VERSION = 1;
type
PIEInterpolationPreProc = procedure (aneHandle : ANE_PTR;
var rPIEHandle : ANE_PTR_PTR; numPoints : ANE_INT32 ;
xCoords, yCoords, values : ANE_DOUBLE_PTR) ; cdecl;
PIEInterpolat... |
unit Labyrinth;
{$include opts.inc}
{$ifdef Debug}
{-$define ExtDebug}
{$endif}
interface
uses
USystem, Errors, UMath, Random, UClasses, Streams, Utils, Tokenizer, Algo, Script, GLBase {$ifdef Debug}, ULog{$endif};
type
CellType =
(
cell_Empty,
cell_Wall,
cell_Floor, cell_Passage, cell_Do... |
unit SeriesItemManager;
interface
uses
Contnrs, Classes, SysUtils, DateUtils,
Constants,
SeriesItem, SeriesCallback, SeriesPublicHoliday;
type
TSeriesItemManager = class(TSeriesItemConditionCallback)
private
FEmptyList: TStringList;
FMatched: array [MIN_YEAR..MAX_YEAR, 1..12, 1..31] of TStringLi... |
////////////////////////////////////////////////////////////////////////////////
// //
// Copyright (c) 2008-2020 Alliance for Sustainable Energy. //
// All rights reserved. ... |
{===============================================================================
RzLookFm Unit
Raize Components - Form Source Unit
Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved.
Forms
------------------------------------------------------------------------------
TRzLookupForm
Fo... |
unit UtilityFunctions;
interface
{UtilityFunctions defines a number of commonly used functions that are
called from a variety of different units.}
uses Windows, SysUtils, AnePIE;
function GetDllFullPath(FileName :string ; var FullPath : String) : boolean ;
// GetDllFullPath is used to determine the full file path ... |
unit TestERtti;
{
Delphi DUnit Test Case
----------------------
This unit contains a skeleton test case class generated by the Test Case Wizard.
Modify the generated code to correctly setup and call the methods from the unit
being tested.
}
interface
uses
TestFramework, EIntf, ERtti;
ty... |
unit DW.AppUpdate.iOS;
interface
uses
FMX.WebBrowser,
DW.AppUpdate, DW.WebBrowserExt;
type
TPlatformAppUpdate = class(TCustomPlatformAppUpdate)
private
FWebBrowser: TWebBrowser;
FWebBrowserExt: TWebBrowserExt;
procedure WebBrowserDidFinishLoadHandler(Sender: TObject);
protected
... |
{****************************************************}
{ }
{ firemonkey-external-file-viewer }
{ }
{ Copyright (C) 2018 Code Partners Pty Ltd }
{ ... |
unit DW.TextToSpeech.Win;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library ... |
unit Posix.ffmpeg.libavutil.fifo;
(*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later v... |
program KuerzenUndAusgeben (input, output);
type
tNatZahlPlus = 1..maxint;
var
Zaehler,
Nenner : tNatZahlPlus;
procedure Ausgabe ( inZaehler,
inNenner : tNatZahlPlus);
{Gibt den gekuerzten Bruch aus}
begin
writeln('gekuerzter Bruch:',inZaehler,
'/', inNenner)
end; {Ausgabe}
procedure Kuerzen... |
{***********UNITE*************************************************
Auteur ...... : Paie Pgi - MF
Créé le ...... : 03/05/2006
Modifié le ... : / /
Description .. : Tableau de bord des effectifs (Vignette vierge)
: Vignette : PG_VIG_EFFECTIFS
: Tablette : PGPERIODEVIGNETTE
... |
{ Unité : Source TOM de la Table : ICCTAUXCOMPTE
--------------------------------------------------------------------------------------
Version | Date | Qui | Commentaires
--------------------------------------------------------------------------------------
7.05.001.001 17/10/06 JP Création de l'unité... |
unit MemSvcEntry;
{
In-memory TServiceEntry
}
interface
uses SysUtils, Windows, WinSvc, SvcEntry;
type
TMemServiceEntry = class(TServiceEntry)
public
constructor Create;
destructor Destroy; override;
//This is not required, but we keep track of what data has been modified.
//If you acc... |
unit newXibDialog;
{$mode objfpc}{$H+}
interface
uses
MacOSAll,
Types,Classes,SysUtils,FileUtil,LResources,Forms,Controls,Graphics,Dialogs,StdCtrls,LCLProc,
Grids,
//todo: use LCL file loading and drawing, instead of OSX
CarbonGDIObjects, CarbonProc;
type
{ TnewXibForm }
TnewXibForm = class(TForm)
... |
unit primeUtils;
interface
type
baseint=UInt64;//cardinal
const
primes_filename='primes_i64';//'primes_i32';
baseintsize=SizeOf(baseint);
function IntToStrX(x:baseint):string;
function StrToIntX(x:string):baseint;
function isqrt(x:baseint):baseint;
implementation
uses SysUtils;
function In... |
unit GlobalConsts;
{$WEAKPACKAGEUNIT ON}
{$WRITEABLECONST OFF}
interface
function isAdmin: boolean;
function isWinNT: boolean;
function isWin9X: boolean;
function WinVersion: int64; // high: majorVersion; low: minorVersion
function WinVersionMajor: integer;
function WinVersionMinor: integer;
function WinBuildNumber: ... |
unit FixNameUnit;
interface
uses Classes;
function FixArgusName (AName : string) : string;
implementation
function FixArgusName (AName : string) : string;
var
IllegalCharacterList : TStringList;
StringIndex : Integer;
AnIllegalCharacter : String;
begin
IllegalCharacterList := TStringList.Create;
try
... |
(******************************************************************************
* LomCN Mir3 LMT Texture Manager 2013 *
* *
* Web : http://www.lomcn.org ... |
unit RWPFormPosition;
interface
uses System.Classes, System.SysUtils, System.UITypes, FMX.Forms, FMX.Dialogs;
type
TRWPPosition = packed record
Left, Top, Height, Width: Cardinal;
end;
TRWPFormPosition = class
private
FPosition: TRWPPosition;
public
... |
////////////////////////////////////////////////////////////////////////////////
// //
// Copyright (c) 2008-2020 Alliance for Sustainable Energy. //
// All rights reserved. ... |
unit MimeType;
interface
uses
systemx, stringx, sysutils;
function MimeTypeFromExt(sExt: string): string;
implementation
function MimeTypeFromExt(sExt: string): string;
//Returns an appropriate mime-type for a given file extension. For example
//".jpg" returns "image/jpeg". For inclusion in HTTP headers. Cur... |
unit PXL.Logs;
{
This file is part of Asphyre Framework, also known as Pascal eXtended Library (PXL).
Copyright (c) 2000 - 2015 Yuriy Kotsarenko
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
Public License as published by the Free Software Fo... |
//////////////////////////////////////////////////////////////////////////////
//
// Unit: xlsxfrw
//
// Description: XLSX file reader/writer
//
//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2008 NikaSoft. All rights reserved.
// Author... |
unit U_TxFormula;
interface
uses
System.Classes, SysUtils, contnrs, DBXJSON,
U_Const,
U_Abstract,
U_Small_Lib;
type
TxResult = class
private
ID_Attribute : Integer;
fValue: Extended;
sUnit: String;
iAction : TDB_Action;
procedure Initialze;
function To_JSON: TJSONObject;
publi... |
unit SLSpecifiedPressure;
interface
uses ANE_LayerUnit, AnePIE;
type
TSpecPressureParam = class(T_ANE_LayerParam)
class Function ANE_ParamName : string ; override;
function Units : string; override;
function Value : string; override;
function WriteName : string; override;
class function WritePa... |
//основная форма для редактирования
unit fEditForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, DB;
type
TEditForm = class(TForm)
procedure FormKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
private
{ Private declarations }
... |
{-----------------------------------
Cpu Identifier interface declaration
-------------------------------------
Interface that encapsulate detail of
getting processor vendor name, brand string
supported features and etc
-------------------------------------
(c) 2017 Zamrony P. Juhara <zamronypj@yahoo.com>
http://g... |
{===============================================================================
RzTray Unit
Raize Components - Component Source Unit
Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved.
Components
------------------------------------------------------------------------------
TRzTrayIcon
... |
unit classe.ControlePedidoProjeto;
interface
uses
Windows, SysUtils, Classes, Controls, Forms, ComCtrls, classe.Controle, classe.CalcularPeso;
type
TPedidoControle = class
private
FID_Pessoa: Integer;
FID_PRODUTO: integer;
FVLR_UNITARIO: real;
FCOMPRIMENTO: real;
FESPESSURA: real;
FPESO... |
unit DW.SoundPlayer;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library }
{... |
unit Posix.ffmpeg.libavutil.aes;
(*
* copyright (c) 2007 Michael Niedermayer <michaelni@gmx.at>
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either... |
unit FrmExpHTML;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs,
Xc12Utils5, XLSReadWriteII5, XLSExport5, XLSExportHTML5,
StdCtrls, CheckLst;
type
TfrmExportHTML = class(TForm)
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabe... |
// Project: FTEditor (Fielded Text Editor)
// Licence: Public Domain
// Web Home Page: http://www.xilytix.com/FieldedTextEditor.html
// Initial Developer: Paul Klink (http://paul.klink.id.au)
unit Xilytix.FTEditor.DecimalFieldPropertiesFrame;
interface
uses
Windows, Messages, SysUtils, Variants, Classes,... |
unit uAddNewCounterData;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Samples.Spin,
Vcl.ExtCtrls, Vcl.Buttons, Data.DB, FireDAC.Stan.Intf, FireDAC.Stan.Option,
FireDAC.Stan.Error, FireDAC... |
{******************************************************************************}
{ }
{ SE Network Development Framework }
{ ... |
unit FacadeMain;
interface
uses
Winapi.Windows, Winapi.Messages, Winapi.ShellAPI,
System.SysUtils, System.Variants, System.Classes, System.Generics.Collections,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls,
RSSParser, RSSReader;
type
TfrmFacade = class(TForm)
btnReadRSSWeb: TButton;... |
//Verificado automaticamente em 16/06/2020 09:28
unit m_ponto_impressao;
interface
uses firedac.comp.client, h_DB, system.SysUtils;
type
TProdutoImpressao = class(TObject)
private
Produto_Impressao_id: Integer;
Produto_Impressao_nome: string;
Produto_Impressao_impressora: string;
function getNom... |
unit PXL.NetComs;
{
This file is part of Asphyre Framework, also known as Pascal eXtended Library (PXL).
Copyright (c) 2000 - 2015 Yuriy Kotsarenko
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
Public License as published by the Free Software... |
{
https://blog.csdn.net/QDseashore/article/details/7731240
https://blog.csdn.net/u010579736/article/details/51880840
http://edn.embarcadero.com/article/26401
}
unit main;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, ... |
unit functions;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, zstream, base64;
procedure StrToFile(const FileName, SourceString: string); cdecl;
function FileToStr(const FileName: string): string; cdecl;
function CompressStringB64(const s: string): string; cdecl;
function DeCompressStringB64(const s: stri... |
{***********UNITE*************************************************
Auteur ...... : Vincent Laroche
Créé le ...... : 30/01/2003
Modifié le ... : / /
Description .. : Source TOF de la FICHE : CPAFAUXCPTAPARAM ()
Mots clefs ... : TOF;CPAFAUXCPTAPARAM
*****************************************************************}
U... |
unit PageNode;
interface
uses DateUtils, SysUtils;
type
// Tab に関連付けられている月の情報を保存するオブジェクト
TPageNode = class
private
FBaseDate: TDateTime;
FCol: integer;
FRow: integer;
public
constructor Create(Base: TDateTime);
function toString: string;
function getBa... |
unit trConstantes;
interface
const
// Codes des applications
CodeModule = 'TRE'; // Trésorerie
CodeModuleCpt = 'CPT'; // Compta
//BASE DE CALCUL
B30_365 = 0 ;
B30_360 = 1 ;
B30E_360 = 2 ;
BJUSTE_365 = 3 ;
BJUSTE_360 = 4 ;
BJUSTE_JUSTE = 5 ;
//--------------
//CALENDRIER
Cal... |
unit ImpParserClass;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, TokenClass, Tokens,
LexerClass, ASTClass, LoggingClass,
BinOpClass, NumClass, UnaryOpClass,
FlowControlASTClass,
BinLogicOpClass, UnaryLogicOpClass;
type
TTParser = class
private
FLexer: TLexer;
FCurren... |
unit UDeviceEvents;
interface
uses Windows, ActiveX, Classes, Graphics, OleServer, StdVCL,SysUtils,
Variants,PortableDeviceApiLib_TLB,PortableDeviceConst,PortableDeviceEventConst,
ShLwApi, USpecialTypes,
{$IFDEF DEBUG}
frDebug,
{$ENDIF}
Comobj;
type CPortableDeviceEventsCa... |
unit MainForm;
interface
uses
Winapi.Windows, Winapi.Messages, System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Buttons, Vcl.StdCtrls, Vcl.ExtCtrls,
Calculadora,
Vcl.AppEvnts, System.SysUtils, Vcl.Menus, Configuracao;
type
TForm1 = class(TForm)
EdtValor1: TLabe... |
unit AppHttpCommandRequestApiXml;
interface
uses
HttpCommandRequestBase;
type
TAppHttpCommandRequestApiXml = class(THttpCommandRequestBase)
protected
class function LogErrors: Boolean; override;
class function LogAllRequests: Boolean; override;
class function TempFolder: string; overrid... |
{*******************************************************************************
作者:dmzn@163.com 2014-5-15
描述:今迈915远距读卡器通讯单元
*******************************************************************************}
unit UMgrJinMai915;
interface
uses
Windows, Classes, SysUtils, SyncObjs, NativeXml, USysLoger, UW... |
unit Xmpp.Iq.DiscoIdentity;
interface
uses
Element,XmppUri;
type
TDiscoIdentity=class(TElement)
const
TagName='identity';
private
function FGetDiscoType:string;
procedure FSetDIscoType(value:string);
function FGetDiscoName:string;
procedure FSetDiscoName(value:string);
function FGetCate... |
unit Form_ListMemb;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, RzStatus, Vcl.ExtCtrls, RzPanel,
Vcl.Grids, BaseGrid, AdvGrid, RzButton, AdvObj,FormEx_View,NetEngine,Class_Memb,QJSON;
type
TFormListMemb... |
{ RxDBCtrls unit
Copyright (C) 2005-2010 Lagunov Aleksey alexs@yandex.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 Fou... |
{***********UNITE*************************************************
Auteur ...... : COSTE Gilles
Créé le ...... : 30/08/2001
Modifié le ... : 30/08/2001
Description .. : Source TOF de la TABLE : ICCTAUXCOMPTE ()
Mots clefs ... : TOF;ICCTAUXCOMPTE
*****************************************************************}
Unit u... |
{ License:
Copyright (c) 2004 Dan Scott
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the follo... |
unit uViewManager;
interface
uses
Classes, Menus, SynEdit,
SynHighlighterMulti, SynHighlighterPHP, SynHighlighterVBScript,
SynHighlighterJScript, SynHighlighterHtml, SynEditHighlighter,
SynHighlighterCSS, SynHighlighterPas, SynHighlighterIni, SynHighlighterTeX,
SynHighlighterDfm, SynHighlighterAsm, SynHigh... |
unit uTelaHeranca;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Data.DB, Vcl.DBCtrls, Vcl.Buttons,
Vcl.Grids, Vcl.DBGrids, Vcl.StdCtrls, Vcl.Mask, Vcl.ComCtrls, Vcl.ExtCtrls,
ZAbstractRODataset, ZAbstractD... |
{===============================================================================
RzFilSys Unit
Raize Components - Component Source Unit
Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved.
Components
------------------------------------------------------------------------------
TRzFileLis... |
unit FMX.ListView.PathDataItemAppearances;
interface
uses
System.Classes, System.Types, FMX.ListView.Types, FMX.ListView.Appearances, FMX.Graphics, FMX.Objects;
type
TPathDataItem = class(TListItemDrawable)
private
FData: TPathData;
FCurrent: TPathData;
FWrapMode: TPathWrapMode;
FN... |
unit unRptCertificados;
interface
uses
Windows, SysUtils, Messages, Classes, Graphics, Controls, StdCtrls, ExtCtrls, Forms, Quickrpt, QRCtrls, SDEngine, Db,
unART, SvcMgr;
const
IDReport: TTableID = 2;
type
TRecDeuda = record
DeudaNominal: Real;
DeudaTotal: Real;
Interes: Real;
Periodo: Stri... |
(* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distr... |
{===============================================================================
RzPathBarEditor Unit
Raize Components - Design Editor Source Unit
Copyright © 1995-2015 by Raize Software, Inc. All Rights Reserved.
Components
------------------------------------------------------------------------------
... |
unit DW.Androidapi.JNI.AndroidX.FileProvider;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platf... |
unit uConfig;
interface
uses
System.Classes,
System.SysUtils,
{$IF CompilerVersion >= 32.0}
System.JSON.Types,
System.JSON.Serializers;
{$ELSE}
Rest.Json.Types,
Rest.Json;
{$ENDIF}
type
[JsonSerialize(TJsonMemberSerialization.&Public)]
TConfig = class
private
[JSONMarshalledAttribute... |
unit RoutSelDlg;
interface
uses
Windows, Messages, SysUtils, Classes, Controls, Forms, StdCtrls, Buttons,
ExtCtrls, Grids, DBGrids;
type
TRouteChooseDlg = class(TForm)
RouteDBGrid: TDBGrid;
Panel2: TPanel;
OkBtn: TBitBtn;
CancelBtn: TBitBtn;
procedure FormCreate(Sender: TObject);
proced... |
//////////////////////////////////////////////////////////////////////////////
//
// Unit: xlsimg
//
//
// Description: Image processing
//
//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2004-2011 NikaSoft. All rights reserved.
// Autho... |
{*******************************************************************************
视频采集所用到的相关数据类型定义
创建人:TJH
创建日前:2009-11-3
描述:...
*******************************************************************************}
unit VideoProcessDefine;
interface
uses
Classes, Windows, DirectShow9, ZLDSVideoProcess_TLB;
const
CO... |
unit dlgguid;
{$mode Delphi}{$H+}
interface
uses
SysUtils,
Controls,
Dialogs,
ExtCtrls,
Buttons,
RegBaseForm;
resourcestring
rsEditGUID = 'Edit GUID';
rsGUID = 'GUID';
rsErrorCreateGUID_FMT = 'Error by creating GUID [%d]';
type
{ TEditGUID }
TEditGUID = class(TRegBaseForm)
btnCancel: TB... |
unit RuleMod2;
{Date: 09.01.2007 }
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Math;
type
TRuleMod2 = class(TGraphicControl)
private
{ Private declarations }
Count:integer;
iMax : integer;
iBound1 : integer;
iBound2 : integer;
iValue ... |
unit UGabesOddForm;
interface
uses
windows, classes, forms, graphics;
procedure CreateOddWindow(AHandle:THandle; ShowTitleBar:boolean);
implementation
procedure CreateOddWindow(AHandle:THandle; ShowTitleBar:boolean);
//-----------------------------------------------------------------------------//
// Automatic... |
unit ProxyInfo;
////////////////////////////////////////////////////////////////////////////////
//
// Description£º ProxyInfo Interface
// Author£º lksoulman
// Date£º 2017-7-21
// Comments£º
//
////////////////////////////////////////////////////////////////////////////////
interface
uses
Proxy,
Wi... |
unit MTDTInterface;
//This unit is a wrapper around the ServerInterface unit. MTDTInterface stands
//for "Middle Tier to Data Tier Interface". It makes making calls to the ServerInterface
//easier in the context of a webserver in the folloowing ways:
//<LI>It puts exception handling around return results so that you ... |
unit UEditCard;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, sqldb, db, FileUtil, Forms, Controls, Graphics, Dialogs,
StdCtrls, DbCtrls, UMetadata, USQL, UDBConnection, UNotification;
type
TEditor = record
FLabel: TLabel;
Control: TWinControl;
IDs: array of Integer;
TableIndex, Count... |
unit Xmpp.extensions.Capabilities;
interface
uses
XmppUri,Element,Xmpp.iq.DiscoInfo,Generics.Collections,Xmpp.iq.DiscoFeature,Xmpp.iq.DiscoIdentity,SecHash,EncdDecd,Classes
,StringUtils;
type
TCapabilities=class(TElement)
private
function FGetNode:string;
procedure FSetNode(value:string);
function ... |
unit GetLayerUnit;
interface
uses Dialogs, Sysutils, ANEPIE;
procedure GGetMODFLOWLayer (const refPtX : ANE_DOUBLE_PTR ;
const refPtY : ANE_DOUBLE_PTR ;
numParams : ANE_INT16 ;
const parameters : ANE_PTR_PTR ;
funHandle : ANE_PTR ;
reply : ANE_PTR ); cdecl;
... |
unit CPortUTestMainFm;
{ Unit Test Code for CPort Component - main form used by all delphi versions }
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, CPortCtl, CPort, CPortTypes;
type
TCPortUTestMainForm = class(TForm)
Trac... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.