Difference between revisions of "RTTI controls"

From Free Pascal wiki
Jump to navigationJump to search
 
Line 5: Line 5:
 
RTTI controls extend many LCL controls by the ability to directly connect to published properties of classes.
 
RTTI controls extend many LCL controls by the ability to directly connect to published properties of classes.
 
They greatly reduce writing boring code, by automatically loading/saving data between LCL controls and published properties. In fact, you can create fully functional forms without writing any code at all.
 
They greatly reduce writing boring code, by automatically loading/saving data between LCL controls and published properties. In fact, you can create fully functional forms without writing any code at all.
 +
 +
In combination with [[Streaming components]] you can reduce the amount of code needed for connecting the program Data with the GUI and the Disk/Network to a minimum.

Revision as of 18:00, 23 February 2006

Introduction

This page describes the package RunTimeTypeInfoControls in <lazarusdir>/components/rtticontrols/.

RTTI controls extend many LCL controls by the ability to directly connect to published properties of classes. They greatly reduce writing boring code, by automatically loading/saving data between LCL controls and published properties. In fact, you can create fully functional forms without writing any code at all.

In combination with Streaming components you can reduce the amount of code needed for connecting the program Data with the GUI and the Disk/Network to a minimum.