text stringlengths 14 6.51M |
|---|
unit ClipBrd;
{
LLCL - FPC/Lazarus Light LCL
based upon
LVCL - Very LIGHT VCL
----------------------------
This file is a part of the Light LCL (LLCL).
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not... |
unit Unlocker;
interface
uses
SysUtils, Generics.Collections,
Device.PhysicalDrive, Device.PhysicalDrive.List, OS.Handle,
Getter.PhysicalDrive.PartitionList;
type
IDriveHandleUnlocker = interface['{8BBD8DB6-A063-4982-8FBA-54051BE87A2A}']
end;
TOSFileUnlockList = TList<IOSFileUnlock>;
TDriveHandleUnloc... |
unit lin_win_compat;
{Unit holding behaviour differences between linux and windows}
{$ifdef fpc}
{$mode objfpc}{$H+}
{$endif}
interface
uses Classes
, SysUtils
;
const K_IP_GENERAL_BROADCAST : string = '255.255.255.255';
procedure GetProxySettings(out bEnabled : boolean; out sServer :... |
program Exceptions;
{$codepage utf8}
uses
Crt,
Classes,
SysUtils,
HTTPDefs,
fpHTTP,
fpWeb,
fphttpclient,
fpjson,
jsonparser,
httpprotocol;
type
TResponse = record
StatusCode: integer;
Body: TJSONData;
end;
var
GameCode, OrgKey: string;
Teams: TJSONArray;
... |
unit glslang.Versions;
interface //#################################################################### ■
//
//Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
//Copyright (C) 2012-2013 LunarG, Inc.
//
//All rights reserved.
//
//Redistribution and use in source and binary forms, with or without
//modification, are permitt... |
{*******************************************************}
{ }
{ Delphi DataSnap Framework }
{ }
{ Copyright(c) 2011 Embarcadero Technologies, Inc. }
{ ... |
unit GF_x;
interface
uses G_F, Math,SysUtils;
type
bvec= array of byte;
ivec= array of integer;
GFX=class
private
q, degree : integer;
public
coeffs: array of GF;
Constructor Create; overload;
constructor Create(qvalue: integer); overload;
constructor Creat... |
{ *******************************************************************************
Title: Gerenciamento de Memória - Swap - Algoritmos de Listas Encadeadas
Description: Exemplo que simula o gerencimento de memória com Swap utilizando
os algoritmos first fit, best fit e worst fit.
The MIT License
Copyright: C... |
unit VarPointer;
interface
uses
SysUtils;
type
TPointer = class(TObject)
private
FPtr: PChar;
procedure SetPointer(const Value: PChar);
public
procedure ReadData(var Buf; Bytes: Integer; OffsetBytes: Integer=0);
function ReadByte(OffsetBytes: Integer=0): Byte;
function ReadWo... |
{***************************************************************
*
* Project : NewsReader
* Unit Name: ConnectThread
* Purpose : Sub Thread unit
* Version : 1.0
* Date : Wed 25 Apr 2001 - 01:30:26
* Author : <unknown>
* History :
* Tested : Wed 25 Apr 2001 // Allen O'Neill <allen_oneill@hotmail.com>
... |
unit adot.VCL.Log;
interface
uses
adot.Log,
adot.VCL.Tools,
adot.Win.Tools,
Winapi.Messages,
Winapi.Windows,
System.SysUtils,
System.SyncObjs,
System.Classes,
System.StrUtils;
type
// Thread-safe implementation of VCL logger (message based to avoid any
// deadlock posibility).
TVCLDelegated... |
unit ASPI;
interface
uses
SPTI,
Windows;
const
SENSE_LEN = 24; { Default sense buffer length}
SRB_DIR_SCSI = $00; { Direction determined by SCSI}
SRB_POSTING = $01; { Enable ASPI posting}
SRB_ENABLE_RESIDUAL_COUNT = $04; { Enable residual byte count r... |
unit MapSetupObjectType;
interface
uses Graphics, Classes, WinUtils, MapObjects2_TLB, Dialogs, SysUtils, GlblCnst,
FileCtrl;
type
LayerRecord = record
LayerName : String;
LayerFileName : String;
LayerPathName : String;
MainLayer : Boolean;
Visible : Boolean;
Transparent : Boolean;
... |
unit IdGlobalProtocols;
interface
type
TIdFileName = String;
function FileSizeByName(const AFilename: TIdFileName): Int64;
implementation
uses Classes, SysUtils;
type
TIdReadFileExclusiveStream = class(TFileStream)
public
constructor Create(const AFile : String);
end;
constructor TIdReadFileExclusi... |
unit Financas.Controller.Interfaces;
interface
uses
System.Classes, FMX.Types;
type
iControllerListboxItensDefault = interface;
iControllerListboxDefault = interface;
iControllerListboxItensForm = interface
['{34754E44-2355-460E-811D-DFD01A7CAE45}']
function Show: TFMXObject;... |
unit ColorShades;
//{$MODE Delphi}
interface
uses
Classes, Graphics;
type
TNrOfLevels = 2..16;
TLevelIndex = 1..16;
TColorShades =
class(TObject)
private
FLeftBlue : Byte;
FRightBlue : Byte;
FDeltaBlue : Byte;
FLeftGreen : Byte;
FRightGreen: Byte;
... |
// **************************************************************************************************
//
// Unit Vcl.Styles.Utils.SystemMenu
// unit for the VCL Styles Utils
// https://github.com/RRUZ/vcl-styles-utils/
//
// The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License")... |
unit uObjectComboList;
interface
uses SysUtils, Types, Contnrs, uObjectCombo;
type
TComboList = class(TObjectList)
protected
function GetItem(Index: Integer): TComboObject;
procedure SetItem(Index: Integer; FeaObj: TComboObject);
public
property Objects[Index: Integer]: TComboObject read GetItem wr... |
unit class_5;
interface
uses System;
implementation
type
TC1 = class
a, b, c: int32;
end;
TC2 = class
XX: Int32;
C1: TC1;
end;
TC3 = class
XX: Int32;
C2: TC2;
procedure Run;
end;
var c1: TC1;
c2: TC2;
c3: TC3;
G1, G2, G3: Int32;
procedure TC3.Run;
begin
if Assig... |
unit CwAs.Xml.XmlSerializer.Attributes;
interface
type
TCustomXmlAttribute = class(TCustomAttribute)
end;
XmlIgnoreAttribute = class(TCustomXmlAttribute)
end;
XmlElementAttribute = class(TCustomXmlAttribute)
private
FElementName: string;
public
constructor create(const name: string);
prop... |
{*******************************************************}
{ }
{ Delphi Visual Component Library }
{ Web server application components }
{ }
{ Copyright(c) 1995-2018 Embar... |
unit EditImpl1;
interface
uses
Windows, ActiveX, Classes, Controls, Graphics, Menus, Forms, StdCtrls,
ComServ, StdVCL, AXCtrls, DelCtrls_TLB;
type
TEditX = class(TActiveXControl, IEditX)
private
{ Private declarations }
FDelphiControl: TEdit;
FEvents: IEditXEvents;
procedure ChangeEvent(Sende... |
unit UnitExcel;
interface
Uses
Windows;
Type
TExcel = Class
Const
Medium = -4138;
Left = -4131;
Portrait = 1;
Solid = 1;
General = 1;
LandScape = 2;
End;
Const
gHorizontal = True;
gVertical = False;
msoTrue = -1;
msoFalse = 0;
msoScaleFromTopLeft = 0;
msoL... |
unit ItensDoMenu;
interface
uses
System.SysUtils, System.Contnrs;
type
TItensMenu = class
private
Nome: string;
Descricao: string;
Preco: currency;
Vegano: boolean;
public
constructor Create(Nome: string; Descricao: string; Preco: currency; Vegano: boolean);
function GetNome: string;
... |
{$mode objfpc}{$H+}{$J-}
uses SysUtils, Generics.Collections;
type
TApple = class
Name: string;
end;
TAppleDictionary = specialize TDictionary<string, TApple>;
var
Apples: TAppleDictionary;
A, FoundA: TApple;
ApplePair: TAppleDictionary.TDictionaryPair;
AppleKey: string;
begin
Apples := TAppleDic... |
unit xConfig;
interface
uses System.SysUtils, IniFiles, xConsts;
var
/// <summary>
/// 数据库服务器IP地址
/// </summary>
sPubDBServerIP : string;
/// <summary>
/// 数据库服务器端口
/// </summary>
sPubDBServerPort : Integer;
implementation
initialization
if sPubIniFileName <> '' then
begin... |
unit sNIF.worker.explorador;
{ *******************************************************
sNIF
Utilidad para buscar ficheros ofimáticos con
cadenas de caracteres coincidentes con NIF/NIE.
*******************************************************
2012-2018 Ángel Fernández Pineda. Madrid. Spain.
This work is... |
Unit ListModel;
Interface
Uses
Menus, ComCtrls, Generics.Collections;
Type
TListModelColumn = Class
Private
FCaption : WideString;
FWidth : Cardinal;
FAUtoSize : Boolean;
FTag : NativeUInt;
FColumn : TListColumn;
FVisible : Boolean;
Public
Constructor Create(ACaption:WideString; A... |
unit fROR_PCall;
{
================================================================================
*
* Package: ROR - Clinical Case Registries
* Date Created: $Revision: 1 $ $Modtime: 8/05/08 5:15p $
* Site: Hines OIFO
* Developers: dddddomain.user@domain.ext
*
* D... |
unit AverageLogger;
interface
uses
Classes, Sysutils, Dialogs, Windows, Math,
AsciiCheck;
type
TAveragePeriod = (Days30, Days90, Days180);
TPeriodAverage = record
Period: TAveragePeriod;
FormattedAverageValue: String;
end;
TAverageLogger = class abstract
private
LastDateInLog: String;
... |
{**************************************************}
{ TPointFigureSeries (derived from TOHLCSeries) }
{ Copyright (c) 2002-2004 by David Berneda }
{**************************************************}
unit TeePointFigure;
{$I TeeDefs.inc}
interface
uses {$IFNDEF LINUX}
Windows,
{$ENDIF}
{$IF... |
unit ViewMailMod;
interface
uses
Windows, Messages, SysUtils, Classes, HTTPApp, WebModu, HTTPProd,
IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient,
IdMessageClient, IdPOP3, WebAdapt, WebComp, IdMessage;
type
TViewMailModule = class(TWebPageModule)
PageProducer: TPageProducer;
popEmail: TI... |
(* Chapter 16 - Program 4 *)
program AmortizationTable;
var Month : 1..12;
StartingMonth : 1..12;
Balance : real;
Payment : real;
InterestRate : real;
AnnualAccumInterest : real;
Year : integer;
NumberOfYears : integer;
OriginalLoan : real;
procedu... |
{A simple benchmark with lots of reallocmem calls}
unit ReallocMemBenchmark;
interface
uses
BenchmarkClassUnit, Math;
const
{The number of pointers}
NumPointers = 10000;
{The maximum change in a block size per iteration}
BlockSizeDelta = 2048;
type
TReallocBench = class(TFastcodeMMBenchmark)
protecte... |
unit SEA_INTV;
{$ifdef VirtualPascal}
{$stdcall+}
{$else}
Error('Interface unit for VirtualPascal');
{$endif}
(*************************************************************************
DESCRIPTION : Interface unit for SEA_DLL
REQUIREMENTS : VirtualPascal
EXTERNAL DATA : ---
M... |
unit PRFWK_Atributo;
interface
uses PRFWK_Classe, DB;
type
TTipoAtributo = (tpString, tpInteiro, tpReal, tpDataHora) ;
type
TPRFWK_Atributo = class(TPRFWK_Classe)
private
aNome : String;
aRequerido : Boolean;
aTipo : TTipoAtributo;
aTipoCampo ... |
{
Maximum Network Flow
LiftToFront Alg. O(N3)
Input:
N: Number of vertices
C: Capacities (No restrictions)
S, T: Source, Target(Sink)
Output:
F: Flow (SkewSymmetric: F[i, j] = - F[j, i])
Flow: Maximum Flow
Reference:
CLR
By Behdad
}
program
MaximumFlow;
const
MaxN = 100 + 2;
var
N, S, T :... |
unit mml_token2;
{-------------------------------------------------------------------------------
ソフト:テキスト音楽「サクラ」
作 者:クジラ飛行机 https://sakuramml.com
説 明:
TMmlBase の下請けで、文字列処理を行うクラス
履 歴:
2002/06/03 15:13 雛型作成
2002/06/16 11:03 ほぼ完成
-----------------------------------------------------------------------... |
{----------------------------------------------------------------------------}
{ Written by Nguyen Le Quang Duy }
{ Nguyen Quang Dieu High School, An Giang }
{----------------------------------------------------------------------------}
... |
unit jakozememo;
//(c) Martin Tichacek mti@mrp.cz
// verze
// 1 ... zacalo cislovani ...
// 2 ... zjistovani vysky pisma , hledani
// 3 ... pridan "jazyk" :-P
// 4 ... moznost zvolit jiny jazyk za behu....
// moznost vlastnich polozek v popupu a reakce na ne.
// 5 ... mazani vety a celeho seznamu...
// 6 ... po... |
unit TestPhisicsControllerUnit;
{
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, PhisicsController... |
unit StopWatch;
interface
uses Windows, SysUtils, DateUtils;
Const MSecsPerSec = 1000;
type TStopWatch = class
private
fFrequency : TLargeInteger;
fIsRunning: boolean;
fIsHighResolution: boolean;
fStartCount, fStopCount : TLargeInteger;
procedure SetTickStamp(var lInt : TLargeInteger)... |
unit fPtSelDemog;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, ORCtrls, fBase508Form, VA508AccessibilityManager;
type
TfrmPtSelDemog = class(TfrmBase508Form)
orapnlMain: TORAutoPanel;
lblSSN: TStaticText;
lblPtSSN: TStaticText;
lbl... |
{*******************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ IndexFileName Property Editor Dialog }
{ }
{ Copyright (c) 1997-2001 B... |
unit Window;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, SDL2, Utility, gl, GLext, glu;
type
{ tGameWindow }
tGameWindow = class
{property} WindowHandle: pSDL_Window;
Surface: pSDL_Surface;
GLContext: tSDL_GLContext;
XRes: integer;
YRes: integer;
FOV: integer;
VisibleRa... |
unit Location;
interface
type
TLocation = class(TObject)
private
FLocationCode: string;
FLocationName: string;
FLocationType: string;
function GetIsServer: boolean;
public
property LocationCode: string read FLocationCode write FLocationCode;
property LocationName: string read FLocationN... |
unit Main;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Mask, ExtCtrls, XPMan, Menus;
type
TfrmMain = class(TForm)
lblPeriod: TLabel;
edtPeriod: TMaskEdit;
btnGo: TButton;
lblTimer: TLabel;
tmrMain: TTimer;
XPManifest: TXPM... |
{**********************************************************************}
{* Иллюстрация к книге "OpenGL в проектах Delphi" *}
{* Краснов М.В. softgl@chat.ru *}
{**********************************************************************}
{/*
* (c) Copyright 1993, ... |
{ Menu pour Mister Patate }
unit MrpMenu;
interface
uses MrpVga, MrpLoad, MrpPal, MrpKey, MrpStr, MrpCode, MrpTps, MrpSon;
const
Principal = 1;
PendantJeu = 2;
Option = 3;
ClavierOpt = 4;
EcranOpt = 5;
SonOpt = 6;
SonMove: array[0..4] of Byte = (130,0,3,1,0);
SonOk : ar... |
unit Dates;
interface
type
TDate = class
private
FDate: TDateTime;
public
constructor Create; overload;
constructor Create (Month, Day, Year: Integer); overload;
procedure SetValue (Month, Day, Year: Integer); overload;
procedure SetValue (NewDate: TDateTime); overload;
function LeapYear... |
unit U_WE_DiagramElement;
interface
uses
Classes, Windows, Graphics, SysUtils;
type
TDgMeterPhaseType = (dmptThree, dmptFour);
TDgMeterEnergyType = (dmetActive, dmetReactive);
TDgMeterPlugSign = (dmpsIa_in, dmpsUa, dmpsIa_out, dmpsIb_in, dmpsUb, dmpsIb_out,
dmpsIc_in, dmpsUc, dmpsIc_out, dmpsU... |
UNIT DT_TipoElemental;
INTERFACE
TYPE
TipoElemental= RECORD
id: INTEGER;
nombre: STRING;
end;
PROCEDURE CrearTipoElemental(id: INTEGER; nombre: STRING; VAR t: TipoElemental); //Inicializa un tipo elemental.
FUNCTION NombreTipoElemental(t: TipoElemental): STRING; //Retor... |
unit MediaStream.FramePool;
interface
uses
Windows,SysUtils, Classes, SyncObjs, Generics.Collections, Collections.Lists,
MediaProcessing.Definitions,MediaStream.Frame;
type
TMediaStreamFramePool = class
private
FFreeItemsLists: array [TMediaType] of TLinkedList<TMediaStreamFrame>;
FItems: TList<TMedia... |
unit AMostraDuplicata;
{ Autor: Douglas Thomas Jacobsen
Data Criação: 28/02/2000;
Função: TELA BÁSICA
Data Alteração:
Alterado por:
Motivo alteração:
}
interface
uses
Windows, SysUtils, Classes,Controls, Forms, Componentes1, ExtCtrls,
PainelGradiente, Formularios, Std... |
unit Quorum;
interface
uses
Classes, Btrieve, SysUtils, Windows, Forms, Dialogs, Utilits;
const
qtByte = 3;
qtWord = 4;
qtLongint = 6;
qtDate = 7;
qtTime = 8;
qtDouble = 11;
qtString = 12;
const
DeleteText: string = #$93+#$84+#$80+#$8B; {'УДАЛ' в дос-кодировке}
//... |
unit uViewPrincipal;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Memo1: TMemo;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarat... |
{*******************************************************}
{ }
{ Delphi LiveBindings Framework }
{ }
{ Copyright(c) 2011 Embarcadero Technologies, Inc. }
{ ... |
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls,
ATSynEdit,
ATSynEdit_Carets,
ATSynEdit_Commands,
ATSynEdit_Cmp_Form;
type
{ TForm1 }
TForm1 = class(TForm)
Ed: TATSynEdit;
Panel1: TPanel;
procedure EdCommand(Sender: TObject; ... |
unit sort_quick_1;
interface
implementation
type TIntArray = array of int32;
var A: TIntArray;
function Compare(L, R: Int32): Int32;
begin
if L < R then
Result := -1
else if L > R then
Result := 1
else
Result := 0;
end;
procedure QuickSort(Values: TIntArray; L, R: Int32);
var
I, J: Int32;
piv... |
{
@abstract(Constants for GMLib.)
@author(Xavier Martinez (cadetill) <cadetill@gmail.com>)
@created(January 20, 2016)
@lastmod(January 20, 2016)
The GMMapVCL contains the implementation of TGMMap class that encapsulate the @code(google.maps.Map) class from Google Maps API and other related classes.
}
unit GM... |
{*******************************************************}
{ }
{ Delphi Runtime Library }
{ SOAP Support }
{ }
{ Copyright(c) 1995-2018 Embar... |
unit ncaFrmJust;
{
ResourceString: Dario 11/03/13
Nada pra fazer
}
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Menus, cxLookAndFeelPainters, StdCtrls, cxButtons, cxControls,
cxContainer, cxEdit, cxTextEdit, cxMemo, cxGraphics, cxLookAndFeels,
LMDC... |
unit uNexTransResourceStrings_PT;
interface
resourcestring
rsCodigoExtra = 'Código Extra';
rsTaxaEntregaFrete = 'Taxa de Entrega / Frete';
rsTaxaEntFrete = 'Taxa Entr./Frete';
rsImagemMuitoGrande = 'O tamanho do arquivo de imagem não pode ser maior que 250KB';
rsRecalcComissao = 'Recalculando com... |
const
MaxFila = 5; { cantidad de filasdel cuadro }
MaxColumna = 20; { cantidad de columnas del cuadro }
MaxPalabra = 21; { largo maximo de palabra }
MaxConjuntoPalabras = 6; { cantidad de palabras }
type
{Cuadro}
TLetra = 'a'..'z';
RangoFila =... |
{
GMCircle unit
ES: contiene las clases bases necesarias para mostrar círculos en un mapa de
Google Maps mediante el componente TGMMap
EN: includes the base classes needed to show circles on Google Map map using
the component TGMMap
=====================================================================... |
unit Connection.UDP;
interface
uses Windows, SysUtils, StrUtils, GMConst, GMGlobals, Connection.Base, IdUDPBase, IdUDPClient, IdGlobal, IdSocketHandle;
type
TConnectionObjectUDP = class(TConnectionObjectBase)
private
udp: TIdUDPClient;
protected
function LogSignature: string; override;
function Mak... |
unit uA;
interface
procedure Register;
implementation
uses
// dbg,
Winapi.Windows,
Winapi.Messages,
Winapi.CommCtrl,
Vcl.Forms,
ToolsAPI;
type
TRADAntiFlick = class(TNotifierObject, IOTAWizard)
const
SAppBuilder = 'AppBuilder';
SIDString = 'DelphiNotes.RAD.AntiFlick';
SName = 'RAD AntiFl... |
unit UClient_Main;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
FMX.ListView.Types, FMX.ListView.Appearances, FMX.ListView.Adapters.Base,
FMX.ListBox, FMX.Layouts, FMX.Objects, FMX.Effects, FMX.Std... |
unit Collisions;
interface
uses
Points, EngineTypes;
function Trace (var P : SPoint; Delta : Point) : boolean;
function TraceWithItems (var P : SPoint; Delta : Point; var CIS : integer; IP : PAPItem; NoCCheck : boolean) : boolean;
function Visible (const P1,P2: SPoint): boolean;
procedure PushConv... |
{*******************************************************}
{ }
{ Delphi FireDAC Framework }
{ FireDAC ODBC Call Interface }
{ }
{ Copyright(c) 2004-2018 Embar... |
{******************************************}
{ TSeriesAnimationTool Editor Dialog }
{ Copyright (c) 2002-2004 by David Berneda }
{******************************************}
unit TeeSeriesAnimEdit;
{$I TeeDefs.inc}
interface
uses
{$IFNDEF LINUX}
Windows, Messages,
{$ENDIF}
SysUtils, Classes,
{$IFDEF C... |
unit CharTestForm;
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.Layouts, FMX.Memo, FMX.Controls.Presentation, FMX.ScrollBox;
type
TForm1 = class(TForm)
Memo1: TMemo;
Butt... |
unit ImportIVPStatusFromDTF;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls, DBCtrls, DBTables, DB, Buttons, Grids,
Wwdbigrd, Wwdbgrid, ExtCtrls, Wwtable, Wwdatsrc, Menus, Types, Zipcopy,
RPCanvas, RPrinter, RPDefine, RPBase, RPFiler, PASTypes;
ty... |
unit UFrmPrincipal;
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.Effects, FMX.TabControl, FMX.Layouts,
System.Actions, FMX.ActnList, FMX.ListVie... |
unit UBarraBotoes;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons,
Data.DB, Vcl.ComCtrls, Vcl.Menus;
type
TFBarraBotoes = class(TFrame)
sbBotoes: TScrollBox;
bt... |
unit uFontEditor;
interface
{$I ..\FIBPlus.inc}
uses
Windows, Messages, SysUtils, Classes,
{$IFDEF D_XE2}
Vcl.Graphics, Vcl.Controls,Vcl.Forms, Vcl.Dialogs,Vcl.StdCtrls,Vcl.ComCtrls
{$ELSE}
Graphics, Controls,Forms,ComCtrls, StdCtrls, Dialogs
{$ENDIF},
pFIBSyntaxMemo,uFIBEditorForm;
type
TfrmFontE... |
{ ***************************************************************************
Copyright (c) 2016-2018 Kike Pérez
Unit : Quick.ImageFX.Types
Description : Image manipulation with multiple graphic libraries
Author : Kike Pérez
Version : 3.0
Created : 10/04/2013
Modified : 26/02/2018... |
unit TestCaseBlock;
{ AFS 5 Feb 2K
This code compiles, but is not semantically meaningfull.
It is test cases for the code-formating utility
this unit test the case statement indentation }
interface
implementation
uses SysUtils, Controls, Math;
procedure FromBorlandsStyleGuide;
// the defs... |
unit CommandSet.ATA;
interface
uses
Windows, SysUtils, Dialogs,
OSFile.IoControl, CommandSet, BufferInterpreter, Device.SMART.List,
BufferInterpreter.ATA;
type
TATACommandSet = class sealed(TCommandSet)
public
function IdentifyDevice: TIdentifyDeviceResult; override;
function SMARTReadData: TSMARTV... |
unit u_frameExamineItemUIBase;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, CnEdit, Gauges, ExtCtrls, u_CommonDef, PlumUtils;
type
TPanel = Class(ExtCtrls.TPanel)
Protected
procedure Paint; override;
End;
TFrameCustomExamineItemUI = cla... |
unit Soccer.VotingRules.Plurality;
interface
uses
System.SysUtils,
System.Generics.Collections,
Soccer.Voting.RulesDict,
Soccer.Voting.Preferences,
Soccer.Voting.AbstractRule;
type
TSoccerPluralityVotingRule = class(TInterfacedObject, ISoccerVotingRule)
private
FMoreThenTwoAlternativesAllowed: boo... |
unit ncFrmWebPopup;
{
ResourceString: Dario 12/03/13
}
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, OleCtrls, SHDocVw_EWB, EwbCore, EmbeddedWB, Automation, ncClassesBase,
ExtCtrls, ncBaseWebApi;
type
TFrmWebPopup = class(TForm)
WB: TEmbeddedWB;
... |
unit UnMovimentoDeContaCorrenteListaRegistrosView;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, JvExControls, JvButton, JvTransparentButton, ExtCtrls, Grids,
DBGrids, StdCtrls, Mask, JvExMask, JvToolEdit, JvMaskEdit, JvCheckedMaskEdit,
JvDatePickerEdit,
... |
{-------------------------------------------------------------------------------
// EasyComponents For Delphi 7
// 一轩软研第三方开发包
// @Copyright 2010 hehf
// ----------------------------... |
unit SimpleDemo.View.Page.Cadastros;
interface
uses
System.SysUtils,
System.Types,
System.UITypes,
System.Classes,
System.Variants,
FMX.Types,
FMX.Controls,
FMX.Forms,
FMX.Graphics,
FMX.Dialogs,
FMX.Controls.Presentation,
FMX.StdCtrls,
FMX.Layouts,
Router4D.Interfaces,
Router4D.Props, FM... |
{
TGMMarker component
ES: componente para mostrar ventanas de información en un mapa de Google Maps
mediante el componente TGMMap
EN: component to show balloons with information on Google Map map using the
component TGMMap
=========================================================================
MODO ... |
unit Unit1;
interface
uses
System.SysUtils, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
Vcl.StdCtrls, Vcl.ComCtrls, Vcl.ExtCtrls,
//GLS
GLScene, GLVectorFileObjects, GLWin32Viewer,
GLCadencer, GLExplosionFx, GLFile3DS, GLCrossPlatform,
GLCoordinates, GLUtils, GLBaseC... |
unit getrectinselection;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
type
TmyPoints=record//Точка
X,Y:integer;
end;
TmyRect=record//прямоугольник - координаты прямоугольника
xl,yl,xr,yr:integer;
end;
TmyarrayRect=array of TmyRect;
function getRectFromPoints(var massPoint:a... |
unit ZLibH;
{we: ZLIB (functions), ZLIBH(types/consts), GZIO(gz functions)
should be the only units USED by applications of zlib}
(************************************************************************
zlibh -- types/consts of the 'zlib' general purpose compression library
version 1.1.4, March 11th,... |
namespace Importer;
interface
uses
System.Collections.Generic,
System.IO,
System.Text,
System.Linq,
System.Xml.Linq;
type
OutputType = public enum (Nougat, ObjC);
ImporterSettings = public class
private
fLibraries : List<String> := new List<String>;
fTypes: List<ImportType> :... |
unit FIToolkit.Logger.Intf;
interface
uses
System.SysUtils, System.Rtti, System.TypInfo,
FIToolkit.Logger.Types;
type
IAbstractLogger = interface //FI:W523
{ Property accessors }
function GetEnabled : Boolean;
{ Logging: structure }
procedure EnterSection(const Msg : String = String.Empt... |
unit EGASave;
(*
------------------------------------------------------------------
This unit provides all of the routines necessary for saving and
restoring EGA (640x350) 16 color graphics screens to and from
RAM and/or a disk files.
Author : John Sieraski (Borland technical support)
Last update: 11/17/88
W... |
unit IdGoogleHTTP;
{$mode objfpc}
interface
uses Classes
, SysUtils
, IdHTTP
, IdSSLOpenSSL
;
Type
{ TIdGoogleHTTP }
TIdGoogleHTTP = class(TIdHTTP)
private
IdSSLIOHandlerSocket1: TIdSSLIOHandlerSocketOpenSSL;
public
constructor Create(AOwner: ... |
unit udmRelOutros;
interface
uses
Windows, Messages, SysUtils, Classes, FMTBcd, DB, frxClass, frxDBSet, SqlExpr,
Provider, DBClient, Forms, Variants, Controls, StrUtils, StdCtrls, frxRich,
frxDesgn, frxExportPDF, Graphics, Dialogs, Padrao1, Buttons, ComCtrls,
Mask, frxExportRTF, frxExportXML;
type
... |
program ElectricalProbeInfo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Classes, SysUtils, uSMBIOS
{ you can add units after this };
function ByteToBinStr(AValue:Byte):string;
const
Bits: array[1..8] of byte = (128,64,32,16,8,4,2,1);
var i: integ... |
{$i deltics.interfacedobjects.inc}
unit Deltics.InterfacedObjects.InterfaceReference;
interface
type
TInterfaceReference = class(TObject, IUnknown)
private
fRef: IUnknown;
public
constructor Create(const aRef: IUnknown);
function IsReferenceTo(const aOther: IUnknown): Boolean;
... |
{-----------------------------------------------------------------------------
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/MPL-1.1.html... |
unit TeeChartBook;
{$I TeeDefs.inc}
interface
uses
Windows, Messages,
SysUtils, Classes,
Graphics, Controls, Forms, Dialogs, Menus, ComCtrls, ExtCtrls,
Chart, TeeComma;
type
TChartBook=class(TPageControl)
private
Toolbar,
DeleteItem : TMenuItem;
FOnNew : TNotifyEvent;
Function Creat... |
unit ImageResizerUnit;
interface
uses
Classes, ResizerCommonTypesUnit, ImageCommonTypesUnit,
ImageProcessingMethodsUnit, FileStructureInformationUnit,
ImageResizingInformationUnit;
type
TImageResizer = class
private
FImageProcessingMethods: TImageProcessingMethods; // Image processing met... |
unit UserControl;
{/*
Модуль UserControl реализует интерфейс контроля в многопользовательской среде.
*/}
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Process, pop3send, smtpsend, mimepart, mimemess,
mimeinln, SynaCode, Dialogs, SQLiteWrap, md5;
type
TFriendEntry = record
ID: Integer;
UUID,
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.