diff --git a/docs/xml/lcl/graphics.xml b/docs/xml/lcl/graphics.xml index 20fde21d51..4ad68c4b67 100644 --- a/docs/xml/lcl/graphics.xml +++ b/docs/xml/lcl/graphics.xml @@ -292,9 +292,9 @@ Font -

New TFont instances are initialized with the values in this structure.

-

About font default values: The default font is chosen by the interfaces depending on the context.

-

For example, there can be a different default font for a button and a groupbox.

+ New TFont instances are initialized with the values in this structure.
+ About font default values: The default font is chosen by the interfaces depending on the context.
+ For example, there can be a different default font for a button and a groupbox.
@@ -324,16 +324,16 @@ The Style of the Text to be drawn in a rectangle

* Alignment : TextRect Only: horizontal alignment
- + * Layout : TextRect Only: vertical alignment
+ * SingleLine: boolean; If WordBreak is false then process #13, #10 as standard chars and perform no Line breaking.
+ * Clipping : boolean; TextRect Only: Clip Text to passed Rectangle
+ * ExpandTabs: boolean; currently ignored
+ * ShowPrefix: boolean; TextRect Only: Process first single ampersand per line as an underscore and draw double ampersand as a single ampersand
+ * Wordbreak : boolean; TextRect Only: If line of text is too long to fit between left and right boundaries, try to break into multiple lines between words
+ * Opaque : boolean; TextRect: Fills background with current Brush
+ * Opaque : TextOut : Fills background with current foreground color
+ * SystemFont: Boolean; Use the system font instead of Canvas Font
+ * RightToLeft: Boolean; For RightToLeft text reading (Text Direction)

@@ -3609,30 +3609,30 @@ If the file is not of the right format, an exception will be generated. Icon, you can LoadFromFile a bitmap file, whereas if the class is TIcon you could only read .ICO files.
- + TJPegImage) is returned.
+
@@ -6049,14 +6049,14 @@ Calling the MoveTo
Note: The exact text position depends on the specified rectangle, the TextStyle of the canvas, and the X, Y coordinates: - +
+ * TextStyle.Alignment = taLeftJustify: Text begins at X
+ * TextStyle.Alignment = taCenter: Text center is in the center of the rectangle (horizontally)
+ * TextStyle.Alignment = taRightJustify: Text ends at right edge of the rectangle
+ * TextStyle.Layout = tlTop: Top of the text is at Y
+ * TextStyle.Layout = tlCenter: Text center is in the center of the rectangle (vertically)
+ * TextStyle.Layout = tlBottom: Text sits above the the bottom edge of the rectangle
+
@@ -6358,7 +6358,7 @@ Calling the MoveTo The place where the actual image of a bitmap is stored -

Descendant of TSharedImage for TBitmap.

+ Descendant of TSharedImage for TBitmap.
If a TBitmap is assigned to another TBitmap, only the reference count will be increased and both will share the same TBitmapImage
@@ -6515,12 +6515,12 @@ Calling the MoveTo TBitmap is the data of an image, and can be loaded from a file, stream or resource in .bmp or .xpm format -

- TBitmap is the data of an image. The image can be loaded from a file, stream or resource in .bmp (windows bitmap format) or .xpm (XPixMap format)

-

The loading routine automatically recognizes the format, so it is also used to load the images from Delphi form streams (e.g. .dfm files) or FreePascal/Lazarus form streams (.lfm)

-

When the handle is created, it is up to the interface (gtk, win32, ...) to convert it automatically to the best internal format. That is why the Handle is interface dependent.

-

To access the raw data, see TLazIntfImage -

+ + TBitmap is the data of an image. The image can be loaded from a file, stream or resource in .bmp (windows bitmap format) or .xpm (XPixMap format)
+ The loading routine automatically recognizes the format, so it is also used to load the images from Delphi form streams (e.g. .dfm files) or FreePascal/Lazarus form streams (.lfm)
+ When the handle is created, it is up to the interface (gtk, win32, ...) to convert it automatically to the best internal format. That is why the Handle is interface dependent.
+ To access the raw data, see TLazIntfImage +
@@ -7454,9 +7454,9 @@ Checks for the presence of a valid Lazarus Resource, then uses The canvas on which this bitmap is drawn -

The Canvas is where all the drawing and painting is performed.

-

The properties are described in TCanvas -

+ The Canvas is where all the drawing and painting is performed.
+ The properties are described in TCanvas +
@@ -7754,9 +7754,9 @@ Checks for the presence of a valid Lazarus Resource, then uses TIcon - icons, small images typically associated with applications, controls, etc. -

Icons can be loaded from .ICO files, or from Lazarus resources.

-

An icon resource typically contains several versions of the same image, in multiple resolutions and color depths.

-

When loading, the largest/most colourful image is loaded as the Bitmap property, and so can be handled as any other bitmap.

