text stringlengths 14 6.51M |
|---|
unit CustomMap;
interface
type
TCustomMap = class(TObject)
private
FHeight: Integer;
FWidth: Integer;
function GetHeight: Integer;
function GetWidth: Integer;
public
constructor Create;
property Width: Integer read GetWidth;
property Height: Integer read GetHeight;
e... |
unit k2PropertyOperation;
{ Библиотека "K-2" }
{ Автор: Люлин А.В. © }
{ Модуль: k2PropertyOperation - }
{ Начат: 18.10.2005 14:04 }
{ $Id: k2PropertyOperation.pas,v 1.6 2012/07/12 18:33:21 lulin Exp $ }
// $Log: k2PropertyOperation.pas,v $
// Revision 1.6 2012/07/12 18:33:21 lulin
// {RequestLink:237994... |
unit uMain;
interface
uses
Windows, SysUtils, Classes, Controls, Forms, Dialogs, Registry,
StdCtrls, ComCtrls, uDelphiInstallationCheck, ExtCtrls,
uInstaller, ImgList;
type
TFrmInstall = class(TForm)
ilDelphiIcons: TImageList;
grpDelphiVersions: TGroupBox;
lvDelphis: TListView;
pnlDesc: TPane... |
program expressionEvaluator(input, output);
(* Interprets expressions such as (+20-3-4+169);*)
var
ch, sign : char;
sum, current : integer;
begin
write('>> ');
read(sign);
ch := ' ';
sum := 0; current := 0;
while (ch <> ';') do
begin
read(ch);
case ch of
'+', '-' :
begin
if sign = '+' then
... |
unit uSaque;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, uRelatorioSaque;
type
TFrmSaque = class(TFrame)
Label1: TLabel;
BtnConfirmar: TButton;
BtnCancelar: TButton;
BtnUm: TButton;
Btn2: TButton;
Btn3: TButton;
... |
unit UIWrapper_GroupUnit;
interface
uses
UIWrapper_SchOptPartUnit, FMX.ListBox, FMX.Controls, SearchOption_Intf;
const
ITEM_LIST_GROUP_TIMEUNIT_VIEW: array[0..21] of String = (
'5 sec', '10 sec', '15 sec', '20 sec', '30 sec', //5
'1 min', '2 min', '3 min', '4 min',... |
unit InfoSYSTable;
interface
uses
Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf;
type
TInfoSYSRecord = record
PModCount: String[1];
PNextID: String[5];
Psy_lender: String[4];
Psy_prefix: String[3];
Psy_yrmo: String[6];
Psy_opt: String[50];
Psy_remit1: String... |
unit Solid.Samples.LSP.Shapes.Workaround;
interface
type
{ TRectangle }
TRectangle = class
private
FHeight: Integer;
FWidth: Integer;
FLeft: Integer;
FTop: Integer;
protected
procedure SetHeight(AValue: Integer); virtual;
procedure SetWidth(AValue: Integer); virtual;
... |
{ Subroutine SST_R_SYO_ITEM (JTARG, SYM_MFLAG)
*
* Process ITEM syntax.
}
module sst_r_syo_item;
define sst_r_syo_item;
%include 'sst_r_syo.ins.pas';
procedure sst_r_syo_item ( {process ITEM syntax}
in out jtarg: jump_targets_t; {execution block jump targets info}
in sym_mflag: sst_symb... |
namespace Sugar.Test;
interface
uses
Sugar,
Sugar.Xml,
RemObjects.Elements.EUnit;
type
DocumentTypeTest = public class (Test)
private
Doc: XmlDocument;
Data: XmlDocumentType;
public
method Setup; override;
method Name;
method LocalName;
method PublicId;
met... |
unit Unt_Principal;
interface
uses
Winapi.Windows,
Winapi.Messages,
System.SysUtils,
System.Variants,
System.Classes,
Vcl.Graphics,
Vcl.Controls,
Vcl.Forms,
Vcl.Dialogs,
Vcl.ComCtrls,
Vcl.StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
ProgressBar1: TProgressBar;
procedure ... |
{
Clever Internet Suite
Copyright (C) 2013 Clever Components
All Rights Reserved
www.CleverComponents.com
}
unit clFtpFileHandler;
interface
{$I clVer.inc}
{$IFDEF DELPHI6}
{$WARN SYMBOL_PLATFORM OFF}
{$ENDIF}
{$IFDEF DELPHI7}
{$WARN UNSAFE_CODE OFF}
{$WARN UNSAFE_TYPE OFF}
{$WARN UNSAFE_CAST OFF}
{... |
unit atNotifier;
// Модуль: "w:\quality\test\garant6x\AdapterTest\CoreObjects\atNotifier.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TatNotifier" MUID: (4807877801B7)
interface
uses
l3IntfUses
, atInterfaces
, Classes
, SysUtils
;
type
TatNotifier = class(TInterfacedObject, IatNotifier)
private
f... |
unit kwClearSpellDictionary;
{* Очищает пользовательский словарь проверки орфографии. }
// Модуль: "w:\archi\source\projects\Archi\Archi_Insider_Test_Support\kwClearSpellDictionary.pas"
// Стереотип: "ScriptKeyword"
// Элемент модели: "ClearSpellDictionary" MUID: (581338320377)
// Имя типа: "TkwClearSpellDictionary"
... |
unit TippingForm;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Inifiles, IOUtils, Vcl.Samples.Spin,
Vcl.StdCtrls;
type
TForm4 = class(TForm)
Label2: TLabel;
Label3: TLabel;
Label5: TLabel;
... |
unit nscNavigator;
// Библиотека : "Визуальные компоненты проекта Немезис"
// Автор : М. Морозов.
// Начат : 06.12.2006 г.
// Назначение : Компонент с вкладками
// Версия : $Id: nscNavigator.pas,v 1.5 2009/01/12 17:38:11 lulin Exp $
// $Log: nscNavigator.pas,v $
// Revision 1.5 2009/01/12 17:38:11 lul... |
unit LinkLabel1;
interface
uses
System.SysUtils, System.Classes, Vcl.Controls, Vcl.StdCtrls, Graphics, Messages, System.UITypes;
type
TLinkLabel2 = class(TLabel)
private
FLinkVisitedColor: TColor;
FLinkColor: TColor;
FURL: string;
FOldColor : TColor;
FVisitado: Boolean;
... |
{******************************************************************************}
{ }
{ Library: Fundamentals TLS }
{ File name: flcTLSHandshakeExtension.pas ... |
Program carro_preco_fabrica;
{O preço ao consumidor de um carro novo é a soma do custo de fábrica com a porcentagem do distribuidor e dos impostos,
ambos aplicados ao custo de fábrica. As porcentagens encontram-se na tabela a seguir. Faça um programa que receba
o custo de fábrica de um carro e mostre o preço ao consum... |
unit uDialogUtils;
interface
uses
Vcl.Dialogs;
type
TDialogUtils = class
private
class function CreateDialogTemplate(const aTdiType: Integer; const aCaption: string;
const aText: string; const aShowDirectly: Boolean; const aCreateDefaultButton: Boolean = False
): TTaskDialog;
public
c... |
unit ym_2203;
interface
uses {$IFDEF WINDOWS}windows,{$ENDIF}
{$ifndef windows}main_engine,{$endif}
fmopn,ay_8910,timer_engine,sound_engine,cpu_misc;
type
ym2203_chip=class(snd_chip_class)
constructor create(clock:dword;amp:single=1;ay_amp:single=1);
destructor free;
public
proced... |
unit FFSColorCollection;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
FFSTypes;
type
TFFSColorCollectionItem = class(TCollectionItem)
private
FGridSelect: TColor;
FActionText: TColor;
FMainStatusBar: TColor;
FDataBackground: TColor;
... |
unit DW.OSDevice.iOS;
{*******************************************************}
{ }
{ Kastri Free }
{ }
{ DelphiWorlds Cross-Platform Library }
... |
program powerWIN;
uses
SysUtils, Process;
(* BANNER *)
function banner() :string;
begin
writeln('');
writeln(' -------------------- powerWIN ---------------------');
writeln('| |');
writeln('| example : powerwin.exe [OPTION... |
unit AST.Delphi.Project;
interface
uses AST.Classes,
AST.Pascal.Project,
AST.Delphi.Parser,
AST.Delphi.Classes;
type
TASTDelphiProject = class(TNPPackage)
protected
function GetUnitClass: TASTUnitClass; override;
end;
implementation
{ TASTDelphiProject }
function TASTDelphiProject.GetUnit... |
// ***************************************************************************
//
// FMXComponents: Firemonkey Opensource Components Set from China
//
// CalendarControl is a calendar component like iOS style, it uses
// listview component internally
//
// This component come from xubzhlin's FMX-UI-Controls, collect a... |
unit udf_date;
interface
uses Types;
type
Long = Longint;
ULong = DWord;
TISC_TIMESTAMP = record
d_date : Long;
d_time : ULong;
end;
PISC_TIMESTAMP = ^TISC_TIMESTAMP;
TCTime = record
tm_sec : integer; // Seconds
tm_min : integer; // Minutes
tm_hour : integer; ... |
(*
JCore WebServices, Controller Handler Classes
Copyright (C) 2015 Joao Morais
See the file LICENSE.txt, included in this distribution,
for details about the copyright.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHAN... |
unit property_commands;
interface
//uses
type
TChangePropertyCommand=class(TAbstractTreeCommand)
protected
fComponent: TStreamingClass;
fPropName: string;
fComponentNameStr: string;
function NewGetPropInfo: PPropInfo;
public
Constructor Create(AOwner: TComponent); override;
... |
unit unitFrame;
interface
uses classes, Types;
type
TFrame = class(TObject)
private
{ Private declarations }
public
{ Public declarations }
polys: TList;
caption: String;
State: String;
ImageFile: String;
Center: TPoint;
constructor Create(ncaption: String);
end;
... |
unit PI.View.Main;
interface
uses
// RTL
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, System.Actions, System.Json,
// FMX
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Controls.Presentation, FMX.ScrollBox, FMX.Memo, FMX.StdCtrls, FMX.TabControl,
... |
program TESTTRC ( OUTPUT ) ;
(********)
(*$a+ *)
(********)
var R : REAL ;
X : REAL ;
I : INTEGER ;
C : array [ 1 .. 100 ] of CHAR ;
local procedure DUMP ( PVON : VOIDPTR ; PBIS : VOIDPTR ) ;
/*********************************************************/
/* Speicherbereich von PVON bis PBIS hexadezi... |
unit FIVECacheServer_TLB;
{ This file contains pascal declarations imported from a type library.
This file will be written during each import or refresh of the type
library editor. Changes to this file will be discarded during the
refresh process. }
{ FIVECacheServer Library }
{ Version 1.0 }
interface
uses ... |
unit QuickList_DetailData;
interface
uses
QuickSortList,
define_datetime,
define_stock_quotes;
type
PDetailDataListItem = ^TDetailDataListItem;
TDetailDataListItem = record
DetailDateTime: TDateTimeStock;
DetailData: PRT_Quote_Detail;
end;
TDetailDataList = class(TALBaseQ... |
unit MapCompress;
interface
uses
Matrix, Classes, Windows;
type
any = 0..0;
TMapSection = array[any] of single;
TMapImage = string;
function CompressMap ( Matrix : IMatrix; Area : TRect; out image : TMapImage; Resolution : integer ) : boolean;
function DecompressMap( Matrix : IMatrix;... |
unit SQLLang;
interface
uses
System.Classes, System.SysUtils, System.Generics.Collections;
type
TFieldType = (ftInteger, ftString, ftFloat, ftDateTime, ftBlob, ftBoolean, ftParam);
TDIType = (diInc, diDec, diDiv, diMul);
TWhereUnion = (wuAnd, wuOr, wuNotAnd, wuNotOr);
TField = record
private
funct... |
unit uLayoutPhoenix;
interface
uses
Contnrs, SysUtils, ACBrTXTClass, ACBrUtil, funcoes;
type
TCamposInventario = class
private
FVL_UNIT: Currency;
FALIQ_ICMS: Currency;
FQUANTIDADE: Double;
FNCM: string;
FUNIDADE: string;
FCODIGO: string;
FDESCRICAO: string;
FVALOR_ICMS: Currenc... |
unit Control.Acareacao;
interface
uses Model.Acareacoes, System.SysUtils, FireDAC.Comp.Client, Forms, Windows, Common.ENum;
type
TAcareacaoControl = class
private
FAcareacoes: TAcareacoes;
public
constructor Create;
destructor Destroy; override;
function Gravar: Boolean;
function Final... |
unit EditValidator;
interface
uses
System.SysUtils, System.Classes, Vcl.Controls, Vcl.StdCtrls, System.Math;
type
ECaracterInvalido = class(Exception);
EInvalidCPF = class(Exception);
EInvalidCNPJ = class(Exception);
EInvalidCEP = class(Exception);
EInvalidTitulo = class(Exception);
EInva... |
{ Subroutine SST_W_C_EXP (EXP, ADDR_CNT, DT_OUT_P, ENCLOSE)
*
* Write the expression from the expression descriptor EXP.
* ADDR_CNT is the number of times to take the address of the expression.
* It may be negative to indicate the number of times the expression
* should be assumed to be a pointer and derefere... |
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
unit PEStuff;
interface
uses Windows;
type
PImageDosHeader = ^TImageDosHeader;
_IMAGE_DOS_HEADER = packed record { DOS .EXE
header }
e_magic: Word; { Magic
number }
e_cblp: Word; { Bytes on last page of
file }
... |
{ 2020/05/11 5.01 Move tests from unit flcTests into seperate units. }
{$INCLUDE flcTCPTest.inc}
unit flcTCPTest_ClientServerTLS;
interface
{ }
{ Test }
{ ... |
{
Clever Internet Suite
Copyright (C) 2013 Clever Components
All Rights Reserved
www.CleverComponents.com
}
unit clSyncUtils;
interface
{$I clVer.inc}
{$IFDEF DELPHI6}
{$WARN SYMBOL_PLATFORM OFF}
{$ENDIF}
uses
{$IFNDEF DELPHIXE2}
Classes, SyncObjs;
{$ELSE}
System.Classes, System.SyncObjs, System.Types... |
unit uMain;
{$mode delphi}
interface
uses
glr_core, glr_math,
glr_render,
glr_render2d,
glr_scene,
glr_particles2d,
uBox2DImport, uSpace, uMoon,
UPhysics2D;
const
MAX_FUEL = 100.0;
FUEL_PER_SEC = 3.0;
SAFE_SPEED = 0.75;
LAND_SPEED = 0.10;
type
{ TFuelLevel }
TFuelLevel = class
Level... |
unit l3Languages;
{ Константы и процедуры выдернуты из Windows.pas, входящего в состав Delphi 2009 }
interface
uses
l3Base,
l3ProtoObject;
(*
* Language IDs.
*
* The following two combinations of primary language ID and
* sublanguage ID have special semantics:
*
* Primary Language ID Sublanguage ID... |
{*******************************************************}
{ }
{ SoftName }
{ }
{ Copyright (C) 2014 }
{ ... |
unit avl_tree;
interface
uses SysUtils, Math;
type
Pavl_node = ^Tavl_node;
Tavl_node = record
parent, left, right : Pavl_node;
bf : integer;
prev, next : Pavl_node;
end;
{$IFDEF _LAMBDA_CALLBACK}
Tavl_cmp_func = TFunc<Pavl_node, Pavl_node, Pointer, integer>;
{$ELSE}
Tavl_cmp_func = ... |
unit TestClientFrm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TClientForm = class(TForm)
Cache: TButton;
Path: TEdit;
Label1: TLabel;
Links: TEdit;
Label2: TLabel;
Address: TEdit;
Label3: TLabel;
procedure CacheClick(... |
{ 2020/05/11 5.01 Move tests from unit flcTests into seperate units. }
{$INCLUDE flcTCPTest.inc}
unit flcTCPTest_ClientServer;
interface
{$IFDEF TCPCLIENTSERVER_TEST}
uses
{$IFDEF OS_MSWIN}
Windows,
{$ENDIF}
SysUtils,
SyncObjs,
Classes,
flcStdTypes,
flcTCPUtils,
flcTCPConnection,
flc... |
{**************************************************}
{ }
{ WLXProc - Total Commander Lister API Wrapper }
{ Copyright (C) Alexey Torgashin }
{ http://uvviewsoft.com }
{ }
{*... |
unit InfoXAPPRSRTable;
interface
uses
Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf;
type
TInfoXAPPRSRRecord = record
PCode: String[4];
PName: String[30];
PAddress: String[30];
PCityState: String[25];
PZip: String[10];
PContact: String[30];
PPhone: String[30... |
unit uIndexMenu;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
function IndexMenu(const aPath: string): longint;
function LoadMenuFromLines(Const aLines: TStringList; const aPath: string): longint;
implementation
uses
uAppContext, FileUtil, uIndexCmd, uMenuItem, uTools, process, StreamIO, strutils;
f... |
unit uGSMainMenu;
interface
uses
glr_core,
glr_scene,
glr_gui,
glr_gamescreens,
glr_utils,
glr_tween;
type
{ TglrMainMenu }
TglrMainMenu = class (TglrGameScreen)
protected
Container: TglrNode;
GameName, AuthorName: TglrGuiLabel;
NewGameBtn, SettingsBtn, ExitBtn... |
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
unit Entidade.TipoSaida;
interface
uses SimpleAttributes;
type
TTIPO_SAIDA = class
private
FDESCRICAO: string;
FID: integer;
FTIPO: string;
procedure SetID(const Value: integer);
procedure SetDESCRICAO(const Value: string);
procedure SetTIPO(const Value: string);
published
[PK,AutoInc]
... |
{
DBAExplorer - Oracle Admin Management Tool
Copyright (C) 2008 Alpaslan KILICKAYA
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at... |
unit uSplashForm;
interface
uses
SysUtils,
Classes,
Controls,
Messages,
Windows,
Forms,
pngimage,
Graphics;
type
TSplashEkran = class(TCustomControl)
private
FAlphaDegeri: integer;
FResim: TPngImage;
FBitmap: TBitmap; // png resmin tutamac? i?in gerekli.
Fhand... |
unit ssBevel;
interface
uses
SysUtils, Classes, Controls, ExtCtrls, Graphics, Messages,
ssGraphUtil, ImgList, Windows;
const
clXPHotTrack = $206B2408;
type
TssMouseMoveEvent = procedure(Sender: TObject) of object;
TssVertAlignment = (vaTop, vaCenter, vaBottom);
TssMargins = class(TPersis... |
unit Main;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, LoggerInterface,
ThreadManager, System.SyncObjs;
type
TMainForm = class(TForm)
Memo: TMemo;
strict private
procedure Updat... |
unit Banks;
interface
type
TBanks = class
private
Fname: String;
Fnumber: String;
public
property number : String read Fnumber write Fnumber;
property name : String read Fname write Fname;
end;
implementation
end.
|
unit View.ImportaCapaFinanceiroDIRECT;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, cxGraphics, cxControls, cxLookAndFeels, cxLookAndFeelPainters, cxContainer, cxEdit,
dxSkinsCore, dxSkinsDefaultPainters, dx... |
unit DAO.Conexao;
interface
uses
FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def,
FireDAC.Stan.Pool, FireDAC.Stan.Async, FireDAC.Phys, Data.DB, FireDAC.Comp.Client, FireDAC.Phys.MySQLDef,
FireDAC.Phys.FB, System.SysUtils, FireDAC.DApt, FireDAC.VCL... |
unit CustomWebBrowser;
interface
uses
Windows, ActiveX, SHDocVw, Mshtmhst;
type
TCustomWebBrowser =
class(TWebBrowser, IServiceProvider, IDocHostUIHandler)
private // IServiceProvider
function QueryService(const rsid, iid: TGuid; out Obj): HResult; stdcall;
private // IDoc... |
unit Model.CCEPDistribuidor;
interface
uses Common.ENum, FireDAC.Comp.Client;
type
TCCEPDistribuidor = class
private
FAcao: TAcao;
FFaixa: Integer;
FLOG: String;
FCCEP: String;
FCodigoDistribuidor: Integer;
FGrupo: Integer;
public
property CodigoDistribuidor: Integer read FCodi... |
unit deco_common;
interface
uses {$IFDEF WINDOWS}windows,{$ENDIF}gfx_engine,ym_2203,ym_2151,oki6295,hu6280,
cpu_misc,main_engine;
type
tdeco16_sprite=class
constructor create(gfx,pant:byte;global_x_size,color_add,mask:word);
destructor free;
public
ram:array[0..$3ff] of word;
procedure ... |
unit DMPools;
interface
uses
System.SysUtils, System.Classes, System.Types, Generics.Collections, YWTypes;
type
TDataModuleClass = class of TDataModule;
TDataModuleHelper = class helper for TDataModule
procedure ReturnToPool;
procedure ResetPool;
procedure AfterGet; virtual;
proc... |
unit ChangeLoanNumberForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons,sLabel , sEdit, sBitBtn;
type
TfrmChangeLoanNumber = class(TForm)
lblText: TsLabel;
btnOk: TsBitBtn;
btnCancel: TsBitBtn;
edtNewNumber: TsEdit;
... |
unit FeatureParser;
interface
uses
FeatureParserIntf, FeatureIntf, Classes;
type
TFeatureParser = class(TInterfacedObject, IFeatureParser)
private
FErrors: IInterfaceList;
FFeatureFileName: string;
FLoadedFeature: TStringList;
function GetErrors: IInterfaceList;
function GetFeatureFileName... |
unit WorkJournalKeywordsPack;
{* Набор слов словаря для доступа к экземплярам контролов формы WorkJournal }
// Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\View\WorkJournal\Forms\WorkJournalKeywordsPack.pas"
// Стереотип: "ScriptKeywordsPack"
// Элемент модели: "WorkJournalKeywordsPack" MUID: (4A811C620210_P... |
unit uisplit;
interface
uses ui, uimpl, uihandle, uicomp, uipanel;
type
TWinSplit=class(TWinComp)
private
wSplitAlign:TAlign;
wWin1, wWin2:TWinComp;
wSplitActive:boolean;
protected
procedure SplitterPerform(deltaX,deltaY:integer);
public
constructor Create(Owner:TWinHan... |
unit uGioCreateDirectoryOperation;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
uFileSourceCreateDirectoryOperation,
uFileSource;
type
TGioCreateDirectoryOperation = class(TFileSourceCreateDirectoryOperation)
public
procedure MainExecute; override;
end;
implementation
uses
uFileSourceO... |
unit uComunicaServer;
interface
uses
FGX.ProgressDialog, FMX.Dialogs, Data.FireDACJSONReflect;
type
TComunicaServer = class(TObject)
private
FvloProgresso: TfgActivityDialog;
FvlsMensagemErro: String;
procedure SetvloProgresso(const Value: TfgActivityDialog);
... |
unit uContaEmailVO;
interface
uses
System.SysUtils;
type
TContaEmailVO = class
private
FEmail: string;
FAtivo: Boolean;
FCodigo: Integer;
FId: Integer;
FAutenticarSSL: Boolean;
FSMTP: string;
FSenha: string;
FPorta: Integer;
FNome: string;
FAutenticar: Boolean;
proce... |
unit cmdlinecfgjson;
{$mode delphi}
interface
uses
Classes, SysUtils, cmdlinecfg, fpjson, jsonparser;
function CmdLineCfgJSONReadFile(stream: TStream; cfg: TCmdLineCfg): Boolean; overload;
function CmdLineCfgJSONReadFile(const FileName: String; cfg: TCmdLineCfg): Boolean; overload;
procedure CmdLineCfgJSONLoadFil... |
unit EventType;
interface
uses
Pkg.Json.DTO, System.Generics.Collections, REST.Json.Types;
{$M+}
type
TEventTypes = class
private
FId: string;
[JSONName('label')]
FLabel: string;
FName: string;
FStatus: string;
published
property Id: string read FId write FId;
... |
unit evSimpleTextPainter;
{* Класс для раскраски строк текста. Без нарезки на строки. И без форматирования таблиц в псевдографику. Для решения задачи [$91848978]. }
// Модуль: "w:\common\components\gui\Garant\Everest\evSimpleTextPainter.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TevSimpleTextPainter" MUID: ... |
unit alcuMultiOperationRequest;
// Модуль: "w:\archi\source\projects\PipeInAuto\Tasks\alcuMultiOperationRequest.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TalcuMultiOperationRequest" MUID: (57F206DC02EB)
{$Include w:\archi\source\projects\PipeInAuto\alcuDefine.inc}
interface
{$If Defined(ServerTasks)}
use... |
unit TestUnmarshalOptimizationParametersUnit;
interface
uses
TestFramework, SysUtils,
TestBaseJsonUnmarshalUnit,
IOptimizationParametersProviderUnit;
type
TTestUnmarshalOptimizationParameters = class(TTestBaseJsonUnmarshal)
private
procedure CheckEquals(Etalon: IOptimizationParametersProvider; TestName... |
unit uValidaSerial;
interface
uses System.SysUtils;
function validarSerial(Serial: string; cnpj: string): TDate;
implementation
uses uAuxValidacao;
var
Serial: string;
procedure setSerial(pSerial: string);
begin
Serial := StringReplace(pSerial, '-', '', [rfReplaceAll]);
end;
function getSerial(): string;
be... |
unit DAO.Sistemas;
interface
uses FireDAC.Comp.Client, System.SysUtils, DAO.Conexao, Model.Sistemas, Control.Sistema;
type
TSistemasDAO = class
private
FConexao : TConexao;
public
constructor Create;
function Inserir(ASistemas: TSistemas): Boolean;
function Alterar(ASistemas: TSistemas): Boolea... |
unit f2ScnSplash;
interface
uses
d2dTypes,
d2dInterfaces,
d2dSprite,
d2dApplication,
f2Application,
f2Scene;
type
Tf2SplashScene = class(Tf2Scene)
private
f_Logo: Td2dSprite;
f_CurCol: Single;
f_Pause: Single;
f_Speed: Integer;
f_Version: string;
f_VFont: Id2dFont;
f_VX: Integer;
f_VY: Intege... |
unit GetRoutesUnit;
interface
uses SysUtils, BaseExampleUnit, DataObjectUnit;
type
TGetRoutes = class(TBaseExample)
public
function Execute(Limit, Offset: integer): TDataObjectRouteList;
end;
implementation
function TGetRoutes.Execute(Limit, Offset: integer): TDataObjectRouteList;
var
ErrorString: ... |
unit BlockView;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Kernel;
type
TBlockViewer = class(TForm)
Memo: TMemo;
BlockId: TLabel;
procedure FormCreate(Sender: TObject);
private
fFacility : TFacility;
private
procedure SetFacility( ... |
{ Subroutine SST_SYMBOL_NEW_NAME (NAME,SYMBOL_P,STAT)
*
* Add a new symbol to the current scope. It is an error if the symbol
* already exists in that name space, although it may exists in more global
* name spaces. NAME is the name of the new symbol to create.
* SYMBOL_P is returned pointing to the newly c... |
unit uEmailBase;
interface
uses
System.SysUtils, System.Generics.Collections;
type
TEmailBase = class
private
FDestinatario: string;
FCopiaOculta: string;
FArquivoAnexo: string;
FConfirmarLeitura: Boolean;
FMeuNome: string;
FCopia: string;
FNivelPrioridade: Integer;
FMeuEmail: s... |
unit UClasses;
interface
uses
ExtCtrls, Controls, SysUtils, Classes;
const
QtdLeftMov :integer = 57;
QtdTopMov :integer = 53;
type
TTipoObj = (toRaposa, toGanso, toMovN, toMovC); //movNormal, movComer
TPeca = class(TObject)
private
pCodigo,
pTop,
pLeft,
pX,
pY :intege... |
(* _______________________________________________________________________
| |
| CONFIDENTIAL MATERIALS |
| |
| These mat... |
{$include lem_directives.inc}
unit LemAnimationSet;
interface
uses
Classes, GR32,
LemCore,
LemTypes,
LemMetaAnimation,
LemAnimation;
type
{-------------------------------------------------------------------------------
base class animationset
---------------------------------------... |
PROGRAM Split(INPUT, OUTPUT);
{Копирует INPUT в OUTPUT, сначала нечётные, а затем
чётные элементы}
VAR
Ch, Next: CHAR;
Odds, Evens: TEXT;
PROCEDURE CopyOut(VAR F1: TEXT);
VAR
Ch: CHAR;
BEGIN {CopyOut}
RESET(F1);
WHILE NOT EOF(F1)
DO
BEGIN
WHILE NOT EOLN(F1)
DO
BEGIN
RE... |
{
Steam Utilities
Copyright (C) 2016, Simon J Stuart, All Rights Reserved
Original Source Location: https://github.com/LaKraven/SteamUtils
License:
- You may use this library as you see fit, including use within commercial applications.
- You may modify this library to suit your needs, without the requ... |
{
义乌科创计算机有限公司软件部
Dcopyboy
Email:dcopyboy@tom.com
QQ:445235526
添加 Usejis 参数 可在
当 Usejis :=true时 采用 日文(SHIFT JIS) 编码
反之采用机内码编码,成功解决 QRCode 汉字乱码问题。
}
unit QRCode;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, Clipbrd;
const
{ 符号化モード }
... |
unit cCadSetores;
interface
uses System.Classes,Vcl.Controls,
Vcl.ExtCtrls,Vcl.Dialogs,FireDAC.Comp.Client,System.SysUtils;//LISTA DE UNITS
type
TSetor = class
private
//VARIAVEIS PRIVADA SOMENTE DENTRO DA CLASSE
ConexaoDB: TFDConnection;
F_cod_setor:Integer;
F_Setor:string;
function getcodigo: integer;
func... |
unit UFrameKP;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, Buttons, UTreeItem, IniFiles, UFrameMain;
type
TItemKP = class;
TFrameKP = class(TFrame)
GroupBox1: TGroupBox;
Panel: TPanel;
Label1: TLabel;
Label2: TLabel;
Label3... |
unit frSearch;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Themes,
ADC.Types, ADC.Common, Vcl.Buttons, Vcl.ExtCtrls;
type
TPanel = class(Vcl.ExtCtrls.TPanel)
private
procedure... |
unit qstring;
//{$I 'qdac.inc'}
interface
{$REGION 'History'}
{
本源码来自QDAC项目,版权归swish(QQ:109867294)所有。
(1)、使用许可及限制
您可以自由复制、分发、修改本源码,但您的修改应该反馈给作者,并允许作者在必要时,
合并到本项目中以供使用,合并后的源码同样遵循QDAC版权声明限制。
您的产品的关于中,应包含以下的版本声明:
本产品使用的JSON解析器来自QDAC项目中的QJSON,版权归作者所有。
(2)、技术支持
有技术问题,您可以加入QDAC官方QQ群250530692共同探讨。
(3)、赞助
... |
unit evUnicodeFormulasToUnicodeConverter;
// Модуль: "w:\common\components\gui\Garant\Everest\evUnicodeFormulasToUnicodeConverter.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TevUnicodeFormulasToUnicodeConverter" MUID: (561E7E4B0034)
{$Include w:\common\components\gui\Garant\Everest\evDefine.inc}
interface
... |
unit Model.Acessos;
interface
uses Common.ENum, FireDAC.Comp.Client, Vcl.ActnList;
type
TAcessos = class
private
FAcao: TAcao;
FMenu: Integer;
FSistema: Integer;
FUsuario: Integer;
FModulo: Integer;
FAdministrador: String;
public
property Sistema: Integer read FSistema write FSiste... |
unit uListaCompra;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uModeloRel, StdCtrls, Buttons, Mask, JvExMask, JvToolEdit, DB,
ZAbstractRODataset, ZDataset, frxClass, frxDBSet, ExtCtrls, JvExControls,
JvNavigationPane, JvComponentBase, JvFormPlacement, JvE... |
unit alcuDetachedExecutor;
// Модуль: "w:\archi\source\projects\PipeInAuto\Tasks\alcuDetachedExecutor.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TalcuDetachedExecutor" MUID: (54BE24CC00D4)
{$Include w:\archi\source\projects\PipeInAuto\alcuDefine.inc}
interface
{$If Defined(ServerTasks)}
uses
l3IntfUses
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.