text stringlengths 14 6.51M |
|---|
unit tgraphiclabel;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, ExtCtrls, Graphics, Controls;
type
{ TTGraphicLabel }
TTGraphicLabel = class(TImage)
private
{ Private declarations }
FAlignment: TAlignment;
DBOverPict: TPicture;
DBDownPict: TPicture;
DBUpPict: TPicture;
... |
unit UAccessClient;
interface
uses Classes, UAccessConstant, DBClient, DB, MidasLib, CRTL, IniFiles,
UAccessPattern,
PluginAPI;
type
TVersionString = string[30];
{ TSAVAccessFileProc = function(const rNew, rOld: TClientFile;
const aDir, aSID: string; const aPath: string = ''): Boolean;}
... |
unit kwIF;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "ScriptEngine"
// Автор: Люлин А.В.
// Модуль: "w:/common/components/rtl/Garant/ScriptEngine/kwIF.pas"
// Начат: 26.04.2011 20:08
// Родные Delphi интерфейсы (.pas)
// Ge... |
{ Date Created: 6/6/00 9:10:06 AM }
unit InfoSYSTEMSETTINGSTable;
interface
uses
Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf;
type
TInfoSYSTEMSETTINGSRecord = record
PIndex: Integer;
PFloppyDiskDrive: String[1];
PPCAnywhereVersion: String[5];
PEndHostModeFirst: Boolean;... |
unit VirtDisk;
interface
// Microsoft SDKs v7.0 - VirtDisk.h convert to pascal
// http://msdn.microsoft.com/en-us/library/windows/desktop/dd323654(v=vs.85).aspx
// kyypbd@gmail.com
// http://yypbd.tistory.com
uses
Windows;
{$MINENUMSIZE 4}
// OpenVirtualDisk & CreateVirtualDisk
type
PVirtualStorageType = ^TV... |
unit UserUtils;
interface
function FormatUserName( const aUser : string ) : string;
implementation
uses
SysUtils;
function FormatUserName( const aUser : string ) : string;
var
UpStr, LoStr : string;
begin
UpStr := UpperCase( aUser );
LoStr := LowerCase( aUser );
if ( aUser... |
unit ncsGetTaskDescriptionReply;
// Модуль: "w:\common\components\rtl\Garant\cs\ncsGetTaskDescriptionReply.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TncsGetTaskDescriptionReply" MUID: (546B442D0343)
{$Include w:\common\components\rtl\Garant\cs\CsDefine.inc}
interface
{$If NOT Defined(Nemesis)}
uses
l3In... |
unit uDiaBoxMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, XPMan, ImgList, ComCtrls, ToolWin, StdCtrls, Grids, Menus;
type
TExplodeResult = array of string;
TfDiaBoxMain = class(TForm)
XPManifest1: TXPManifest;
ToolBar1: TToolBar;
... |
unit RadioGroupWordsPack;
// Модуль: "w:\common\components\rtl\Garant\ScriptEngine\RadioGroupWordsPack.pas"
// Стереотип: "ScriptKeywordsPack"
// Элемент модели: "RadioGroupWordsPack" MUID: (54F58770000F)
{$Include w:\common\components\rtl\Garant\ScriptEngine\seDefine.inc}
interface
{$If NOT Defined(NoScripts) AND ... |
(*
JCore WebServices, Request 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
MERCHANTAB... |
unit Should.Constraint.CoreMatchers;
interface
uses
System.SysUtils,
System.Rtti, System.TypInfo,
System.Generics.Defaults,
Should
;
function BeNil: TValueConstraintOp;
function BeTrue: TValueConstraintOp;
function BeEqualTo(expected: TValue): TValueConstraintOp;
function BeGraterThan(expecte... |
program pcopy;
{
Program: Pascal Copy Utility
Function: Yet another alternative to Windows copy, xcopy, and robocopy
Language: Free Pascal and Lazarus IDE
Copyright: Copyright (C) 2018 by James O. Dreher
License: https://opensource.org/licenses/MIT
Created: 8/10/2018
LazProject: project inspector, add la... |
unit VendorUnit;
interface
uses
REST.Json.Types, System.Generics.Collections, SysUtils,
JSONNullableAttributeUnit, GenericParametersUnit, NullableBasicTypesUnit,
EnumsUnit;
type
TVendorFeature = class(TGenericParameters)
private
[JSONName('id')]
[Nullable]
FId: NullableString;
[JSONName('n... |
// Original Author: Piotr Likus
// Replace Components data storage objects
unit GX_ReplaceCompData;
interface
uses
Classes, SysUtils, Contnrs,
OmniXML,
Gx_GenericClasses;
const
// Default values for mapping flags
CompRepDefDisabled = False;
CompRepDefBiDirEnabled = True;
CompRepDefUseCon... |
unit ICDtranslator;
interface
type
TICDlng = (lng_fr, lng_nl);
TICDtranslator = class
class function GUItranslate(const aICDlng: TICDlng): string;
class function ADOtranslate(const aICDlng: TICDlng): string;
end;
implementation
uses
ICDconst;
class function TICDtranslator.GUItranslate(const aICDl... |
{
$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 fmuFindDevice;
interface
uses
// VCL
Windows, Forms, ComCtrls, StdCtrls, Controls, Classes, SysUtils, Messages,
Buttons,
// This
untPages, untUtil, untDriver;
type
{ TfmFindDevice }
TfmFindDevice = class(TPage)
Memo: TMemo;
btnRead: TBitBtn;
procedure btnReadClick(Sender: TObject... |
unit Error;
interface
uses
ErrorIntf;
type
TError = class(TInterfacedObject, IError)
private
FMessage: string;
function GetMessage: string;
procedure SetMessage(const Value: string);
public
property Message: string read GetMessage write SetMessage;
end;
implementation
function TError.GetM... |
unit UDataComboListViewFrame;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes,
System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
FMX.ListBox, UDataComboBox, FMX.ListView.Types, FMX.ListView, UDataListView,
Data.DB, FireDAC.Comp.DataSet... |
unit registryuserpreferences;
{
$Id: registryuserpreferences.pas,v 1.1 2004/09/30 22:35:47 savage Exp $
}
{******************************************************************************}
{ }
{ JEDI-SDL : Pascal units for SDL - Si... |
{
This is a personal project that I give to community under this licence:
Copyright 2016 Eric Buso (Alias Caine_dvp)
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... |
unit GetVendorsResponseUnit;
interface
uses
REST.Json.Types,
GenericParametersUnit, VendorUnit;
type
TGetVendorsResponse = class(TGenericParameters)
private
[JSONName('vendors')]
FVendors: TVendorArray;
public
constructor Create;
destructor Destroy; override;
property Vendors: TVendorA... |
unit appdelegate_iphoneu;
{$modeswitch ObjectiveC1}
interface
uses
Classes,
BufDataset,
iPhoneAll,
SysUtils,
TableData;
type
TTableViewDelegate = objcclass;
{ TAppDelegate_iPhone }
TAppDelegate_iPhone = objcclass(NSObject, UIApplicationDelegateProtocol)
UISearchBar1: UISearchBar;
UITableVi... |
namespace Sugar.Cryptography;
interface
uses
Sugar,
{$IF NETFX_CORE}
Windows.Security.Cryptography.Core;
{$ELSEIF ECHOES}
System.Security.Cryptography;
{$ELSEIF COOPER}
java.security;
{$ELSEIF TOFFEE}
rtl;
{$ENDIF}
type
DigestAlgorithm = public (MD5, SHA1, SHA256, SHA384, SHA512);
MessageDigest = pub... |
(* ***** BEGIN LICENSE BLOCK *****
* Version: GNU GPL 2.0
*
* The contents of this file are subject to the
* GNU General Public License Version 2.0; you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
* http://www.gnu.org/licenses/gpl.html
*
... |
(*************************************************)
(** CSI 2111 (October,1995). TC2111 **)
(*************************************************)
program tc2111 (input, output) ;
uses Crt; (* Under Windows: uses WinCrt *)
(* the following constants give symbolic names for the opcodes *)
con... |
unit SheetHandlerRegistry;
interface
uses
ObjectInspectorInterfaces;
procedure RegisterSheetHandler(aName : string; aFunct : TSheetHandlerCreatorFunction);
function GetSheetHandler(aName : string) : IPropertySheetHandler;
implementation
uses
SysUtils, Classes;
var
Handlers : TStringList = n... |
unit kwPopEditorWheelScroll;
{* *Формат:* aUp aVeritcal anEditorControl pop:editor:WheelScroll
*Описание:* Прокручивает документ к позиции скроллера. aVeritcal - если true, то скроллируем повертикали. aUp - сроллировать вверх, если true
*Пример:*
[code]
false true focused:control:push anEditorControl pop:editor:Wheel... |
PROGRAM Demo2;
{*******************************************************
** **
** DEMO2: Just some wild drawing... **
** **
*******************************************************}
USES
... |
{****************************************************************************}
{* SETUP.PAS: This file contains the routines to either put the board in *}
{* its normal start of game setup or a custom user defined setup. *}
{****************************************************************************}
{**... |
{***********************************************************************************************************************
*
* TERRA Game Engine
* ==========================================
*
* Copyright (C) 2003, 2014 by SÚrgio Flores (relfos@gmail.com)
*
**********************************************************... |
{ Subroutine SST_SYM_VAR_NEW_OUT (DTYPE,SYM_P)
*
* Create a new output symbol that is a variable. The variable name will be
* inferred from the data type, and adjusted as necessary to make it unique.
* DTYPE is the descriptor for the data type of the new variable. SYM_P
* is returned pointing to the new sym... |
unit BrowseFunc;
{
Inno Setup
Copyright (C) 1997-2010 Jordan Russell
Portions by Martijn Laan
For conditions of distribution and use, see LICENSE.TXT.
Functions for browsing for folders/files
$jrsoftware: issrc/Projects/BrowseFunc.pas,v 1.9 2010/09/10 01:08:44 jr Exp $
}
interface
{$I VERSION.INC}
use... |
unit CleanLibrary;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls,
ComCtrls, ExtCtrls;
type
strArray = array of string;
ptrStrArray = ^strArray;
type
{ TFrmCleanLibrary }
TFrmCleanLibrary = class(TForm)
btnBack: TButton;
btnRes... |
unit UConexao;
interface
uses
IniFiles, SysUtils, Forms, FireDAC.Comp.Client, Dialogs;
type
TConexao = class
private
Fcx_ProtocolFB: String;
Fcx_SQLDialectFB: String;
Fcx_DatabaseFB: String;
Fcx_PasswordFB: String;
Fcx_UserNameFB: String;
Fcx_CaminhoINI: String;
... |
unit selBalance;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, seleccion, cxGraphics, cxControls,
cxLookAndFeels, cxLookAndFeelPainters, dxRibbonSkins, cxStyles, cxCustomData,
cxFilter, cxData, cxDataStorag... |
unit D_PublIn;
{ $Id: D_PublIn.pas,v 1.26 2014/08/13 12:50:00 dinishev Exp $ }
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons, ExtCtrls, Mask,
k2Interfaces, k2Tags,
DT_Types, DT_Const, dt_AttrSchema, DT_Dict,
BottomBtnDlg, ToolEdit, tb97GraphicCon... |
unit ufmMainForm;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
System.Classes, Vcl.Graphics, RasHelperClasses,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ImgList, Vcl.ComCtrls, Vcl.StdCtrls,
Ras, Vcl.ToolWin, Vcl.Menus, uRASMngrCommon, Vcl.ExtCtrls, System.ImageList,
Vcl.... |
unit SkinEdit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Menus, MGR32_Image;
type
TFrmSkinEdit = class(TForm)
LstSkin: TListBox;
Label1: TLabel;
EdtName: TEdit;
Label2: TLabel;
EdtId: TEdit;
Label3: TLabel... |
unit fmCreateContainer;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, ADC.Types, ADC.DC, ADC.GlobalVar,
ADC.Common, Vcl.ExtCtrls;
type
TForm_CreateContainer = class(TForm)
Button_SelectCo... |
unit K447392400;
{* [Requestlink:447392400] }
// Модуль: "w:\archi\source\projects\Archi\Tests\K447392400.pas"
// Стереотип: "TestCase"
// Элемент модели: "K447392400" MUID: (515EE345026A)
// Имя типа: "TK447392400"
{$Include w:\archi\source\projects\Archi\arDefine.inc}
interface
{$If Defined(nsTest) AND Defined(I... |
unit fmuCashControl;
interface
uses
// VCL
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, WinSock, ExtCtrls, Buttons,
// This
untPages, WSockets, untUtil;
type
TfmCashControl = class(TPage)
Memo: TMemo;
btnClear: TBitBtn;
lblCashControl: TLabel;
Bevel1... |
{******************************************************************************}
{ }
{ Some necessary basic API types missing in WinApi.Windows }
{ ... |
unit uSqlEditor;
interface
uses
{$IFDEF MSWINDOWS}
Windows,
{$ELSE}
LCLIntf, LCLType,
{$ENDIF}
Classes,
Types,
{$IFDEF FPC}
SynSQLEditor,
{$ENDIF}
SynHighlighterSQL,
SynEditRegexSearch,
SynEditSearch,
SynEditTypes,
SynEdit;
type
TJumpToDeclarationEvent = procedure(Sender: TObject; word : string... |
unit uFrmComment;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ComCtrls, ActnList, ImgList, ToolWin, ExtCtrls;
type
TfrmComment = class(TForm)
btnOk: TButton;
btnCancel: TButton;
Editor: TRichEdit;
StandardToolBar: TTo... |
{ Copyright (C) 2014 Dimitar Paperov,Zdzislaw Dybikowski
This source 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 2 of the License, or (at your option)
any later version.
This code is... |
unit uNanoPowAS;
// unit of Nano currency Proof of Work Android Service
// Copyleft 2019 - Daniel Mazur
interface
uses
DW.Androidapi.JNI.Support, Androidapi.JNIBridge,
Androidapi.JNI.JavaTypes,
System.Android.Service, Androidapi.JNI.Util, Androidapi.JNI.App,
Androidapi.JNI.Widget, Androidapi.JNI.Med... |
unit UDaoPadrao;
interface
uses
Data.DBXCommon, Data.DBXClient, Data.DBXDataSnap, Data.DBXJSON,
Datasnap.DSProxy, System.Classes, System.SysUtils, Data.DB, Data.SqlExpr,
Data.DBXDBReaders, Data.DBXJSONReflect;
type
TDaoPadrao = class(TDSAdminClient)
private
FCmd: TDBXCommand;
public
c... |
PROGRAM NumberTranslator (input, output);
{ Translate a list of integers from numeric form into
words. The integers must not be negative nor be
greater than the value of maxnumber. The last
integer in the list has the value of terminator.
}
CONST
maxnumber = 999999; {maximum allowable number}
... |
unit ncsSynchroClientTransporter;
// Модуль: "w:\common\components\rtl\Garant\cs\ncsSynchroClientTransporter.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TncsSynchroClientTransporter" MUID: (54E339B500F7)
{$Include w:\common\components\rtl\Garant\cs\CsDefine.inc}
interface
{$If NOT Defined(Nemesis)}
uses
l... |
unit ULinkedInDemo;
interface
uses
FMX.TMSCloudBase, FMX.TMSCloudLinkedIn, FMX.Controls, FMX.Objects, TypInfo,
FMX.TMSCloudImage, FMX.StdCtrls, FMX.Memo, FMX.ListBox, FMX.Layouts,
FMX.TabControl, FMX.Edit, System.Classes, FMX.Types, FMX.Dialogs, FMX.Forms, Sysutils,
FMX.TMSCloudBaseFMX, FMX.TMSCloudCustomLink... |
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
// ************************************************************************ //
// The types declared in this file were generated from data read from the
// WSDL File described below:
// WSDL : http://webserver.averba.com.br/index.soap?wsdl
// >Import : http://webserver.averba.com.br/index.soap?wsdl>0
// Encoding :... |
unit ErrorMsgUtils;
// Copyright (c) 1998 Jorge Romero Gomez, Merchise
interface
function SysErrorString( ErrorId : integer ) : string;
implementation
uses
Windows;
function SysErrorString( ErrorId : integer ) : string;
var
Len : integer;
begin
SetLength( Result, MAX_PATH );
... |
unit SVGAGRPH;
interface
var result:Shortint;
function ismouse:boolean;
function initmouse:boolean;
procedure setsteptopixel(hor,ver:integer);
procedure getsteptopixel(var hor,ver:integer);
procedure setdoblespeed(speed:word);
function getdoblespeed:word;
procedure mousewherexy(var x,y:integer);
functio... |
unit MFichas.Model.Entidade.CONFIGURACOES;
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
[Entity]
... |
{
Класс хранилища
}
unit UAccessBase;
interface
uses Classes, VKDBFDataSet, VKDBFNTX, VKDBFIndex, VKDBFSorters;
type
TSAVAccessBase = class(TObject)
private
FStoragePath: string;
FJournalsDir: string;
FJournalsPath: string;
FUsersDir: string;
FGroupsDir: string;
FADGroupsDi... |
{ *********************************************************************************** }
{ * CryptoLib Library * }
{ * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
{ * Github Repository <https://github.co... |
unit MatrixCircuits;
interface
uses
Collection,Circuits, LargeMatrix, Windows, BackupInterfaces, ReachMatrix;
type
TMatrixCircuitMap =
class( TCircuitMap )
private
fMatrix : TIntegerLargeMatrix;
fModified : boolean;
public
destructor Destroy; overrid... |
unit EditAttributeForma;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, OkCancel_frame, DB, FIBDataSet, pFIBDataSet, DBGridEh, StdCtrls,
DBCtrls, Mask, DBCtrlsEh, DBLookupEh, CnErrorProvider, FIBQuery,
PrjConst, System.UITypes;
type
TEditAttributForm = c... |
// Upgraded to Delphi 2009: Sebastian Zierer
(* ***** 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 a... |
program funnyJeep(input, output);
const
MULTIPLIER = 500;
var
bound : integer;
function getDistance(n : integer) : real;
var
i : integer;
ans : real;
begin
ans := 0.0;
i := 1;
while i <> (2 * n - 1) do
begin
ans += 1 / (2 * i - 1);
i := succ(i);
end;
getDistance := ans;
end;
begin
writ... |
// --------------------------------------------------------------------------
// Archivo del Proyecto Ventas
// Página del proyecto: http://sourceforge.net/projects/ventas
// --------------------------------------------------------------------------
// Este archivo puede ser distribuido y/o modificado bajo lo... |
program lista;
uses crt;
{
Programa Lista Telefônica
Nome: Carlos Kazuo Mochizuki Ishizaka - 12100152
Nome: David Cechini -
Obs: Acentos foram removidos de mensagens de saída para não imprimir
caracteres indesejáveis caso compilar via TurboPascal.
}
{
Cada registro telefônico segue a estrutura de ... |
program ch2(input, output);
{
Chapter 2 Assignment
Alberto Villalobos
February 6, 2014
Description: Calculates mowing time
}
const
housewidth = 40;
houselength = 40;
lawnwidth = 100;
lawnlength = 150;
ftperhour = 50;
var
area, time: Integer;
begin
area := lawnlength * lawnwidth - houselength * housewidth... |
{
$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 uAutoFreeObjsForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, BaseForms;
type
TLogObject = class(TObject)
constructor Create;
destructor Destroy; override;
end;
TTestAutoFree = class(TBaseForm)
procedure BaseFormCreate(Sender: TObjec... |
program Lab6_Var9;
uses Math;
const eps = 1e-3;
var i, j :Integer; res, ds, s :Real;
begin
res := 0;
for i := 1 to 12 do
begin
j := 1;
ds := eps;
s := 0;
writeln('Iter. ', i, ' result = ', res:0:6);
while abs(ds) > eps do
begin
ds := tan(1/(i*j))... |
unit MainDbf;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Grids, DBGrids, DB, DBClient, DBTables, ComCtrls, StdCtrls,
ExtCtrls;
type
TMainForm = class(TForm)
LastLotGrid: TStringGrid;
LotLabel: TLabel;
ResultGrid: TStringGrid;
ResultLabel... |
unit uXPListView_orig;
interface
{ TODO : Add more functionality }
uses Classes, Types, QControls, QStdCtrls,
QGraphics, QExtCtrls, uGraphics,
Qt, uXPImageList, QForms, QFileCtrls, Sysutils;
type
TXPListView=class;
TXPListItem=class(TObject)
private
FCaption: string;
FImageInd... |
{ Subroutine SST_W_C_DOIT (GNAM, STAT)
*
* Do the backend phase. This routine is specific to the C backend.
* GNAM is the full treename of the output file. All the file suffix
* stuff has already been handled.
}
module sst_w_c_doit;
define sst_w_c_doit;
%include 'sst_w_c.ins.pas';
procedure sst_w_c_doit ( ... |
unit MVCFramework.Console;
interface
type
TConsoleMode = (Normal, Bright);
TConsoleColor = (
Black = 30,
Red = 31,
Green = 32,
Yellow = 33,
Blue = 34,
Magenta = 35,
Cyan = 36,
White = 37);
procedure ResetConsole;
procedure TextColor(const Color: TConsoleColor);
procedure TextBackg... |
// Editor expert for expanding a macro template
unit GX_MacroTemplatesExpert;
interface
uses
Classes, ToolsAPI, GX_EditorExpert, GX_MacroTemplates,
GX_MacroFile, GX_ConfigurationInfo, GX_Actions, GX_MacroExpandNotifier;
type
TMacroTemplatesExpert = class;
TExpandTemplateSettings = class(TTemplat... |
{ 2020/05/11 5.01 Move tests from unit flcTests into seperate units. }
{$INCLUDE flcTCPTest.inc}
unit flcTCPTest_Server;
interface
{ }
{ Test }
{ ... |
unit Document_Module;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "View"
// Модуль: "Document_Module.pas"
// Родные Delphi интерфейсы (.pas)
// Generated from UML model, root element: VCMFormsPack::Class Shared Delphi Sand Bo... |
unit UpdateLocationUnit;
interface
uses SysUtils, BaseExampleUnit, AddressBookContactUnit;
type
TUpdateLocation = class(TBaseExample)
public
procedure Execute(Contact: TAddressBookContact);
end;
implementation
procedure TUpdateLocation.Execute(Contact: TAddressBookContact);
var
ErrorString: String;... |
unit LUX.GPU.Vulkan.Framer;
interface //#################################################################### ■
uses System.Generics.Collections,
vulkan_core;
type //$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$【型】
TVkFramers<TVkSwapch_:class> = class;
TVkFramer<TVkSwa... |
{
TForge Library
Copyright (c) Sergey Kasandrov 1997, 2018
-------------------------------------------------------
# DES block cipher algorithm
# NB: the code follows original hardware implementation:
# - block encryption and decryption functions are identical;
# - ke... |
unit define_datetime;
interface
type
PDatePack = ^TDatePack;
TDatePack = packed record
Year : Word;
Month : Word;
Day : Word;
end;
PTimePack = ^TTimePack;
TTimePack = packed record
Hour : Word;
Minute : Word;
Second ... |
unit multiple_dm;
interface
uses
Windows, Messages, SysUtils, Classes, HTTPApp, WebModu, HTTPProd,
WebAdapt, WebComp, CompProd, PagItems, SiteProd, MidItems, WebForm;
type
Tmultiple = class(TWebPageModule)
AdapterPageProducer: TAdapterPageProducer;
PagedAdapter1: TPagedAdapter;
NumbersList: TStrin... |
unit fTester;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Trakce, Spin, ExtCtrls;
type
TF_Tester = class(TForm)
M_Log: TMemo;
E_Path: TEdit;
B_Load: TButton;
B_Unload: TButton;
B_DCC_Go: TButton;
B_DCC_Stop: TButton;
B... |
unit PoligonForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, StdCtrls, WormsWorld, Grids, Vcl.ExtCtrls,
System.ImageList, Vcl.ImgList, wwFullScreenForm;
type
TPoligonMainForm = class(TForm)
GroupBox1: TGroupBox;
Label1: TLabel;
Map... |
unit WorldControl;
interface
uses
Math, TypeControl, FacilityControl, PlayerControl, TerrainTypeControl, VehicleControl, VehicleUpdateControl, WeatherTypeControl;
type
TWorld = class
private
FTickIndex: LongInt;
FTickCount: LongInt;
FWidth: Double;
FHeight: Double;
FPlayers: T... |
UNIT Pseudo_ver2;
INTERFACE
TYPE
SignsPlace = SET OF 1 .. 25;
SignsLine = SET OF 1 .. 250;
FUNCTION FindLetterNumberEn(VAR F: TEXT): INTEGER; { Sets to each letter in F-file equal number in EN_alphabet }
PROCEDURE GetPseudoLetterLine(VAR Number: INTEGER; VAR F: TEXT); ... |
unit fb2lit_engine;
interface
uses MSXML2_TLB,Windows,LITGen_TLB,ComObj;
Type
TFB2LITConverter=class
Private
XSLVar1,XSLVar2,DOM:IXMLDOMDocument2;
ProcessorVar1,ProcessorVar2:IXSLProcessor;
ModulePath:String;
Function GetDocumentXSL:IXMLDOMDocument2;
Procedure SetDocumentXSL(AXSL:IXMLDOMDocumen... |
{*********************************************************}
{* VPCONST.PAS 1.03 *}
{*********************************************************}
{* ***** BEGIN LICENSE BLOCK ***** *}
{* Version: MPL 1.1 ... |
unit TestFeature;
interface
uses
TestFramework, Classes, FeatureIntf, Feature, TestBaseClasses, StepIntf;
type
TestTFeature = class(TParseContext)
strict private
FFeature: IFeature;
private
function NovoStep(ADescricao: string): IStep;
public
procedure SetUp; override;
procedure TearDown; o... |
{*******************************************************************************
作者: dmzn@163.com 2011-10-29
描述: 运行时调试日志
*******************************************************************************}
unit UFrameRunLog;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls,... |
{!DOCTOPIC}{
Type » T2DExtArray
}
{!DOCREF} {
@method: function T2DExtArray.Len(): Int32;
@desc: Returns the length of the arr. Same as c'Length(Arr)'
}
function T2DExtArray.Len(): Int32;
begin
Result := Length(Self);
end;
{!DOCREF} {
@method: function T2DExtArray.IsEmpty(): Boolean;
@desc: Returns Tru... |
// ***************************************************************************
//
// FMXComponents: Firemonkey Opensource Components Set
//
// Copyright 2017 谢顿 (zhaoyipeng@hotmail.com)
//
// https://github.com/zhaoyipeng/FMXComponents
//
// ***************************************************************************
u... |
unit eAtasOrais.Model.Consts3;
interface
Const
Modelo_English : string = 'eAtasOrais.English.xlsx';
Modelo_Teen : string = 'eAtasOrais.Teen.xlsx';
Modelo_Espanol : string = 'eAtasOrais.Espanol.xlsx';
Modelo_Kids : string = 'eAtasOrais.Kids.xlsx';
Modelo_Master : string = 'eAtasOrais.Master.xlsx';
implem... |
unit f2Skins;
interface
uses
SimpleXML,
JclStringLists,
d2dTypes,
d2dInterfaces,
//d2dFont,
d2dGUIButtons,
f2Types;
type
Tf2Skin = class(TObject)
private
f_XML: IXmlDocument;
f_ScreenHeight: Integer;
f_ScreenWidth: Integer;
f_FullScreen: Boolean;
f_TexList: IJclStringList; // textures
f_FntLis... |
unit uXMLDatasource;
{
Ollivier Civiol - 2019
ollivier@civiol.eu
https://ollivierciviolsoftware.wordpress.com/
}
interface
uses
Windows, Classes, SysUtils, contnrs, UXmlDoc,
MSAccess, cxCustomData, cxGridTableView, cxTLData;
type
{ XML CUSTOM DATASOURCE }
TXMLTvDataSource = class(TcxTreeListCustomDataSou... |
{
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 nscTreeViewHotTruck;
{ $Id: nscTreeViewHotTruck.pas,v 1.6 2011/11/30 12:30:09 lulin Exp $ }
// $Log: nscTreeViewHotTruck.pas,v $
// Revision 1.6 2011/11/30 12:30:09 lulin
// {RequestLink:232098711}.
// - выравниваем галочки.
//
// Revision 1.5 2010/01/28 08:37:03 oman
// - new: обрабатываем пустые списки {Re... |
unit htDataSchemeHelper;
// Модуль: "w:\common\components\rtl\Garant\HT\htDataSchemeHelper.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "ThtDataSchemeHelper" MUID: (555F0C89007D)
{$Include w:\common\components\rtl\Garant\HT\htDefineDA.inc}
interface
uses
l3IntfUses
, l3ProtoObject
, htInterfaces
, htData... |
{******************************************************************************}
{ }
{ Delphi FB4D Library }
{ Copyright (c) 2018-2022 Christoph Schneider ... |
unit MMO.Packet;
interface
uses
Classes;
type
TPacket = class abstract
private
protected
var m_data: TMemoryStream;
function GetMemory: Pointer;
public
constructor Create;
destructor Destroy; override;
procedure Skip(count: integer);
function Seek(offset, origin: ... |
unit ServerHorse.Routers.Companies;
interface
uses
System.JSON,
Horse,
Horse.Jhonson,
Horse.CORS,
ServerHorse.Controller;
procedure Registry;
implementation
uses
System.Classes,
ServerHorse.Controller.Interfaces,
ServerHorse.Model.Entity.COMPANIES,
System.SysUtils,
ServerHorse.Utils,
Horse.Pa... |
unit vcmSettings;
{ Библиотека "vcm" }
{ Автор: Люлин А.В. © }
{ Модуль: vcmSettings - }
{ Начат: 31.07.2003 14:27 }
{ $Id: vcmSettings.pas,v 1.128 2016/09/13 18:32:46 kostitsin Exp $ }
// $Log: vcmSettings.pas,v $
// Revision 1.128 2016/09/13 18:32:46 kostitsin
// {requestlink: 630194905 }
//
// Revis... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.