+ Icons can be loaded from .ICO files, or from Lazarus resources.
+ An icon resource typically contains several versions of the same image, in multiple resolutions and color depths.
+ When loading, the largest/most colourful image is loaded as the Bitmap property, and so can be handled as any other bitmap.
Writing to icon files is not (yet) implemented.
@@ -8639,9 +8639,9 @@ Checks for the presence of a valid Lazarus Resource, then uses Jpeg - returns a JPEG image -

- Jpeg - returns a JPEG image

-

If the contents is not already a JPEG image, the contents are thrown away and a blank JPEG is returned

+ + Jpeg - returns a JPEG image
+ If the contents is not already a JPEG image, the contents are thrown away and a blank JPEG is returned
@@ -8652,22 +8652,22 @@ Checks for the presence of a valid Lazarus Resource, then uses PortableAnyMapGraphic image -

+ PNM - a - PortableAnyMapGraphic image

-

Reads a PNM image. If it is not a valid PNM image, the contents are thrown away and a blank PNM is generated

+ PortableAnyMapGraphic image
+ Reads a PNM image. If it is not a valid PNM image, the contents are thrown away and a blank PNM is generated
TJPEGImage - a class for handling images stored in JPEG (compressed) format -

- JPEG images are very commonly used for storing digital photographs. They can represent detailed colour photos using a high degree of compression, resulting in very efficient storage, though with some loss of quality.

-

The properties CompressionQuality (an integer between 1 and 100, with 100 representing the best quality) and Performance (an enumerated variable with two states: BestQuality or BestSpeed ie compression) can be used to determine the balance between efficiency of storage and quality of picture.

+ + JPEG images are very commonly used for storing digital photographs. They can represent detailed colour photos using a high degree of compression, resulting in very efficient storage, though with some loss of quality.
+ The properties CompressionQuality (an integer between 1 and 100, with 100 representing the best quality) and Performance (an enumerated variable with two states: BestQuality or BestSpeed ie compression) can be used to determine the balance between efficiency of storage and quality of picture.
@@ -8682,9 +8682,9 @@ Checks for the presence of a valid Lazarus Resource, then uses Determine the compression quality for this image -

Extreme compression can lead to loss of quality at the expense of a small file size

-

Allowed range is 1..100

-

100 = best quality, 25 = pretty awful

+ Extreme compression can lead to loss of quality at the expense of a small file size
+ Allowed range is 1..100
+ 100 = best quality, 25 = pretty awful
@@ -8749,19 +8749,11 @@ Checks for the presence of a valid Lazarus Resource, then uses Monitoring the progress of drawing a complicated Graphic - -

+

TProgressEvent is a generic progress notification event which may be used by - - - - - - - TGraphic classes with computationally intensive (slow) operations, such as loading, storing, or transforming image data.

- - + TGraphic classes with computationally intensive (slow) operations, such as loading, storing, or transforming image data.
+

Event params: -
+
Event params:
Stage Indicates whether this call to the OnProgress event is to prepare for, process, or clean up after a graphic operation. If OnProgress is called at all, the first call for a graphic operation will be with Stage = psStarting, to allow the OnProgress event handler to allocate whatever resources it needs to process subsequent progress notifications. After Stage = psStarting, you are guaranteed that OnProgress will be called again with @@ -11080,13 +11072,13 @@ Checks for the presence of a valid Lazarus Resource, then uses Source of the call. -

+ Assign: find out about the - Source of the call.

-

If the BitMap data are already in use, the data are shared; if not, a new BitMap is produced -

+ Source of the call.
+ If the BitMap data are already in use, the data are shared; if not, a new BitMap is produced +
@@ -11397,9 +11389,9 @@ Checks for the presence of a valid Lazarus Resource, then uses The Canvas on which this bitmap is drawn -

The Canvas is where all the drawing and painting is performed.

-

The properties are described in TCanvas -

+ The Canvas is where all the drawing and painting is performed.
+ The properties are described in TCanvas +
@@ -11726,11 +11718,11 @@ Checks for the presence of a valid Lazarus Resource, then uses IdentEntry - checks that a given Entry exists in a Map of colour names -

+ IdentEntry - checks that a given Entry exists in a Map of colour names -

-

A list of system Colors is specified as a look-up table of indices (Entry) and names (MapEntry)

-

This function checks that the value in +
+ A list of system Colors is specified as a look-up table of indices (Entry) and names (MapEntry)
+ This function checks that the value in Entry is within the permitted range, and returns the data pair @@ -11739,8 +11731,8 @@ Checks for the presence of a valid Lazarus Resource, then uses Name of the corresponding colour in MapEntry. -

-

If Entry is out of range the Result is False

+
+ If Entry is out of range the Result is False
If Entry is out of the range [0..High(Colours)] the Result is returned as False