Delphi RTL

Delphi RTL is a Delphi-compatible RTL and non-visual VCL implementation for the Elements compiler (and more specifically, the Oxygene language).
Goal
The goal of this project is to reproduce a reasonable subset of standard Delphi APIs used by a large percentage of Delphi code bases, in order to facilitate and ease the porting of such code bases to Oxygene to re-use business logic in .NET, Cocoa, Java/Android or Island applications.
The goal is most decidedly not to get existing Delphi projects or applications to just recompile out of the box. The differences between the platforms are too significant, and there is only so much abstraction a library such as this can provide; some changes to exiting code will continue to be required for it to build in Oxygene, and some paradigms need to be rethought to fit in well with the platforms.
Scope
The scope of this project is purposely limited to simple APIs, commonly used low-level helper functions (such as SysUtils.pas
) and simple classes (such as TStringList
), as well as to make core types such as Object
and String
more compatible with Delphi code. For some platforms, rudimentary support for VCL forms and .DFMs is provided, as well.
Decidedly out of scope are advanced UI level libraries such as the complete VCL or FMX, Delphi's TDataSet-based database layer, or anything on that level.
Implementation
This library is implemented fully from scratch, without referencing or reusing any of Delphi's or FPCs implementation of the same functionality. Merely the outward-facing API is kept identical and compatible with Delphi's version of the RTL/VCL.
Where possible, the library is targeted to work well for code coming from both older (ca. Delphi 6/7) and more recent Delphi versions; while it does/will support AnsiStrings, it does strongly favor UTF-16 unicode strings (aka WideStrings
), as used both by newer Delphi versions and all of Elements' target platforms.
Classes and Types
This library is a work in progress; all functionality presented is useable now, and it will be expanded and grown over time. Contributions on GitHub are more than welcome.
Currently, the following major types are supported/implemented. Unless otherwise noted, all parts of Elements RTL are available across all platforms, including Island.
Classes
- ComponentsHelper
- ObjectConverter
- TApplication
- TButton
- TButtonControl
- TBytesStream
- TCheckBox
- TClassActivator
- TCollection
- TCollectionItem
- TComboBox
- TComboBoxItems
- TComponent
- TControl
- TCustomControl
- TCustomForm
- TCustomIniFile
- TCustomMemoryStream
- TDictionary<TKey,TValue>
- TEdit
- TEnumerable<T>
- TFiler
- TFileStream
- TFont
- TForm
- TGraphicControl
- TGroupBox
- THandleStream
- THighDPI
- TIniFile
- TLabel
- TLanguages
- TList<T>
- TListBox
- TListColumn
- TListColumns
- TListControl
- TListControlItems
- TListItem
- TListItems
- TListView
- TMargins
- TMemIniFile
- TMemo
- TMemoryStream
- TMessageTableCache
- TMultiSelectListControl
- TNativeControl
- TOSVersion
- TPadding
- TPanel
- TParser
- TPersistent
- TPlatformListViewItem
- TProgressBar
- TQueue<T>
- TRadioButton
- TReader
- TRegistry
- TScreen
- TScrollingWinControl
- TStack<T>
- TStream
- TStringBuilder
- TStringList
- TStrings
- TStyleThemes
- TSubItems
- TTreeNode
- TTreeNodes
- TTreeView
- TWriter
Interfaces
Enums
- TAddMode
- TAlign
- TAlignment
- TArchitecture
- TCheckBoxState
- TCollectionNotification
- TCompareOption
- TComponentStateEnum
- TContentType
- TDirection
- TDuplicates
- TFontPitch
- TFontQuality
- TFontStyle
- THighDPISupportLevel
- TItemChange
- TLocaleOptions
- TMouseButton
- TMultiSelectStyles
- TNodeAttachMode
- TNodeState
- TOperation
- TParserToken
- TPlatform
- TProgressBarStyle
- TRegDataType
- TReplaceFlag
- TSeekOrigin
- TShiftStateValues
- TSortType
- TStringsOption
- TStringSplitOptions
- TValueType
- TViewStyle
Records
- AnsiString
- DelphiString
- TCreateParams
- TFormatSettings
- TMessage
- TRect
- TRegDataInfo
- TRegKeyInfo
- TSysLocale
- TTimeStamp
Aliases
- arrayofT<T> = array of T Island
- HResult = Int64
-
IEnumerable<T>
- System.Collections.Generic.IEnumerable<T> .NET
- java.lang.Iterable<T> Cooper
- RemObjects.Elements.System.IEnumerable<T> Island
- RemObjects.Elements.System.INSFastEnumeration<T> Toffee
- PInterfaceEntry = Pointer
- PInterfaceTable = Pointer
-
PlatformString
- String .NET, Cooper, Island
- NSString Toffee
-
Pointer
- ^Void .NET, Toffee
- Integer Cooper
- ^void Island
- TArray<T> = array of T Island
- TBytes = array of Byte
-
TCharArray
- array of Char .NET, Island
- array of Character Cooper
- array of __ElementsBoxedChar Toffee
- TClass = Pointer
- TCollectionItemClass
- TColor = Int32 .NET, Island-WebAssembly-wasm32, Island-Windows, Toffee-macOS
- TCompareOptions = set of TCompareOption
- TComponentClass
- TCustomData
- TDate = TDateTime
- TDateTime = Double
- TEncoding = Encoding
- TFontStyles = set of TFontStyle .NET, Island-WebAssembly-wasm32, Island-Windows, Toffee-macOS
- TGUID = Guid
- THandle = Int64
- TImageIndex = Int32 .NET, Island-Windows, Toffee-macOS
- TListColumnClass
- TLocaleID = Locale
- TMarginSize = UInt32 .NET, Island-WebAssembly-wasm32, Island-Windows, Toffee-macOS
- TMessageTable = List<KeyValuePair<UInt32, MethodInfo>> Island-Windows
- TObject = Object
- TPair<T,U> = KeyValuePair<T,U>
-
TPlatformNodeHandle
- TreeViewItem .NET
- HTREEITEM Island-Windows
- Object Toffee-macOS
- TReplaceFlags = set of TReplaceFlag
-
TResourceId
- Object .NET, Island-WebAssembly-wasm32, Toffee-macOS
- ^void Island-Windows
- TShiftState = set of TShiftStateValues .NET, Island-WebAssembly-wasm32, Island-Windows, Toffee-macOS
- TStringsOptions = set of TStringsOption
- TTime = TDateTime
- TValueRelationship
- TWidth = Int32 .NET, Island-Windows, Toffee-macOS
- TWinControl = TNativeControl Island-Windows
- WideString = DelphiString
Extensions
- RemObjects.Elements.RTL.Guid
- System.Object
- java.lang.Object
- RemObjects.Elements.System.Object
- Foundation.NSObject
- RemObjects.Elements.System.String
See Also
Version Notes
The Delphi RTL is new as preview in Elements 9.0