text stringlengths 14 6.51M |
|---|
unit pia6821;
interface
type
in_handler=function:byte;
out_handler=procedure(valor:byte);
irq_handler=procedure(state:boolean);
cb_handler=procedure(state_out:boolean);
pia6821_chip=class
constructor Create;
destructor free;
public
irq_a_state,irq_b_state:boolean;
procedure reset;
f... |
unit K609602166;
{* [Requestlink:609602166] }
// Модуль: "w:\common\components\rtl\Garant\Daily\K609602166.pas"
// Стереотип: "TestCase"
// Элемент модели: "K609602166" MUID: (5625E50C0063)
// Имя типа: "TK609602166"
{$Include w:\common\components\rtl\Garant\Daily\TestDefine.inc.pas}
interface
{$If Defined(nsTest)... |
unit Test.Models;
interface
uses
Spring,
System.Variants;
type
TAddress = class
private
FStreet: string;
FNumHouse: integer;
public
property Street: string read FStreet;
property NumHouse: integer read FNumHouse;
constructor Create(const AStreet: string; const ANumHouse: integer... |
unit uImageConsts;
interface
type
TImageConsts = class
public
class function GetRequiredControlImagePath: string;
end;
const
cRequiredControlImagePath = 'C:\Users\Anonymous\Desktop\Projekty\WorkPoint\obr\ExclamationMark.png';
implementation
{ TImageConsts }
class function TImageConsts.GetRequiredContr... |
{ Invokable interface IServico }
unit ServicoIntf;
interface
uses InvokeRegistry, Types, XSBuiltIns, Classes, uLib;
type
{ Invokable interfaces must derive from IInvokable }
IServico = interface(IInvokable)
['{C10CE1E8-ED99-4A45-9DFD-ABDD9B0DEACB}']
function SendNotFis(ChaveAut: string; aNomeArquivo: strin... |
namespace Sugar.Test;
interface
uses
Sugar,
Sugar.IO,
RemObjects.Elements.EUnit;
type
FileUtilsTest = public class (Test)
private
const NAME: String = "sugar.testcase.txt";
private
FileName: String;
CopyName: String;
public
method Setup; override;
method TearDown; override;
me... |
unit atXMLScenarioGenerator;
// Модуль: "w:\quality\test\garant6x\AdapterTest\OperationsFramework\atXMLScenarioGenerator.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TatXMLScenarioGenerator" MUID: (483EC52400C9)
interface
uses
l3IntfUses
, atScenario
, atOperationBase
, XMLIntf
, SysUtils
;
type
EInva... |
unit K585129079_NSRC;
{* [RequestLink:585129079] }
// Модуль: "w:\common\components\rtl\Garant\Daily\K585129079_NSRC.pas"
// Стереотип: "TestCase"
// Элемент модели: "K585129079_NSRC" MUID: (5491A60A003A)
// Имя типа: "TK585129079_NSRC"
{$Include w:\common\components\rtl\Garant\Daily\TestDefine.inc.pas}
interface
... |
unit main;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, ShellApi, StrUtils ;
type
TForm1 = class(TForm)
txnType: TComboBox;
Label2: TLabel;
Label1: TLabel;
Label3: TLabel;
Label4: TLabel;
txnReference: TEdit;
... |
//Exercício 7: Escreva um algoritmo que receba o valor das 3 notas de um aluno, calcule e exiba sua média podenrada
//conforme a fórmula: (1ª prova(peso 2) + 2ª prova (peso 3) + 3ª prova(peso 4))/9
{ Solução em Portugol
Algoritmo Exercicio7;
Var
P1,P2,P3,media_ponderada: real;
Inicio
exiba("Programa que... |
unit LandInfo;
interface
uses
Land, Windows, Graphics, Collection;
const
LandMax = 10000;
type
PLandMatrix = ^TLandMatrix;
TLandMatrix = array[0..LandMax*LandMax] of TLandVisualClassId;
type
TLandClassInfo =
class( TInterfacedObject, ILandClassInfo )
public
const... |
unit vtFocusLabel;
{ Библиотека "" }
{ Начал: Люлин А.В. }
{ Модуль: vtFocusLabel - }
{ Начат: 29.03.2007 20:12 }
{ $Id: vtFocusLabel.pas,v 1.24 2013/05/14 14:37:20 morozov Exp $ }
// $Log: vtFocusLabel.pas,v $
// Revision 1.24 2013/05/14 14:37:20 morozov
// {RequestLink:449678181}
//
// Revision 1... |
unit CaptionList;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
const
CAPLIST_REFRESH = WM_USER + 100;
type
TCaptionList = class(Tcomponent)
private
FItems: TStringList;
tl,
FKeys,
FList : TStringList;
FListIndex: integer;
... |
program FolgenInverter (input, output);
{ liest eine Folge von 5 integer-Zahlen ein und gibt sie in umgekehrter Reihenfolge wieder aus }
type
tIndex = 1..5;
tZahlenFeld = array [tIndex] of integer;
var
Feld : tZahlenFeld;
i : tIndex;
begin
for i := 1 to 5 do
begin
write ('Bitt... |
unit StatusThread;
interface
uses
Classes, SysUtils, Messages, Controls, Windows{$ifdef Lazarus}, LMessages, WSControls, InterfaceBase, LCLType{$endif};
type
TNotifyDataFunction = function(Sender: TObject; Data: pointer): Integer of object;
TExceptionEvent = procedure(Sender: TThread; E: Exception; ms... |
unit xplatformutils;
{$I jedi-sdl.inc}
interface
uses
{$IFDEF WIN32}
Windows;
{$ELSE}
{$IFDEF UNIX}
{$IFDEF FPC}
libc;
{$ELSE}
Libc,
Xlib;
{$ENDIF}
{$ENDIF}
{$ENDIF}
const
{$IFDEF MACOS}
DIR_SEP = ':';
DIR_CUR = ':';
{$ELSE}
{$IFDEF DARWIN}
DIR_SEP = ':';
DIR_CUR = ':';
{... |
program DeskPet;
uses SwinGame, sgTypes, sgBackendTypes, sgTimers, sgSprites, SysUtils, Math;
type
PetState = (Idle, Sleep, Sick, Eating, Upset, Dancing);
FoodKind = (AppleGood, AppleBad);
Pet = record
health: Integer;
nextFlipTicks: Integer;
x, y: Double;
dx, dy: Double;
flip: Boolean;
animationName... |
unit LzmaDec;
interface
uses Winapi.Windows, System.Win.Crtl, System.SysUtils, LzmaTypes;
const
LZMA_REQUIRED_INPUT_MAX = 20;
{$Z4}
type
{$define _LZMA_PROB32}
PCLzmaProb = ^TCLzmaProb;
{$ifdef _LZMA_PROB32}
TCLzmaProb = UInt32;
{$else}
TCLzmaProb = Word;
{$endif}
TCLzmaProps = record
lc, lp... |
unit frmMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, BaseForms, StdCtrls, ActnList;
type
TMainForm = class(TBaseForm)
ActionList1: TActionList;
acCreateEventsForm: TAction;
acShowEventsForm: TAction;
acCloseEventsForm: TAction;
acC... |
unit uDMManifesto;
interface
uses
System.SysUtils, System.Classes, DmdConnection, 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,
Data.DB, FireDAC.Comp.DataSet, FireDAC.Comp.Client, ACBrBase, ... |
unit GXHtmlHelp;
interface
uses Windows;
function HtmlHelp(hWndCaller: HWND; pszFile: PChar; uCommand: UINT; dwData: DWORD): HWND;
function HtmlHelpA(hWndCaller: HWND; pszFile: PAnsiChar; uCommand: UINT; dwData: DWORD): HWND;
function HtmlHelpW(hWndCaller: HWND; pszFile: PWideChar; uCommand: UINT; dwData: DW... |
unit SimpleOptionPart;
interface
uses
SearchOption_Intf;
type
TSimpleOptionPart = class(TAbsSearchOptionPart)
protected
FKey: String;
FValue: String;
public
function GetValues(key: String): String; override;
procedure SetValues(key, val: String); override;
end;
implementation
... |
unit MainForm;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics,
Dialogs, StdCtrls,
WpcExceptions,
WpcScript,
WpcScriptParser,
WpcScriptExecutor,
WallpaperSetter;
type
{ TBannerForm }
TBannerForm = class(TForm)
Button1: TButton;
OpenDialog1: TOpen... |
unit Log;
interface
type
TLog = class
private
FFileName: string;
FFile: TextFile;
procedure OpenLogfile;
public
constructor Create(const FileName: string);
procedure Debug(const Message: string);
procedure Warning(const Message: string);
procedure Error(const Message: string);
pr... |
program hw3q3b;
var
Vtype : char ;
Vval : string ;
Vint : integer ;
Vreal : real ;
Vbool : Boolean ;
strCode : integer ;
(*Only one procedure is needed to negate the input, but without using variant
records, we then need separate variables for each different type of input,
plu... |
unit History;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
THistoryForm = class(TForm)
JumpMemo: TMemo;
SaveBtn: TButton;
CloseBtn: TButton;
JumpSaveDialog: TSaveDialog;
procedure CloseBtnClick(Sender: TObject);
p... |
(* ***** 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/
*
* Softwa... |
unit mebdd_worker_reg;
(*
MEB-DD's register-related functions.
*)
{$MODE OBJFPC}
interface
function read_registry_hklm_value_int (key_path:AnsiString; key_name:AnsiString):Integer;
function read_registry_hklm_value_str (key_path:AnsiString; key_name:AnsiString):AnsiString;
function read_registry_hkcu_value_int (ke... |
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls;
type
{ TForm1 }
TForm1 = class(TForm)
Panel1: TPanel;
procedure FormCreate(Sender: TObject);
procedure Panel1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
procedur... |
program jugamosConListas;
type
lista = ^nodo;
nodo = record
num : Integer;
sig : lista;
end;
procedure insertarOrdenado(var pri:lista; valor:Integer);
var
nue,act,ant: lista;
begin
new(nue);
nue^.num:= valor;
act:=pri;
ant:=pri;
while (act <> nil) and (valor > act^.num) do
begin
ant:= act;
act:= ac... |
{
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 Model.ConsumoInsumos;
interface
type
TConsumoInsumos = class
private
var
FID: Integer;
FInsumo: Integer;
FPlaca: String;
FData: System.TDate;
FKmConsumo: Double;
FControle: Integer;
FConsumo: Double;
FValor: Double;
FEstoque: String;
FLog: ... |
{*************************************************************************}
{ TTodoList component }
{ for Delphi & C++Builder }
{ version 1.2 - rel. February 2005 }
{ ... |
unit evDelayedPaintersSpy;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "Everest"
// Автор: Инишев Д.А.
// Модуль: "w:/common/components/gui/Garant/Everest/evDelayedPaintersSpy.pas"
// Родные Delphi интерфейсы (.pas)
// Genera... |
{********************************************************************
TSECTIONLISTBOX design time property editor
for Delphi & C++Builder
Copyright © 1998-2012
TMS Software
Email : info@tmssoftware.com
Web : http://www.tmssoftware.com
The source code is given as is. The author is not responsible
for any possibl... |
unit DW.ThreadedTCPClient;
{*******************************************************}
{ }
{ Kastri Free }
{ }
{ DelphiWorlds Cross-Platform Library ... |
{
File: AEHelpers.p
Contains: AEPrint, AEBuild and AEStream for Carbon
Version: Technology: Mac OS X, CarbonLib
Release: Universal Interfaces 3.4.2
Copyright: © 1999-2002 by Apple Computer, Inc., all rights reserved.
Bugs?: For bug reports, consult t... |
unit UCrypto;
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{ Copyright (c) 2016 by Albert Molina
Distributed under the MIT software license, see the accompanying file LICENSE
or visit http://www.opensource.org/licenses/mit-license.php.
This unit is a part of Pascal Coin, a P2P crypto currency without need of
hist... |
unit GetOrderUnit;
interface
uses SysUtils, BaseExampleUnit, OrderUnit;
type
TGetOrder = class(TBaseExample)
public
procedure Execute(OrderId: integer);
end;
implementation
procedure TGetOrder.Execute(OrderId: integer);
var
ErrorString: String;
Order: TOrder;
begin
Order := Route4MeManager.Orde... |
unit mod_winboard;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
StdCtrls, Forms, Controls,
chessmodules, chessgame, chessdrawer;
type
{ TWinboardChessModule }
TWinboardChessModule = class(TChessModule)
private
textEnginePatch : TStaticText;
editEnginePatch : TEdit;
public
constr... |
unit np.HttpConnect;
interface
uses np.core, np.EventEmitter, np.httpParser, Generics.Collections, sysUtils,
np.buffer, np.url, np.OpenSSL, np.http_parser, np.common;
const
ev_BeforeProcess = 1;
ev_HeaderLoaded = 2;
// ev_ContentUpdated = 3;
ev_Complete = 4;
ev_connected = 5;
ev_disconnected = 6;
... |
unit Main;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, MainAncestor, Vcl.Menus, Data.Win.ADODB,
Data.DB, Vcl.ImgList, Vcl.ComCtrls, MyListView, Vcl.ToolWin,
Vcl.StdCtrls, Vcl.ExtCtrls, HControls, ListVi... |
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J+,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
unit SingleInstance;
interface
uses
Classes, SysUtils;
type
TOneTimeDataObserver = class (TObject)
private
FEnabled: Boolean;
FOnUpdate: TNotifyEvent;
procedure SetOnUpdate(const Value: TNotifyEvent);
public
con... |
unit uPareto;
interface
uses
System.Math,
System.Generics.Collections,
Generics.Defaults;
type
{$M+}
TBasePareItem<T> = Class
private
FA: T;
FB: T;
FTag: T;
public
Constructor Create(Const A, B: T); Virtual;
published
property A: T read FA write FA;
property B: T read FB write ... |
unit uCadPessoa;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, uTelaHeranca, FireDAC.Stan.Intf,
FireDAC.Stan.Option, FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS,
FireDAC.Phys.Intf, FireDAC.DApt.I... |
unit ConnectionUnit;
interface
uses
Classes, SysUtils, System.JSON, IdURI,
REST.Client, REST.Types, IPPeerCommon, IPPeerClient,
System.Net.HttpClient, System.NetConsts, System.Net.URLClient, System.Net.HttpClient.Win,
IConnectionUnit, GenericParametersUnit, DataObjectUnit, CommonTypesUnit;
type
TConnection... |
{ RxViewsPanel unit
Copyright (C) 2005-2010 Lagunov Aleksey alexs@hotbox.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 ... |
{ *************************************************************************** }
{ }
{ }
{ Copyright (C) Amarildo Lacerda }
{ }
{ https://github.com/amarildolacerda }
{ }
{ }
{ *************************************************************************** }
{ }
{ Licensed under the Apache License, Version 2.0 (the "Licens... |
unit UFourSquareDemo;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.TMSCloudBase,
FMX.TMSCloudFourSquare, FMX.TMSCloudXUtil, FMX.StdCtrls, FMX.Objects,
FMX.TMSCloudImage, FMX.Layouts, FMX.ListBox, FMX.Edit, F... |
unit msmModelServicePack;
// Модуль: "w:\common\components\gui\Garant\msm\msmModelServicePack.pas"
// Стереотип: "ScriptKeywordsPack"
// Элемент модели: "msmModelServicePack" MUID: (57EE6C5602EB)
{$Include w:\common\components\msm.inc}
interface
{$If NOT Defined(NoScripts)}
uses
l3IntfUses
;
{$IfEnd} // NOT Define... |
{| Unit: pmdev
| Version: 1.00
| translated from file pmdev.H
| Original translation: Peter Sawatzki (ps)
| Contributing:
| (fill in)
|
| change history:
| Date: Ver: Author:
| 11/19/93 1.00 ps original translation by ps
}
Unit pmdev;
Interface
Uses
Os2Def;
{*****************************************... |
{--------------------------program 9.20-------------------------}
UNIT PriorityQueueTypesUnit;
INTERFACE
CONST
MaxCount = 10;
TYPE
PQItem = Integer;
PQArray = ARRAY[1..MaxCount] OF PQItem;
PriorityQueue = RECORD
Count : Integer;
ItemLis... |
unit FFSFormDisplay;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, FFSTypes,
LMDCustomControl, LMDCustomPanel, LMDCustomBevelPanel, LMDFormDisplay;
type
TFFSFormDisplay = class(TLMDFormDisplay)
private
{ Private declarations }
FFieldsColorScheme:... |
unit UIWrapper_RoundUnit;
interface
uses
UIWrapper_SchOptPartUnit, FMX.ListBox, FMX.Controls, SearchOption_Intf;
const
ITEM_LIST_ROUND_DECPLACE_MIN = 0;
ITEM_LIST_ROUND_DECPLACE_MAX = 7;
ITEM_LIST_ROUND_DECPLACE_DEF = ITEM_LIST_ROUND_DECPLACE_MAX;
type
TUIWrapper_SchOpt_Round = class(TUIWrapper_AbsSearchO... |
{------------------------------------------------------------------------------------}
{program p031_000 exercises production #031 }
{statement -> compound_statement }
{----------------------------------------------------------... |
unit KopConfigUnit;
interface
uses XSuperObject, IdGlobal, System.SysUtils, ProtocolCommon, Classes, Global;
const
MaxHostSize = 128;
MaxApnSize = 32;
MaxGsmLoginSize = 32;
MaxUssdBalanceSize = 10;
MaxPhoneNumberSize = 10;
AlarmSensorCount = 8;
OutputsCount = 4;
// MaxHostSize = 127;
// MaxApnSize = ... |
unit l3Filer;
{* Реализация компонента-обертки вокруг потока. }
{ Библиотека "L3 (Low Level Library)" }
{ Автор: Люлин А.В. c }
{ Модуль: l3Filer - функции виртуальной файловой системы}
{ Начат: 08.04.1997 18:33 }
{ $Id: l3Filer.pas,v 1.206 2016/04/06 21:08:11 lulin Exp $ }
// $Log: l3File... |
unit gResources;
interface
uses gTypes, SwinGame, sgTypes, sysUtils;
procedure InitResources(var game : GameData);
implementation
// Loads all the bitmaps used in the game
procedure LoadBitmaps();
begin
DebugMsg('Resources: Loading Bitmaps...');
// Tiles
LoadBitmapNamed('TileDirt01','tiles/dirt_1.png... |
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
unit m_checkbox;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls;
type
{ TMariaeCheckBox }
TMariaeCheckBox = class(TCheckBox)
private
FChanged: boolean;
procedure SetChanged(AValue: boolean);
protected
public
procedure OnChan... |
(******************************************************************************
Massimo Magnano 08-11-2004.
File : MGTree16.pas REV. 1.1
Implementazione di un albero per la memorizzazione di 2^32 Dati a 32 Bit.
Nel caso peggiore si hanno 16 passi tra i nodi per la ricerca di un dato
Implemen... |
unit ItfwParserWordsPack;
// Модуль: "w:\common\components\rtl\Garant\ScriptEngine\ItfwParserWordsPack.pas"
// Стереотип: "ScriptKeywordsPack"
// Элемент модели: "ItfwParserWordsPack" MUID: (559BC65F0292)
{$Include w:\common\components\rtl\Garant\ScriptEngine\seDefine.inc}
interface
{$If NOT Defined(NoScripts)}
use... |
unit shaolinsroad_hw;
interface
uses {$IFDEF WINDOWS}windows,{$ENDIF}
m6809,main_engine,controls_engine,sn_76496,gfx_engine,rom_engine,
pal_engine,sound_engine,qsnapshot;
function iniciar_shaolin:boolean;
implementation
const
shaolin_rom:array[0..2] of tipo_roms=(
(n:'477-l03.d9';l:$2000;p:... |
unit Solid.Samples.OCP.Streaming.Wrong;
interface
type
{ TDownloadingFile }
TDownloadingFile = class
private
FLength: Longint;
FSent: Longint;
public
constructor Create(const ALength: Longint);
property Length: Longint read FLength;
property Sent: Longint read FSent write ... |
unit InterfaceCollection;
interface
uses
Windows, Collection;
type
TInterfaceCollection =
class(TInterfacedObject)
public
constructor Create;
destructor Destroy; override;
private
fInterfaces : TLockableCollection;
private
procedure R... |
{----------------------------------------------------------------------------
|
| Library: Envision
|
| Module: EnWmfGr
|
| Description: TDibGraphic descendant for WMF/EMF files.
|
| History: Dec 24, 1998. Michel Brazeau, first version
|
|---------------------------------------------------------------------------}
unit... |
unit InfoXLTRPOLTable;
interface
uses
Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf;
type
TInfoXLTRPOLRecord = record
PCode: String[6];
PDescription: String[30];
PAutoCreate: Boolean;
PModCount: SmallInt;
End;
TInfoXLTRPOLClass2 = class
public
PCode: Stri... |
unit IngDatos;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ComCtrls, ExtCtrls, Db, Menus, TypInfo, AdoDb, JvDBLookup,
DBCtrls, jpeg, JvComponent, DbClient,
JvFormPlacement, JvAppStorage, JvAppIniStorage, JvComponentBase, StdCtrls,
Buttons, DBClientActns, StdActn... |
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
unit FingerTabs;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
const
noFinger = -1;
type
TFingetTabAlign = (ftaLeft, ftaRight);
TFingerType = (ftFinger, ftGradient);
TFingerTabAdjust = procedure(Sender : TObject; DeltaSize : integer) of object;
... |
unit UCliente;
interface
uses
Data.Win.ADODB, Data.DB, System.Generics.Collections, System.SysUtils, UPadrao;
type
TCliente = class(TPadrao)
private
Fid: Integer;
Fcliente: string;
FTipoPessoa: string;
FInscrEstadual: string;
FCPF_CNPJ: string;
FDtNascimento: TDateTime;
... |
{*******************************************************}
{ }
{ Zlot programistów Delphi }
{ RTTI w Delph }
{ Sylwester Wojnar }
{ ... |
unit InfoXLTRBORRTable;
interface
uses
Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf;
type
TInfoXLTRBORRRecord = record
PCode: String[6];
PDescription: String[60];
PModCount: SmallInt;
End;
TInfoXLTRBORRClass2 = class
public
PCode: String[6];
PDescription... |
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
{ *********************************************************** }
{ * TForge Library * }
{ * Copyright (c) Sergey Kasandrov 1997, 2015 * }
{ *********************************************************** }
unit tfCRCs;
interface
{$I TFL.inc}
uses
tfTyp... |
unit StockDayData_Save;
interface
uses
BaseApp,
StockDayDataAccess;
procedure SaveStockDayData(App: TBaseApp; ADataAccess: TStockDayDataAccess); overload;
procedure SaveStockDayData(App: TBaseApp; ADataAccess: TStockDayDataAccess; AFileUrl: string); overload;
implementation
uses
Windows,
BaseWi... |
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Edit1: TEdit;
Edit2: TEdit;
Label1: TLabel;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private-Deklarationen }
... |
unit PE.COFF;
interface
uses
System.Classes,
System.SysUtils,
PE.COFF.Types;
type
TCOFF = class
private
FPE: TObject;
FStrings: TBytes;
procedure LoadStrings(AStream: TStream);
public
constructor Create(PEImage: TObject);
procedure Clear;
procedure LoadFromStre... |
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, SieveOfEratosthenes;
type
TForm1 = class(TForm)
Memo1: TMemo;
Panel1: TPanel;
Button1: TButton;
EditMinZ: TEdit;
EditMaxZ: TEdit;
Label1: TLa... |
{
@name GradButton
@author Eugen Bolz
@lastchange 23.01.2011
@version 1.5
@thx to http://www.delphipraxis.net/topic67805_farbverlauf+berechnen.html
@license http://creativecommons.org/licenses/LGPL/2.1/
@wiki http://wiki.lazarus.freepascal.org/TGradButton
}
unit ugradbtn;
{$mode objfpc}{$H+}
interface
uses
Classe... |
unit Mat.ProjectUnitParser;
interface
uses
System.Classes, System.SysUtils, System.IOUtils,
System.Generics.Collections;
type
// Class for Unit file parsing.
TUnitStructFile = class
private
FUnitFileName: string;
FUnitPath: string;
FFormName: string;
FUsesList: TSt... |
unit Redefined.Pascal.Win32.NetworkAccess;
{ ***************************************************************************
Copyright (c) 2015-2018 Enrique Fuentes
Unit : Redefined NetworkAccess
Description : Windows Networking Info and Scrapping methods
Author : Turric4n
Version : 1.0
C... |
unit CleanArch_EmbrConf.Infra.Database.Impl.Database;
interface
uses
Dataset.Serialize,
CleanArch_EmbrConf.Infra.Database.Interfaces,
CleanArch_EmbrConf.Core.Entity.Interfaces,
CleanArch_EmbrConf.Infra.Database.Conexao,
CleanArch_EmbrConf.Core.Entity.Impl.ParkingLot, System.JSON;
type
TDatabase = class(T... |
unit uBTStack;
{$mode delphi}{$H+}
(* BTStack
* Copyright (C) 2014 BlueKitchen GmbH
*
* 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 copyr... |
unit uRelPedidoVenda;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uModeloRel, StdCtrls, Buttons, Mask, ExtCtrls, JvBaseEdits,
JvExControls, JvSpeedButton, JvExMask, JvToolEdit, JvNavigationPane, DB,
ZAbstractRODataset, ZDataset, ZConnection, frxClass, frx... |
{ Subroutine SST_INTRINSIC_DTYPE (NAME,DTYPE,SIZE,DT_P)
*
* Create a new intrinsic data type in the current scope. NAME is the symbol
* name for the new data type. DTYPE is the SST library data type ID.
* SIZE if the size of the data type in machine addresses. DT_P will be returned
* pointing to the new da... |
unit MFichas.Model.Entidade.USUARIOPERMISSOES;
interface
uses
DB,
Classes,
SysUtils,
Generics.Collections,
/// orm
ormbr.types.blob,
ormbr.types.lazy,
ormbr.types.mapping,
ormbr.types.nullable,
ormbr.mapping.classes,
ormbr.mapping.register,
ormbr.mapping.attributes;
type
[Entit... |
//***********************************************************
// InventorySystem
//
// Copyright (c) 2002 Failproof Manufacturing Systems
//
//***********************************************************
//
// 10/31/2002 Aaron Huge Initial creation
unit ConfirmPassword;
interface
uses
Windows, Me... |
namespace Sugar.Legacy;
interface
{$HIDE W0} //supress case-mismatch errors
uses
Sugar,
Sugar.IO,
Sugar.Collections;
type
MemIniFile = public class
private
fList: Dictionary<String,Dictionary<String,String>>;
fFile : File;
method LoadValues;
method int_ReadSectionValues(... |
{!DOCTOPIC}{
Type » TStringArray
}
{!DOCREF} {
@method: function TStringArray.Len(): Int32;
@desc: Returns the length of the array. Same as c'Length(arr)'
}
function TStringArray.Len(): Int32;
begin
Result := Length(Self);
end;
{!DOCREF} {
@method: function TStringArray.IsEmpty(): Boolean;
@desc: Retur... |
(**
This module contains a IDE derived dockable form to contain the results of the
searches where the IDE cannot provide help.
@Version 1.0
@Author David Hoyle
@Date 19 Apr 2016
**)
Unit DockableBrowserForm;
Interface
Uses
Windows,
Messages,
SysUtils,
Variants,
Classes,
... |
unit uMainForm;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes,
System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.Edit, FMX.StdCtrls,
FMX.Objects, FMX.Platform.iOS, FMX.Layouts, FMX.Memo, FMX.ListBox,
libzbar;
type
TMainForm = class(TForm)
ToolBar1: T... |
{ GDAX/Coinbase-Pro client library
Copyright (c) 2018 mr-highball
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 limitation the
rights to use, co... |
{
$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 rights reserv... |
unit TestAvoidanceZoneSamplesUnit;
interface
uses
TestFramework, Classes, SysUtils,
BaseTestOnlineExamplesUnit;
type
TTestAvoidanceZoneSamples = class(TTestOnlineExamples)
published
procedure AddCircleAvoidanceZone;
procedure AddPolygonAvoidanceZone;
procedure AddRectangularAvoidanceZone;
pro... |
// Client and Server common constants
unit CommonConstants;
interface
const
// Client/Server Command() interface codes
// Server-side codes
cmdGetDir = 0; // get server-side directory contents to the client
cmdSetSingleUserMode = 1;
cmdSetSingleUserMode_res_NotOwner = 1; // singleuser mode i... |
{
Copyright (C) 2013-2019 Tim Sinaeve tim.sinaeve@gmail.com
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 applicable... |
unit FromWithPanelKeywordsPack;
{* Набор слов словаря для доступа к экземплярам контролов формы FromWithPanel }
// Модуль: "w:\common\components\gui\Garant\Daily\Forms\FromWithPanelKeywordsPack.pas"
// Стереотип: "ScriptKeywordsPack"
// Элемент модели: "FromWithPanelKeywordsPack" MUID: (51D534260378_Pack)
{$Include ... |
unit caPriorityCalculator;
// Модуль: "w:\common\components\rtl\Garant\ComboAccess\caPriorityCalculator.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TcaPriorityCalculator" MUID: (5751293D00A9)
{$Include w:\common\components\rtl\Garant\ComboAccess\caDefine.inc}
interface
{$If Defined(UsePostgres) AND Defined... |
unit SearchOptionManager;
interface
uses
SearchOption, DBManager, SearchResult;
type
TSearchOptionManager = class(TSearchOption)
private
FDBMS: TAbsDBManager;
protected
function GetDBMSName: String; override;
procedure SetDBMSName(dbms: String); override;
public
procedure SetD... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.