text stringlengths 14 6.51M |
|---|
unit rtfListTable;
{ Таблица списков для чтения из RTF }
interface
uses
l3Base,
l3Memory,
l3LongintList,
l3ProtoObject,
l3ProtoObjectRefList,
ddCharacterProperty;
type
TrtfListLevel = class(Tl3ProtoObject)
private
f_CHP: TddCharacterProperty;
f_CurNumber: Integer;
f_Follow: Integer;
f_Justify: Inte... |
{*******************************************************}
{ }
{ Delphi FireMonkey Platform }
{ }
{ Copyright(c) 2011-2013 Embarcadero Technologies, Inc. }
{ ... |
unit MFichas.Model.Produto;
interface
uses
System.SysUtils,
MFichas.Model.Produto.Interfaces,
MFichas.Model.Produto.Metodos.Buscar,
MFichas.Model.Produto.Metodos.Buscar.Model,
MFichas.Model.Produto.Metodos.Cadastrar,
MFichas.Model.Produto.Metodos.Editar,
MFichas.Model.Entidade.PRODUTO,
MFichas.Model.... |
unit DSoundOut;
interface
uses
Windows,
DirectSound,
ExtTimer;
type
TDataProc = function(var Data; Size : integer) : integer of object;
TDsoundOut =
class
public
constructor Create;
destructor Destroy; overri... |
unit DW.PushKit.iOS;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library }
{... |
{Version 9.45}
{$i HtmlCons.inc}
unit HtmlGif1;
{***************************************************************}
{* htmlgif1.pas *}
{* *}
{* Thanks to Ron Collins for the Gif code in this module. *}
{* ... |
{$MODE OBJFPC}
program Task;
const
InputFile = 'INTSLE.INP';
OutputFile = 'INTSLE.OUT';
sNoSol = 'NO SOLUTION';
var
fi, fo: TextFile;
a1, b1, c1, a2, b2, c2: Int64;
d, dx, dy: Int64;
function GCD(a, b: Int64): Int64;
var
r: Int64;
begin
while b <> 0 do
begin
r := a mod b; a := b; b := r;
... |
{ ***************************************************************************
Copyright (c) 2014-2017 Kike Pérez
Unit : Quick.WebBrowser
Description : Web browser functions
Author : Kike Pérez
Version : 1.0
Created : 10/02/2014
Modified : 03/11/2016
This file is part of QuickLi... |
unit Rankings;
interface
uses
MetaInstances, Classes, Collection, SyncObjs, CacheAgent, Languages;
type
TRanking =
class( TMetaInstance )
public
constructor Create( anId, aSuperRanking : string; aName : TMultiString; Max : integer );
destructor Destroy; override;
... |
unit UTreeItem;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, ComCtrls,
Dialogs, Buttons, ExtCtrls, StdCtrls, IniFiles;
type
TTreeItem = class
Node:TTreeNode;
Section:String;
procedure ChangeData(Btn:TButton; Pnl:TPanel);
function Enter:TFrame;virtual;abstract;... |
namespace Sugar.Collections;
interface
uses
Sugar;
type
Stack<T> = public class mapped to {$IF COOPER}java.util.Stack<T>{$ELSEIF ECHOES}System.Collections.Generic.Stack<T>{$ELSEIF TOFFEE}Foundation.NSMutableArray{$ENDIF}
public
constructor; mapped to constructor();
method Contains(Item: T... |
(*
* 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/
*
* Software distributed under the License is distributed on an "AS... |
unit BackTaskForm;
interface
uses
SysUtils, Types, Classes, Variants, Graphics, Controls,
Forms, Dialogs, StdCtrls, ExtCtrls, ComCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
ProgressBar1: TProgressBar;
Button2: TButton;
Button3: TButton;
procedure Button1Click(Sender: TObject);
p... |
unit ConfigFE;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, FileCtrl, ExtCtrls, Mask, JvExMask, JvToolEdit, Inifiles,
JvSpin;
type
TFConfigFe = class(TForm)
rgRegien: TRadioGroup;
lblCert: TLabel;
lblClave: TLabel;
bOK: TButton;
... |
unit GX_HideNavbar;
{
================================================================================
IDE Expert to hide/disable the Editor Navigation Toolbar (Castalia)
from the Delphi 10 Seattle IDE.
Contributed by: Achim Kalwa <delphi(at)achim-kalwa.de>
Integrated into GExperts by Thomas Mueller (http://blo... |
unit SelectDate;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.WinXCalendars, Vcl.ExtCtrls;
type
TOnSelectRef = reference to procedure (Date: TDate);
TSelectDateForm = class(TForm)
CalendarView: T... |
// islip - IneQuation's Simple LOLCODE Interpreter in Pascal
// Written by Leszek "IneQuation" Godlewski <leszgod081@student.polsl.pl>
// Helper module for parsing floating point numbers out of strings, since
// Delphi's StrToFloat implementation appears to be locale-based
unit convert;
interface
uses typedefs;
fun... |
program loanapproval(input, output);
{
chapter 4 assignment
alberto villalobos
february 12
program to determine the eligibility of a loan applicant ofr a loan.
top down design
---------------
input: salary(integer); credit rating(integer);
cost... |
unit uVariantInterface;
interface
type
IVariant = interface(IInterface)
['{AE703A4B-0681-467D-9823-1261DB41FB28}']
function GetValue: Variant; stdcall;
procedure SetValue(const Value: Variant); stdcall;
property Value: Variant read GetValue write SetValue;
end;
function CreateIVariant(AValue: Var... |
{
Copyright (C) 2013-2021 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 uServerPublic;
interface
uses
Windows, System.SysUtils, Generics.Collections,
Data.DB, Data.Win.ADODB, uPublic, HPSocketSDKUnit
, QMsgPack;
type
TConfigInfo = record
IP: string;
Port: Word;
DB_Host: string;
DB_Name: string;
DB_Account: string;
DB_PassWord: string;
end;
var
G... |
{*********************************************************}
{* STNVBITS.PAS 3.01 *}
{* Copyright (c) TurboPower Software Co., 1996-2000 *}
{* All rights reserved. *}
{*********************************************************}
{$I STDEFINE.INC}
... |
unit uChamadoDetalhes;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls, Vcl.ComCtrls,
uChamadoController, Data.DB, Datasnap.DBClient, uEnumerador;
const
COR_ABERTURA: Integer = clR... |
unit GraphicPanel;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ExtCtrls;
type
{ TGraphicPanel }
TGraphicPanel = class(TPanel)
private
fup:tpicture;
fdown:tpicture;
fleft:tpicture;
fright:tpicture;
fupperleft:tpicture;
fupper... |
unit QuickExport;
{$WARN SYMBOL_PLATFORM OFF}
interface
uses
ComObj, ActiveX, FB2_to_TXT_TLB, StdVcl,fb2txt_engine;
type
TFB2AnyQuickExport = class(TAutoObject, IFB2AnyQuickExport)
public
procedure AfterConstruction; Override;
procedure BeforeDestruction; override;
protected
Converter:TTXTConver... |
unit TTSCITMTable;
interface
uses
Classes, DB, DBISAMTb, SysUtils, DBISAMTableAU, DataBuf;
type
TTTSCITMRecord = record
PLenderNum: String[4];
PCollCode: String[8];
PTrackCode: String[8];
PModCount: Integer;
PCritical: Boolean;
PCIFDate: String[8];
End;
TTTSCITMBuf... |
unit kwPopComboBoxIndexOf;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "ScriptEngine"
// Модуль: "w:/common/components/rtl/Garant/ScriptEngine/kwPopComboBoxIndexOf.pas"
// Родные Delphi интерфейсы (.pas)
// Generated from UML... |
unit Bird.Socket.View;
interface
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms,
Vcl.Dialogs, dxGDIPlusClasses, Vcl.ExtCtrls, Vcl.StdCtrls, Bird.Socket;
type
TFrmMainMenu = class(TForm)
Panel7: TPanel;
imgHeader: TImage;
i... |
unit Thread.EDIClient;
interface
uses
System.Classes, Control.Entregas, Control.PlanilhaEntradaTFO, System.SysUtils, System.DateUtils, Control.VerbasExpressas,
Control.Bases, Control.EntregadoresExpressas, Generics.Collections, System.StrUtils, Control.PlanilhaEntradaDIRECT,
Control.PlanilhaEntradaSimExpress, C... |
{ *******************************************************************************
Copyright (c) 2004-2010 by Edyard Tolmachev
IMadering project
http://imadering.com
ICQ: 118648
E-mail: imadering@mail.ru
******************************************************************************* }
unit MemoUnit... |
unit Form_GraphViewUnit;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMXTee.Engine, FMXTee.Procs,
FMXTee.Chart, Data.Bind.EngExt, Fmx.Bind.DBEngExt, Data.Bind.Components,
Data.Bind.DBScope, Data.DB, FMXTee.Seri... |
unit AdminFormKeywordsPack;
{* Набор слов словаря для доступа к экземплярам контролов формы AdminForm }
// Модуль: "w:\garant6x\implementation\Garant\GbaNemesis\View\Admin\AdminFormKeywordsPack.pas"
// Стереотип: "ScriptKeywordsPack"
// Элемент модели: "AdminFormKeywordsPack" MUID: (460F76F86341)
{$Include w:\garant... |
unit uPrincipal;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TForm9 = class(TForm)
MemColuna: TMemo;
MemTabelas: TMemo;
MemCondicoes: TMemo;
Label1: TLabel;
... |
{
Модуль компонента комбобокса журнала сообщений.
}
unit ICLogComboBoxEx;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ComboEx;
const
UNASSIGNED_DATETIME = -693594;
type
{
Журнал сообщений в виде комбобокса.
}
TICLogComboBoxEx = class(TComboBoxEx... |
unit uDMRelUsuario;
interface
uses
System.SysUtils, System.Classes, uDM, Data.DB, Datasnap.DBClient, ppDB,
ppProd, ppClass, ppReport, ppComm, ppRelatv, ppDBPipe, ppCtrls, ppPrnabl,
ppVar, ppBands, ppCache, ppDesignLayer, ppParameter, uFuncoesSIDomper,
uUsuarioVO, System.Generics.Collections;
type
TDMRelUsu... |
{-----------------------------------------------------------------------------
hpp_services (historypp project)
Version: 1.5
Created: 05.08.2004
Author: Oxygen
[ Description ]
Module with history's own services
[ History ]
1.5 (05.08.2004)
First version
[ Modifications ]
none
... |
/// <summary>
/// <para>
/// MQTT 消息队列客户端实现: <br />使用方法: <br />1、创建一个 TQMQTTMessageClient
/// 实例,也可以直接用全局的 DefaultMQTTClient 实例。 <br />2、调用 RegisterDispatch
/// 关联主题与处理函数之间的关系。 <br />3、调用 Subscribe
/// 函数添加订阅,注意如果网络没有连接,则不会实际注册,在网络连接后会自动注册。 <br />4、调用 Start 启动客户端。 <br />
/// 5、要发布主题,调用 Publish 方法发布 <br />6、停止连接可以调用 Sto... |
{ ---------------------------------------------------
String Manager Copyright (r) by DreamFactory
Version : 1.75 Author : William Yang
Last Update 25 - Aug - 97
--------------------------------------------------- }
unit StrMan; { String Manager }
interface
{ -- Declaretion Part -- }
uses Windows, SysUt... |
unit ExtAILogDLL;
interface
uses
Classes, SysUtils,
ExtAILog;
type
// DLL logger
TLogDLL = class
private
fFileS: TFileStream;
fLogs: TStringList;
public
fLog: TExtAILog;
constructor Create();
destructor Destroy; override;
property GetTLog: TExtAILog read fLog write fLog;
proce... |
unit EmailOrdering.Views.SettingsForm;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Grids, Vcl.ValEdit, Vcl.ComCtrls,
EmailOrdering.Models.Config, EmailOrdering.Controllers.MainControllerInt,
Vcl.StdCt... |
UNIT CountingWords;
INTERFACE
TYPE
Tree = ^Node;
Node = RECORD
Word: STRING; //поле ячейки, содержит в себе слово-символы
Counter: INTEGER; //счётчик, показывает, кол-во одинаково обработанных Word при вставке в дерево
Left, Right: Tree //указатели в бинарном дереве ... |
unit GX_UsesExpertOptions;
interface
uses
Windows,
Messages,
SysUtils,
Variants,
Classes,
Graphics,
Controls,
Forms,
Dialogs,
StdCtrls;
type
TfmUsesExpertOptions = class(TForm)
chkSingleActionMode: TCheckBox;
chkReplaceFileUnit: TCheckBox;
btnOK: TButton;
bt... |
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons, Vcl.ExtCtrls, System.Json;
type
TForm1 = class(TForm)
gbAjout: TGroupBox;
gbListe: TGroupBox;
btnA... |
{
Double Commander
-------------------------------------------------------------------------
This unit contains TFileViewPage and TFileViewNotebook objects.
Copyright (C) 2016-2018 Alexander Koblov (alexx2000@mail.ru)
This program is free software; you can redistribute it and/or modify
it under the ... |
unit AServicos;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls, ComCtrls, DBTables, Db, DBCtrls, Grids, DBGrids,
Buttons, Menus, formularios, PainelGradiente,
Tabela, Componentes1, LabelCorMove, Localizacao, Mask,
EditorImagem, ImgList, n... |
unit JSONNullableAttributeUnit;
interface
uses
REST.Json.Types, REST.JsonReflect;
type
BaseJSONNullableAttribute = class abstract(JsonReflectAttribute)
private
FIsRequired: boolean;
protected
constructor CreateCommon;
public
/// <summary>
/// Constructor of JSONNullableAttribute
/// <pa... |
{ Subroutine SST_NAME_NEW_OUT (NAME,NAME_P,SYM_PP,STAT)
*
* Add a new name to the output symbol table at the current scope.
*
* NAME is the name to add. The current character case setting for output symbol
* names will be applied before adding NAME to the symbol table.
*
* NAME_P is returned pointing to th... |
unit Integrals_;
interface
uses Unit4;
function IntRectR(F: TFunc2d; a,b: extended; N: integer): TReal; overload;
function IntRectM(F: TFunc2d; a,b: extended; N: integer): TReal;
function IntRectL(F: TFunc2d; a,b: extended; N: integer): TReal; overload;
function IntTrapz(F: TFunc2d; a,b: extended; N: integer):... |
unit caUserManager;
// Модуль: "w:\common\components\rtl\Garant\ComboAccess\caUserManager.pas"
// Стереотип: "SimpleClass"
// Элемент модели: "TcaUserManager" MUID: (56C428E4014A)
{$Include w:\common\components\rtl\Garant\ComboAccess\caDefine.inc}
interface
{$If Defined(UsePostgres) AND Defined(TestComboAccess)}
us... |
{$REGION 'Copyright (C) CMC Development Team'}
{ **************************************************************************
Copyright (C) 2015 CMC Development Team
CMC 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 ... |
$TITLE TIMUTL.PAS, last modified 2/28/84, zw
MODULE timutl;
$HEADER TIMUTL.HDR
TIMUTL.HDR, lst modified 2/28/84, zw
Day times are represented in three formats:
1) packed format, "dt_pak": number of days since day zero (17-Nov-1858)
number of seconds since midnight
2) record format, "dt_rcd": year, m... |
{
Copyright (c) 2017-18 Pascal Riekenberg
VirtualTreeView-Helper-Class
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the impli... |
unit uModel;
interface
type
TUsuario = class
private
class var FInstance : TUsuario;
constructor CreatePrivate();
public
constructor Create();
class function GetInstance:TUsuario;
end;
TConexao = class
strict private
class var FInstance: TConexao;
constructor Create;
pu... |
{
Clever Internet Suite
Copyright (C) 2013 Clever Components
All Rights Reserved
www.CleverComponents.com
}
unit clSocketUtils;
interface
{$I clVer.inc}
uses
{$IFNDEF DELPHIXE2}
Classes, Windows, SysUtils,
{$ELSE}
System.Classes, Winapi.Windows, System.SysUtils,
{$ENDIF}
clUtils;
type
EclSocketErro... |
unit ssExcel;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ssWaitForExcel{, VCLUtils};
type
TOnProcessEvent = function(Sender: TObject;
ProcessID : integer;
FWait : TfrmWaitForExcel) : boolean of obje... |
{
Helper functions for easy implementation of TLS communication by means of
Windows SChannel.
The functions are transport-agnostic so they could be applied to any socket
implementation or even other transport.
Inspired by [TLS-Sample](http://www.coastrd.com/c-schannel-smtp)
Uses [JEDI API units](https://j... |
unit FindUnit.Utils;
interface
uses
IOUtils, Classes, SimpleParser.Lexer.Types, TlHelp32, Windows;
type
TIncludeHandler = class(TInterfacedObject, IIncludeHandler)
private
FPath: string;
public
constructor Create(const Path: string);
function GetIncludeFileContent(const FileName: str... |
{******************************************************************************}
{ }
{ WiRL: RESTful Library for Delphi }
{ ... |
{ iOS NOB-designer for the Lazarus IDE
Copyright (C) 2012 Joost van der Sluis 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
the Free Software Foundation; either version 2 of the License, or (at yo... |
//This unit doesn't handle continue records.
//I don't know a way to input a formula larger than one record.
unit tmsUXlsFormulaParser;
{$INCLUDE ..\FLXCOMPILER.INC}
interface
uses tmsXlsMessages, tmsXlsFormulaMessages, tmsUFlxStack, tmsUXlsBaseRecords,
SysUtils, tmsUXlsBaseRecordLists, tmsUFlxMessages, tmsUXlsR... |
{ Subroutine SST_EXP_USEAGE_CHECK (EXP,RW,DTYPE)
*
* Check that the attributes of an expression are consistant with its useage.
* It is assumed that the expression descriptor is completely filled in and
* evaluated. An expression may be evaluated with routine SST_EXP_EVAL.
*
* EXP - Expression descriptor.
... |
unit CacheServerReportForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ComCtrls, ExtCtrls, StdCtrls, SyncObjs, SocketComp, ImageClient;
const
MaxTicks = 30;
PictureServerPort = 6010;
type
TCacheServerReport = class(TForm)
Panel1: TPanel;
Image... |
unit uFiltroRomaneioIndexadoClass;
interface
uses
Forms, SysUtils, Classes, pcnGerador, pcnLeitor, uMatVars, LibGeral, TypInfo, pcnConversao;
type
TRotaItem = class;
TRotas = class;
TCidadeCollection = class;
TCidadeCollectionItem = class;
TClienteCollection = class;
TClienteCollectionItem = class;
T... |
unit aeMaterial;
interface
uses types, aeColor, dglOpenGL;
type
TaeMaterialRenderMode = (AE_MATERIAL_RENDERMODE_TRIANGLES, AE_MATERIAL_RENDERMODE_WIREMESH);
type
TaeMaterial = class
private
_color: TaeColor;
// opengl mode : GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES,
// GL_TRIANGLE_STRIP, G... |
unit DAO.Bases;
interface
uses
FireDAC.Comp.Client, System.SysUtils, DAO.Conexao, Model.Bases;
type
TBasesDAO = class
private
FConexao : TConexao;
public
constructor Create;
function Inserir(ABase: TBases): Boolean;
function Alterar(ABase: TBases): Boolean;
function Excluir(ABase: TBa... |
unit FastMM_OSXUtil;
interface
type
LPCSTR = PAnsiChar;
LPSTR = PAnsiChar;
DWORD = Cardinal;
BOOL = Boolean;
PSystemTime = ^TSystemTime;
_SYSTEMTIME = record
wYear: Word;
wMonth: Word;
wDayOfWeek: Word;
wDay: Word;
wHour: Word;
wMinute: Word;
wSecond: Word;
wMilliseconds: ... |
unit MFichas.Controller.Usuario.Operacoes.Interfaces;
interface
uses
MFichas.Controller.Types;
type
iControllerUsuarioOperacoes = interface;
iControllerUsuarioOperacoesPedirSenha = interface;
iControllerUsuarioOperacoes = interface
['{2E1ADF5A-9BC9-4297-9625-FB95253ACC9C}']
function PedirS... |
unit liMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Mask, ToolEdit, ComCtrls, l3Types;
type
TMainForm = class(TForm)
feFilename: TFilenameEdit;
Label1: TLabel;
ProgressBar: TProgressBar;
btnStart: TButton;
procedure feFil... |
{***********************************************************************************************************************
*
* TERRA Game Engine
* ==========================================
*
* Copyright (C) 2003, 2014 by SÚrgio Flores (relfos@gmail.com)
*
***************************************************... |
{$include lem_directives.inc}
unit LemRendering;
{-------------------------------------------------------------------------------
Some notes on the rendering here...
Levels consist of terrains and objects.
1) Objects kan animate and terrain can be changed.
2) Lemmings only have collisions with terra... |
unit fmuBillAcceptor;
interface
uses
// VCL
Windows, Forms, ComCtrls, StdCtrls, Controls, Classes, SysUtils, Messages,
Buttons, Dialogs,
// This
untPages, untUtil, untDriver;
type
{ TfmBillAcceptor }
TfmBillAcceptor = class(TPage)
Memo: TMemo;
btnGetCashBillStatus: TButton;
btnGetBillAccep... |
unit StockDayDataAccess;
interface
uses
define_dealItem,
BaseDataSet,
define_price,
define_datasrc,
QuickList_DayData,
define_stock_quotes;
type
{ 行情日线数据访问 }
TStockDayData = record
DealItem : PRT_DealItem;
IsDataChangedStatus: Byte;
WeightMode : Byt... |
{ CSI 1101-X, Winter, 1999 }
{ Assignment 8 }
{ Identification: Mark Sattolo, student# 428500 }
{ tutorial group DGD-4, t.a. = Jensen Boire }
program a8 (input,output);
const
maxIDsize = 4 ; { maximum length of identifiers (labels, etc.) }
maxStatements = 400 ; { maximum number of statements in ... |
unit Model.EntityGenerate;
interface
uses
System.StrUtils,
System.SysUtils,
Data.DB,
Model.Interfaces,
Model.DAO.Interfaces,
Model.DAO.Connection.FireDac,
Model.FileControl,
Model.Util;
type
TModelEntityGenerate = class(TInterfacedObject, iModelEntityGenerate)
private
... |
program V_AV;
const DEFAULT_CAP_SIZE = 16;
type
intArray = array[1..1] of integer;
Vector = ^VectorObj;
VectorObj = OBJECT
PRIVATE
arrPtr : ^intArray;
capacityCount : integer;
top : integer; //equals size
initCapacity : integer;
PUBLIC
... |
unit frmContacts;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
FMX.ListView.Types, FMX.ListBox, FMX.StdCtrls, FMX.ListView,
CommonHeader, strutils,
FmxJabberTools, FMX.TabControl, FMX.Layouts, FM... |
{ //************************************************************// }
{ // // }
{ // Código gerado pelo assistente // }
{ // // }
{ // Projeto MVCBr ... |
program Median (input, output);
{ bestimmt den Median einer einzugebenden Buchstabenfolge aus mindestens zweich verschiedenen Kleinbuchstaben }
type
tBuchst = 'a'..'z';
tNatZahl = 0..maxint;
tFeld = array [tBuchst] of boolean;
var
vorhanden : tFeld;
gesamt,
i,
MedianPos : tNatZahl;... |
unit MemoForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, FormOperations, StdCtrls, SaveStatusForms;
type
TFormMemo = class(TSaveStatusForm, IFormOperations)
Memo1: TMemo;
OpenDialog1: TOpenDialog;
SaveDialog1: TSaveDialog;
private
{ Pri... |
{******************************************************************************}
{ }
{ Library: Fundamentals TLS }
{ File name: flcTLSTransportTypes.pas ... |
{$IFDEF VER1_0}
{$IFDEF ENDIAN_LITTLE}
{$DEFINE FPC_LITTLE_ENDIAN}
{$ENDIF ENDIAN_LITTLE}
{$IFDEF ENDIAN_BIG}
{$DEFINE FPC_BIG_ENDIAN}
{$ENDIF ENDIAN_BIG}
{$ENDIF VER1_0}
{$IFDEF FPC_LITTLE_ENDIAN}
{$IFDEF FPC_BIG_ENDIAN}
{$FATAL Both FPC_LITTLE_ENDIAN and FPC_BIG_ENDIAN defined?!}
{$ENDIF FPC_... |
// 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... |
unit glr_gamescreens;
interface
uses
glr_core,
glr_utils;
type
// Usual lifecycle:
// Hidden -> Loading -> Ready -> Paused/Unpaused -> Unloading -> Hidden
TglrGameScreenState = ( gssHidden = 0, gssLoading, gssReady, gssPaused, gssUnloading );
// GameScreen is something like a form, internal... |
{$include lem_directives.inc}
unit AppController;
interface
uses
Classes, SysUtils, UMisc, //typinfo,
Forms,
LemTypes, LemRendering, LemLevel, LemDosStyle, LemDosGraphicSet,
{$ifdef flexi}LemDosMainDAT,{$endif}
FBaseDosForm,
GameControl;
type
{---------------------------------------------... |
unit ElToolbarDemoMain;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, ElPanel, ElToolBar, ElPopBtn, ElBtnCtl, ElCheckCtl, StdCtrls,
ElACtrls, ElClrCmb, Buttons, ElImgFrm, ElVCLUtils, ElSpin,
ElImgLst, ElXPThemedControl, ImgList, ElEdits, ElBtnEdit, ElCombos... |
unit DelphiUp.View.Components.Card001;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
FMX.Controls.Presentation, FMX.StdCtrls, FMX.Objects, FMX.Layouts,
DelphiUp.View.Components.Cards.Interfa... |
unit Cabeleireiro_u;
interface
uses
System.Classes, Vcl.CheckLst, System.SysUtils, Vcl.StdCtrls, System.SyncObjs, Winapi.Messages,
Vcl.Forms;
type
Cabeleireiro = class(TThread)
private
FilaClientes: TCheckListBox;
QuantidadeCadeiras: Integer;
CadeiraCabeleireiro: TCheckBox;
SecaoC... |
unit MFichas.Model.Empresa.Metodos.Buscar.View;
interface
uses
System.SysUtils,
MFichas.Model.Empresa.Interfaces,
FireDAC.Comp.Client,
FireDAC.Comp.DataSet;
type
TModelEmpresaMetodosBuscarView = class(TInterfacedObject, iModelEmpresaMetodosBuscarView)
private
[weak]
FParent : iModelEmpresa;
... |
unit hcQueryQueue;
// Назначение : Очередь необработанных запросов;
// Автор : М. Морозов;
// Версия : $Id: hcQueryQueue.pas,v 1.3 2008/02/20 06:47:56 oman Exp $
{-------------------------------------------------------------------------------
$Log: hcQueryQueue.pas,v $
Revision 1.3 2008/02/20 06:47:56 ... |
{*******************************************************************************
作者: dmzn@163.com 2009-11-3
描述: USB头文件
*******************************************************************************}
unit UUSBLib;
interface
const
cMachine = '.';
const
USB_SUBMIT_URB = 0;
U... |
unit kwPopFormActiveMDIChild;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Библиотека "ScriptEngine"
// Модуль: "w:/common/components/rtl/Garant/ScriptEngine/kwPopFormActiveMDIChild.pas"
// Родные Delphi интерфейсы (.pas)
// Generated fr... |
{*******************************************************}
{ }
{ CodeGear Delphi Runtime Library }
{ Copyright(c) 2016 Embarcadero Technologies, Inc. }
{ All rights reserved }
{ ... |
unit MFichas.Model.Configuracao.Interfaces;
interface
uses
System.Generics.Collections,
MFichas.Model.Entidade.CONFIGURACOES,
ORMBR.Container.ObjectSet.Interfaces,
ORMBR.Container.DataSet.Interfaces,
FireDAC.Comp.Client;
type
iModelConfiguracao = interface;
iModelConfiguracaoMetodo... |
// islip - IneQuation's Simple LOLCODE Interpreter in Pascal
// Written by Leszek "IneQuation" Godlewski <leszgod081@student.polsl.pl>
// Bytecode interpreter unit
unit interpreter;
{$IFDEF fpc}
{$MODE objfpc}
{$ENDIF}
interface
uses typedefs, variable, bytecode, SysUtils;
type
islip_stack = class
... |
unit main;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Generics.Collections,
System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms,
FMX.Graphics, FMX.Dialogs, FMX.Objects, FMX.Layouts,
FMX.Controls.Presentation, FMX.StdCtrls, FMX.Calendar, RegularPolygon,
FMX.Menus, FM... |
{ *************************************************************************** }
{ }
{ This file is part of the XPde project }
{ }
... |
unit main;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
ComCtrls, ExtCtrls, Buttons, CsvDocument, dnssend, tlntsend;
type
{ TfrmMain }
TfrmMain = class(TForm)
btnLoadCSV: TButton;
btnVerifyAll: TButton;
CSV_OpenDialog: TOpenDialo... |
unit fmuCustomerAttributes;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, AtrPages, ToolCtrlsEh, ComCtrls, ToolWin,
GridsEh, DBGridEh, DB, FIBDataSet, pFIBDataSet, ActnList,
DBGridEhToolCtrls, DBAxisGridsEh, System.Actions, PrjConst,
EhLibVCL, System.UIT... |
unit ClientTrain;
interface
uses
Classes, StateEngine, DistributedStates, ActorTypes, ActorPool, Automaton, Train, Vehicles;
const
HighResFreqMult = 10;
type
TClientCar = class;
TClientCarModification = (ccmInserted, ccmDeleted);
TOnClientCarModified = procedure( Car : TClientCar; Modif... |
{ Subroutine SST_R_PAS_SMENT_VAR
*
* Process the Pascal VAR_STATEMENT syntax. This will also involve processing
* any number of VAR_SUBSTATEMENT syntaxes. These will be invoked explicitly
* with the syntax subroutine SSR_R_PAS_SYN_VAR.
}
module sst_r_pas_SMENT_VAR;
define sst_r_pas_sment_var;
%include 'sst_r_... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.