text
stringlengths
14
6.51M
unit enet_callbacks; (** @file callbacks.c @brief ENet callback functions 1.3.12 freepascal - fix callback pointer nil check *) interface uses enet_consts, enet_socket; function enet_initialize_with_callbacks (version : integer; inits : pENetCallbacks):integer; function enet_malloc (size : ene...
unit uGame; interface uses glr_math, glr_core, glr_scene, glr_render, glr_mesh, glr_filesystem, glr_utils, glr_resload; type { TGame } TGame = class (TglrGame) protected dx, dy: Integer; Camera: TglrCamera; Material: TglrMaterial; Shader: TglrShaderProgram; mesh: T...
unit uCidadeController; interface uses System.SysUtils, uDMCidade, uRegras, uEnumerador, uDM, Data.DB, Vcl.Forms, uFuncoesSIDomper, Data.DBXJSON, Data.DBXJSONReflect, uConverter, uGenericProperty; type TCidadeController = class private FModel: TDMCidade; FOperacao: TOperacao; procedure Post; pu...
PROGRAM TestRemove(INPUT, OUTPUT); {Программа тестирует модуль Queue: 1) Записывает в Q INPUT 2) Выводит Q в OUTPUT} USES Queue; VAR Ch: CHAR; BEGIN {TestRemove} EmptyQ; WHILE NOT EOLN DO BEGIN READ(Ch); AddQ(Ch) END; WRITE('Вход: '); WriteQ; EmptyQ; WRITE('Выход: '); WriteQ END....
unit vcmHistory; {* Объект, реализующий работу с историей приложения. } { Библиотека "vcm" } { Автор: Люлин А.В. © } { Модуль: vcmHistory - } { Начат: 06.06.2003 15:58 } { $Id: vcmHistory.pas,v 1.185 2012/10/26 14:14:26 lulin Exp $ } // $Log: vcmHistory.pas,v $ // Revision 1.185 2012/10/26 14:14:26 lu...
unit SendToF; interface uses Windows, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, DBTables, DB, StdCtrls, Grids, DBGrids, ComCtrls, DBClient; type TForm1 = class(TForm) EditCapital: TEdit; EditPopulation: TEdit; EditArea: TEdit; Label1: TLabel; Label2: TLabel; Label3: TLabel;...
unit RTTIUtils; interface type // TTypeValidade = (NotNull, MinLength); // // Validade = class(TCustomAttribute) // private // public // constructor Create(TypeValidade : TTypeValidade); // end; NotNull = class(TCustomAttribute) private FMensagem: String; procedure SetMe...
{ You must register your application for "Show notifications in action center" "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\$prodName" -Name "ShowInActionCenter" -Type Dword -Value "1" } unit uNotify; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, Syste...
{====================================================} { } { EldoS Visual Components } { } { Copyright (c) 1998-2003, EldoS Corporation } { ...
unit DW.Androidapi.JNI.Support; {*******************************************************} { } { Kastri Free } { } { DelphiWorlds Cross-Platform Library ...
object Form1: TForm1 Left = 307 Top = 138 Width = 849 Height = 636 Caption = 'Pearson Hash Code Generator (Monte Carlo Method)' Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif' Font.Style = [] OldCreateOrder = Fa...
unit noise; {$ifdef fpc} {$mode delphi} {$endif} interface uses Classes, SysUtils; function IntNoise(x: Integer): Double; function Linear_Interpolate(a, b, x: Double): Double; function Cosine_Interpolate(a, b, x: Double): Double; function Cubic_Interpolate(v0, v1, v2, v3, x: Double): Double; implementation ...
unit DataTypes; interface type TCMDType = (cmtIOCPEvent, cmtAccept, cmtDisconnect, cmtTR_CODE); type TR_CODE = (ctDestAdd, ctDestDel, ctDestPushSend, ctDestRRSend, ctDestRRSendResponse, ctUserID, ctDisconnect, ctUserConnectOk, ctUsersAlready, ctClientUniqKey); type TDeliveryMode = (Delivery_RR, Delivery_RR_Re...
unit SPService; //monitorear una app //la app si termina ok crea el fichero // sino esta corriendo y esta el fichero lanzo la app // si esta corriendo la dejo corriendo // si el fichero no esta y no esta corriendo pongo en la traza // y envio un email a una address interface uses Windows, Messages, SysUtils...
unit Solid.Samples.SRP.BookWrong; interface uses System.SysUtils; type TBook = class private FAuthor: string; FPage: Integer; FTitle: string; procedure SetAuthor(const AValue: string); procedure SetTitle(const AValue: string); procedure SetPage(const Value: Integer); ...
program ch10 (data9cust, data9apts, output); { Alberto Villalobos April 20, 2014 Chapter 10 assignment Description: A users fills out a string of 30 characters, y or n, representing a feature they desire, then there is a 20 character long address. Compare it to other entries and type possible if the matches ar...
PROGRAM TreeSort(INPUT, OUTPUT); { Сортировка бинарным деревом } TYPE Tree = ^Node; Node = RECORD Key: CHAR; BalanceLeft, BalanceRight: INTEGER; Left, Right: Tree; END; VAR Root: Tree; Ch: CHAR; Balanced: BOOLEAN; PROCEDURE DoBalance(VAR Ptr: Tree); VAR Saved...
unit tdLDAPEnum; interface uses System.Classes, Winapi.Windows, System.SysUtils, System.AnsiStrings, System.TypInfo, System.DateUtils, Winapi.ActiveX, ADC.LDAP, JwaRpcdce, ActiveDs_TLB, MSXML2_TLB, ADC.Types, ADC.DC, ADC.Attributes, ADC.ADObject, ADC.ADObjectList, ADC.Common, ADC.AD; type TLDAPEnum = class...
program crctest; {$mode objfpc} {$h+} uses sysutils, crc; const testseq1: string = 'MNIIQGNLVGTGLKIGIVVGRFNDFITSKLLSGAEDALLRHGVDTNDIDVAWVPGAFEIPFAAKKMAETKKYDAIITLGTVIRGATTSYDYVCNEAAKGIAQAANTTGVPVIFGIVTTENIEQAIERAGTKAGNKGVDCAVSAIEMANLNRSFE'; testseq2: string = 'MNIIQGNLVGTGLKIGIVVGRFNDFITSKLLSGAEDALLRHGVDTNDI...
unit UBaseType; interface uses U32Bytes, UDynRawBytes, URawBytes, U256RawBytes; type { TBaseType } TBaseType = Class public class procedure T32BytesToRawBytes(const source : T32Bytes; var dest : TDynRawBytes); overload; class function T32BytesToRawBytes(const source : T32Bytes) : TDynRawBytes; overlo...
{ *********************************************************** } { * TForge Library * } { * Copyright (c) Sergey Kasandrov 1997, 2017 * } { *********************************************************** } unit tfSalsa20; {$I TFL.inc} interface uses tf...
unit dcLabel; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, DataController, dbctrls, db, FFSTypes; type TdcLabel = class(TLabel) private { Private declarations } fdcLink : TdcLink; fTranData : String; function Ge...
unit Model.ListagemMovimentacoesJornal; interface uses FireDAC.Comp.Client, System.SysUtils, DAO.Conexao, Controller.Sistema, Common.ENum, Common.Utils, System.DateUtils, Model.PlanilhaMovimentacaoJornal; type TMovimentacoes = class private FProduto: String; FBairro: String; FCodigo: String; ...
{ Clever Internet Suite Copyright (C) 2013 Clever Components All Rights Reserved www.CleverComponents.com } unit clZLibBuffer; interface {$I clVer.inc} uses {$IFNDEF DELPHIXE2} Classes, SysUtils, {$ELSE} System.Classes, System.SysUtils, {$ENDIF} clUtils, clZLibBase, clWUtils; type TclDeflateBuffer ...
unit uTokenThread; interface uses Winapi.Windows, System.SysUtils, System.Classes, Winapi.ActiveX, Winapi.WinInet, Winapi.ShellAPI, Winapi.Messages, ManSoy.Encode, uData, IdTCPClient, IdHTTP; type PQQTokensData = ^TQQTokensData; TQQTokensData = packed record szEvent:string[50]; szQQUin...
unit OrgForm; interface uses Windows, Forms, SysUtils, Messages, Classes, ExtCtrls, Controls, Dialogs; type TOrgForm = class private FFormActivo: TForm; FPanel: TPanel; FParent: string; procedure SetFormActivo(const Value: TForm); protected public property FormActivo: TForm read FFormAct...
unit eePicture; { Библиотека "Эверест" } { Автор: Люлин А.В. © } { Модуль: eePicture - } { Начат: 12.02.2003 18:34 } { $Id: eePicture.pas,v 1.1 2015/01/20 11:54:23 lulin Exp $ } // $Log: eePicture.pas,v $ // Revision 1.1 2015/01/20 11:54:23 lulin // - правим зависимости. // // Revision 1.1 2014/12/09 14...
{====================================================} { } { EldoS Visual Components } { } { Copyright (c) 1998-2003, EldoS Corporation } { ...
{ *********************************************************************************** } { * CryptoLib Library * } { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * } { * Github Repository <https://github.co...
unit uFireDAC; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Data.DB, FireDAC.Comp.DataSet, FireDAC.Comp.Client, Data.DBXFirebird, Data.FMTBcd, Data.SqlExpr, Datasnap.DBClient, Datasnap.Provider, System.Gen...
unit PI.View.DeviceInfo; interface uses // RTL System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, // FMX FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls, FMX.Objects, FMX.Layouts, FMX.Controls.Presentation, FMX.Edit, FMX.ImgList, // PushIt...
{ $Project$ $Workfile$ $Revision$ $DateUTC$ $Id$ This file is part of the Indy (Internet Direct) project, and is offered under the dual-licensing agreement described on the Indy website. (http://www.indyproject.org/) Copyright: (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All r...
unit UNPC; interface uses Classes, SysUtils, Graphics, Controls, TypInfo, // self-made units UMapCommon, UConfig, UCommon; type NNpcParam = (npID, npName, npScript, npDialog, npPortrait, npWanderModel, npWanderRatio, npTradeType, npObjImgID, npWanderPoints); NWanderModel =...
{ *********************************************************************************** } { * CryptoLib Library * } { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * } { * Github Repository <https://github.co...
unit FiltersKeywordsPack; {* Набор слов словаря для доступа к экземплярам контролов формы Filters } // Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\View\Filters\Forms\FiltersKeywordsPack.pas" // Стереотип: "ScriptKeywordsPack" // Элемент модели: "FiltersKeywordsPack" MUID: (4ABCD2BC0302_Pack) {$Include w:\g...
unit DAO.LogradourosCEP; interface uses FireDAC.Comp.Client, System.SysUtils, DAO.Conexao, Model.LogradourosCEP; type TLogradourosCEPDAO = class private FConexao: TConexao; public constructor Create; function GetID(): Integer; function Inserir(ALogradouros: TLogradouroCEP): Boolean; functio...
unit daSelectField; // Модуль: "w:\common\components\rtl\Garant\DA\daSelectField.pas" // Стереотип: "SimpleClass" // Элемент модели: "TdaSelectField" MUID: (5551DCD200EE) {$Include w:\common\components\rtl\Garant\DA\daDefine.inc} interface uses l3IntfUses , l3ProtoObject , daInterfaces ; type TdaSelectField = ...
unit IDocSpc; {$Include l3Define.inc} { $Id: IDocSpc.pas,v 1.118 2015/04/06 09:38:27 lukyanets Exp $ } {.$I evDefine.inc} interface Uses SysUtils, Windows, l3Types, l3Base, l3Date, evTypes, evCustomEditor, DT_Types, DT_Query, DT_IndexSupport, D_TxSrch, CustEditWin, EditWin; ...
// ********************************************************************** // // Copyright (c) 2001 MT Tools. // // All Rights Reserved // // MT_DORB is based in part on the product DORB, // written by Shadrin Victor // // See Readme.txt for contact information // // *****************************************************...
{ ESM 2 JSON exporter. } unit esm2json_exporter; var json_output: TStringList; json_filecount: integer; // Called before processing // You can remove it if script doesn't require initialization code function Initialize: integer; begin Result := 0; json_output := TStringList.Create; // PrintElementTypes();...
{ Unit : verslab.pas Description : A TCustomLabel derivative that displays Win32 VersionInfo data Version : 1.02, 1 July 1997 Status : Freeware Contact : Marc Evans, marc@leviathn.demon.co.uk History: v1.01 : fixed bug stopping LangCharSet from actually doing anything ...
(* * Copyright (c) 2010-2020, Alexandru Ciobanu (alex+git@ciobanu.org) * 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 * ...
unit kwSetActivePage; {* *Формат:* ID_вкладки окно_редактора:перейти_на_вкладку *Описание:* Делает активной вкладку с номером ID_вкладки. *Примечания:* Константы с номерами вкладок находятся в файле: [code] w:\archi\source\projects\Archi\TestSet\Dictionary\ArchiControls.script" [code] } // Модуль: "w:\archi\source...
unit DrawForm; interface uses Windows, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, Types, DBTables, DB, Grids, DBGrids, ExtCtrls, StdCtrls, DBCtrls, DBClient; type TForm1 = class(TForm) DataSource1: TDataSource; DBGrid1: TDBGrid; cds: TClientDataSet; cdsSpeciesNo: TFloatField; cd...
unit uMain; interface { Copyright 2020 Dmitriy Sosnovich, dmitriy@sosnovich.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitati...
unit umpgSelectableStringList; interface uses Classes; type TmpgSelectableStringList = class(TObject) private FItems : TStrings; FMultiSelect: Boolean; FnItemIndex: integer; FOnChange: TNotifyEvent; FSelected : TStrings; function GetSelCount: Integer; function GetSelected(Index: Int...
unit Win95FileViewers; // Copyright (c) 1996 Jorge Romero Gomez, Merchise. interface uses Windows, ShellGUID; const // FileViewerShowInfo Flags FVSIF_RECT = $00000001; FVSIF_PINNED = $00000002; FVSIF_NEWFAILED = $08000000; FVSIF_NEWFILE = $80000000; FVSIF_CANVIEWIT = $40000000...
unit f2LinkParser; interface uses jclStringLists, RegExpr, d2dTypes, d2dFont, d2dFormattedText, furqContext; function OutTextWithLinks(const aStr: string; const aTAT: Id2dTextAddingTool; const aContext: TFURQContext; const aActions: IJclStringList = nil): string; implementation uses ...
unit MoabTutorial; interface uses SysUtils, Tasks; const tidTask_ClusterMoab = 'MoabTutorial'; tidTask_Moab_MainHeadquarter = 'MoabMainHq'; tidTask_Moab_SelectProduct = 'MoabSelProduct'; tidTask_Moab_PharmaTutorial = 'MoabPharmaTutorial'; procedure RegisterTasks; i...
unit MapCustom; interface uses Engine; type TMapCustom = class(TObject) private FHeight: Integer; FWidth: Integer; function GetHeight: Integer; function GetWidth: Integer; public constructor Create; procedure Clear; virtual; abstract; procedure Render; virtual; abstr...
program squareroot(input, output); var number : real; function squareroot(val : real) : real; const EPSILON = 1E-6; var root : real; begin if val = 0 then squareroot := 0 else begin root := 1; repeat root := (val / root + root) / 2 until abs(val / sqr(root) - 1) < EPSILON; squareroot := root end; e...
unit UEndereco; interface uses Rest.client,REST.Types, System.SysUtils, System.JSON, Rest.Json; type TEndereco = class private FLogradouro: String; FBairro: String; FCep: String; FNumero: String; FComplemento: String; Flocalidade: String; FPais: String; FUf: Stri...
unit InternetSecurityManager; interface uses Windows, ActiveX, URLMon2; type TInternetSecurityManager = class(TInterfacedObject, IInternetSecurityManager) private function SetSecuritySite(pSite : IInternetSecurityMgrSite) : HRESULT; stdcall; function GetSecuritySite(out ...
unit umain; {$mode objfpc}{$H+} interface uses Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, Buttons, StdCtrls, acs_file, acs_audio, EditBtn,acs_classes,acs_mixer; type { TfMain } TfMain = class(TForm) bOpen: TBitBtn; Mixer1: TACSMixer; AudioIn1: TACSAudioIn; FileOut1:...
unit SceneAbout; interface uses DGLE, DGLE_Types, Engine, SceneCustom, SceneManager, Button; type TSceneAbout = class(TSceneCustom) private BackButton: TButton; public constructor Create; destructor Destroy; override; procedure Render(); override; procedure Update(); override;...
program letters; var i : char; begin for i := 'a' to 'z' do begin write(i, ' '); end; writeln() end.
unit Model.CadastroEmpresa; interface uses Common.ENum, FireDAC.Comp.Client, Dialogs; type TCadastroEmpresa = class private FID: Integer; FCPFCNPJ: System.String; FTipoDoc: String; FNome: System.String; FAlias: System.string; FSUFRAMA: System.String; ...
unit MFichas.Model.Empresa; interface uses System.SysUtils, MFichas.Model.Empresa.Interfaces, MFichas.Model.Entidade.EMPRESA, MFichas.Model.Conexao.Interfaces, MFichas.Model.Conexao.Factory, ORMBR.Container.ObjectSet.Interfaces, ORMBR.Container.ObjectSet, ORMBR.Container.DataSet.Interfaces, ORMBR....
{ 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 GuiHelpers_DB; interface uses typex, systemx, stringx, classes, controls, storageenginetypes, extctrls, stdctrls, variants, vcl.comctrls; procedure SyncRowSetTocomboBox(rs: TSERowSet; cb: TComboBox; sField: string); procedure SyncRowSetToListView(rs: TSERowSet; lv: TListView); procedure SyncRowSetToListViewFi...
unit VSMRestClientParamHeaderDto; interface type TVSMRestClientParamHeaderDto = class private FValor: String; FNome: String; procedure SetNome(const Value: String); procedure SetValor(const Value: String); public constructor create(nome, valor: string); published property nome: String ...
unit vcmTabbedContainerFormDispatcherUtils; // Модуль: "w:\common\components\gui\Garant\VCM\implementation\Visual\ChromeLike\vcmTabbedContainerFormDispatcherUtils.pas" // Стереотип: "UtilityPack" // Элемент модели: "vcmTabbedContainerFormDispatcherUtils" MUID: (558163840015) {$Include w:\common\components\gui\Garant\...
unit ObjdsDemoForm; interface uses MdDsList, MdDsCustom, TypInfo, DB, Classes, SysUtils; type TMdObjDataSet = class(TMdListDataSet) private PropList: PPropList; nProps: Integer; FObjClass: TPersistentClass; ObjClone: TPersistent; FChangeToClone: Boolean; procedure SetObjClass(const Valu...
unit udmAtualizacoes; interface uses Windows, System.UITypes,Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, udmPadrao, IBC, DB, MemDS, DBAccess; type TdmAtualizacoes = class(TdmPadrao) qryManutencaoID: TIntegerField; qryManutencaoNOME: TStringField; qryManutencaoVERSAO: ...
unit UDssAbout; { Copyright 2012 Document Storage Systems, Inc.      Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0      Unless required by...
{ Subroutine SST_W_C_ASSIGN (V, EXP) * * Write a complete assignment statement. This may actually expand out into * several statements. The assignment variable is specified by VAR. * EXP is the descriptor for the assignment value expression. } module sst_w_c_ASSIGN; define sst_w_c_assign; %include 'sst_w_c.in...
unit GX_ProcedureListOptions; interface uses Types, Classes, Graphics, Controls, Forms, ExtCtrls, StdCtrls, GX_BaseForm; type TProcedureListOptions = class(TObject) private FAlignmentChanged: Boolean; FDialogFont: TFont; FCodeViewFont: TFont; FCodeViewAlignment: TAlign; FBound...
unit UCustomCells; interface uses System.SysUtils, System.Types, System.UITypes, DateUtils, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.TMSNativeUIBaseControl, FMX.TMSNativeUITableView, FMX.TMSNativeUITableViewMail, iOSApi.Foundation, FMX.TMSNativeUITextView, FMX.TMS...
unit k2TagFilter; { Библиотека "K-2" } { Автор: Люлин А.В. © } { Модуль: k2TagFilter - } { Начат: 14.05.2004 20:28 } { $Id: k2TagFilter.pas,v 1.10 2014/03/27 14:20:07 lulin Exp $ } // $Log: k2TagFilter.pas,v $ // Revision 1.10 2014/03/27 14:20:07 lulin // - переходим от интерфейсов к объектам. // // Re...
// handles reading and writing of the code formatter settings to an ini file or // any other implementation of the IConfigReader and IConfigWriter interface // Original Author: Thomas Mueller (http://www.dummzeuch.de) unit GX_CodeFormatterConfigHandler; {$I GX_CondDefine.inc} interface uses Windows, ...
unit xInetScanner; interface uses SysUtils, Classes, WinInet, Contnrs, StrUtils, EmbeddedWB, Windows, SHDocVw, MSHTML; type TxInetAccessType = (atDirect, atPreconfig, atPreconfigWithNoAutoProxy, atProxy); TxInetConnectionFlagsType = (cfAsync, cfFromCache, cfOffline); TxInetConnectionFlags = set o...
unit idlParser; { Unit which parses idl (interface description language) files into a TIDLList struct. Copyright (C) 2012 Joost van der Sluis/CNOC joost@cnoc.nl 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 ...
{$Define dyn_unzip32} unit Unzip; { Copyright (c) 2004 headcrash industries. All rights reserved. Author: Gerke Preussner <j3rky@gerke-preussner.de> Updated for Delphi 4 by Alexey Torgashin <atorg@yandex.ru> This file belongs to the InfoZIP UnZip for Delphi Wrapper. Please read the license agreem...
unit LocalOrdersFrame; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, ComCtrls, ToolWin, LocalOrdersUnit, Menus, ActnList, ImgList, Buttons; type TFrameLocalOrders = class(TFrame) toolbarLocOrders: TToolBar; tbLoadLi...
{ Subroutine SST_SCOPE_OLD * * Set the parent of the current scope as the new current scope. } module sst_SCOPE_OLD; define sst_scope_old; %include 'sst2.ins.pas'; procedure sst_scope_old; {pop back to parent scope} begin sst_scope_p := sst_scope_p^.parent_p; sst_names_p := sst_scope_p; end;
unit DataObjectOptimizationsResponseUnit; interface uses REST.Json.Types, GenericParametersUnit, DataObjectUnit; type TDataObjectOptimizationsResponse = class(TGenericParameters) private [JSONName('optimizations')] FOptimizations: TArray<TDataObject>; public property Optimizations: TArray<TData...
module AVLTREE ; (**************************************************************) (* *) (* Portierung des AVLTREE Moduls nach Pascal *) (* Soll funktionieren fuer beliebige AVL-Baeume *) (* Key- und Datendefinition kommt "von a...
{ *************************************************************************** } { } { This file is part of the XPde project } { } ...
unit http_helpers; interface uses System.JSON, http_intf; function badRequest(const AError: TJSONObject): IHttpResponse; function serverError: IHttpResponse; function OK(const Value: TJSONObject): IHttpResponse; implementation function badRequest(const AError: TJSONObject): IHttpResponse; begin result := TH...
unit uDBImages; interface uses Windows, Messages, Classes, Controls, Graphics, DB, DBCtrls, Forms; type TImageType = (itUnknown, itBitmap, itJPG, itICO, itPNG); TImageTypes = set of TImageType; TpDBImage = class(TCustomControl) private FDataLink: TFieldDataLink; FPicture: TPicture; FBorderStyl...
unit MdiChilds.FmLatinValidator; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, MdiChilds.CustomDialog, JvComponentBase, JvDragDrop, Vcl.StdCtrls, Vcl.ExtCtrls, Vcl.ComCtrls, ActionHandler, MdiChilds.ProgressFor...
unit kwArchiNewDocument; {* *Формат:* Создать *Описание:* Создание документа из файла. Имя файла совпадает с названием теста, но используется расширение evd. *Пример:* [code] Создать [code] *Результат:* Создает документ из файла Название_теста.evd *Примечания:* В скриптах напрямую практически не используется, так к...
unit PrimMain_Form; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // Библиотека "View" // Модуль: "w:/garant6x/implementation/Garant/GbaNemesis/View/PrimMain_Form.pas" // Родные Delphi интерфейсы (.pas) // Generated from UML model, root elem...
unit ControleContainerTO; interface uses Classes, DateUtils, SysUtils; type TOperacao = (Entrada, Saida); type TStatus = (Digitado, Pago, Cancelado, Baixado, ComSaida); type TFormaPgamento = (AVista, Faturado); {type TLocalizacao = class(Tpersistent) private FAndar: integer; FNumero: integer; ...
(*============================================================================== Программа : Система ведения договоров Модуль : Авторы : Смотрин А.А. Назначение : ==============================================================================*) unit SWIFT_UUtils; //////////////////////////////////////...
unit MdiChilds.ImportFromExcel.MatKeys; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, MdiChilds.ImportFromExcel, Vcl.StdCtrls, Vcl.ExtCtrls, ActionHandler, MdiChilds.ProgressForm, GsDocument, Parsers.Excel, Pars...
unit GeocodingActionsUnit; interface uses SysUtils, BaseActionUnit, CommonTypesUnit, BulkGeocodingRequestUnit, GeocodingUnit, EnumsUnit, DirectionPathPointUnit, GeocodingAddressUnit; type TGeocodingActions = class(TBaseAction) private function ParseXml(XmlString: String): TGeocodingList; public ///...
{ Subroutine SST_R_PAS_LIT_STRING (STR) * * Process the LIT_STRING syntax. The string represented by this syntax * is returned in STR. } module sst_r_pas_LIT_STRING; define sst_r_pas_lit_string; %include 'sst_r_pas.ins.pas'; procedure sst_r_pas_lit_string ( {read LIT_STRING syntax and return string} in ...
unit wwWorms; interface Uses Types, wwClasses, wwTypes, wwMinds; type TwwTarget = class (TwwThing) private f_Power: Integer; FPower: Integer; public constructor Create(aWorld: TwwWorld); reintroduce; procedure Ressurect; override; property Power: Integer read FPower; end; TwwWorm = cl...
unit nsLogEventData; // Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\Logging\nsLogEventData.pas" // Стереотип: "SimpleClass" // Элемент модели: "TnsLogEventData" MUID: (55B760CE036A) {$Include w:\garant6x\implementation\Garant\nsDefine.inc} interface uses l3IntfUses , l3SimpleObject , LoggingWrapperInte...
unit tanqueDao; interface uses Tanque, DB, DM, IBQuery, IBDataBase, Classes; type T_TanqueDao = class(TObject) private F_Qr: TIBQuery; F_Lista: TList; public constructor Create(db: TIBDataBase); destructor Destroy(); f...
unit BaseSearchContainerKeywordsPack; {* Набор слов словаря для доступа к экземплярам контролов формы BaseSearchContainer } // Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\View\BaseSearch\Forms\BaseSearchContainerKeywordsPack.pas" // Стереотип: "ScriptKeywordsPack" // Элемент модели: "BaseSearchContainerKeyw...
unit udmHorasAtendimento; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, udmPadrao, DBAccess, IBC, DB, MemDS; type TdmHorasAtendimento = class(TdmPadrao) qryManutencaoCGC: TStringField; qryManutencaoTREINAMENTO: TStringField; qryManutencaoDESENVOL...
unit GX_Experts; {$I GX_CondDefine.inc} interface uses Classes, Graphics, Forms, ActnList, Menus, GX_Actions, GX_ConfigurationInfo, GX_BaseExpert; type TGX_Expert = class(TGX_BaseExpert) private FShortCut: TShortCut; FAction: IGxAction; procedure ActionOnUpdate(Sender: TObject); ...
unit TestTelematicsSamplesUnit; interface uses TestFramework, Classes, SysUtils, BaseTestOnlineExamplesUnit; type TTestTelematicsSamples = class(TTestOnlineExamples) private published procedure GetAllVendors; procedure GetVendor; procedure SearchVendors; procedure CompareVendors; end; i...
{!DOCTOPIC}{ TimeUtils module } {!DOCREF} { @method: var TimeUtils = TObjTime; @desc: Miscellaneous time related functions } {!DOCREF} { @method: function TimeUtils.Time(Offset:Double=0): Double; @desc: Return the time in seconds since the unix-epoch, as double. [code=pascal]...[/code] ...
unit DmdConnection; interface uses System.SysUtils, System.Classes, IdCoderMIME, 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, FireDAC.Phys.FB, FireDAC.Phys.FBDef, FireDAC.VCLUI.Wait, Data....
unit LocaleMessages; interface type TLocaleMessages = ( c_ApplicationTitle , c_Publisher // Common , c_CommonErrorMessage , c_CommonFileNotFound , c_CommonNotEmptyValueRequired , c_CommonUnableStartProcess , c_CommonUnexpectedException , c_CommonUnrecognisedParameterValue // Garant , c_GarantCann...
{ Clever Internet Suite Copyright (C) 2013 Clever Components All Rights Reserved www.CleverComponents.com } unit clServerGuard; interface {$I clVer.inc} uses {$IFNDEF DELPHIXE2} Classes, Contnrs, SyncObjs, Windows, {$ELSE} System.Classes, System.Contnrs, System.SyncObjs, Winapi.Windows, {$ENDIF} clUti...
unit uSounds; interface uses // Delphi units Classes, // Third-party Bass, // Own units UCommon; type TChannelType = (ctUnknown, ctStream, ctMusic); TSound = class(THODObject) private FC: Byte; FChannelType: TChannelType; FTmpList, FSoundsList: TStringList; FChannel: ar...