lcl: comments

git-svn-id: trunk@37449 -
This commit is contained in:
mattias 2012-05-29 06:27:51 +00:00
parent f1c82d9a6d
commit e4298bec55
2 changed files with 12 additions and 15 deletions

View File

@ -1618,10 +1618,10 @@ type
property AnchorSideBottom: TAnchorSide index akBottom read GetAnchorSide write SetAnchorSide;
property Cursor: TCursor read GetCursor write SetCursor default crDefault;
property Left: Integer read FLeft write SetLeft; // no default value - controls usually placed to different positions
property Height: Integer read FHeight write SetHeight; // no default value - controls usually have differnt sizes
property Height: Integer read FHeight write SetHeight; // no default value - controls usually have different sizes
property Hint: TTranslateString read FHint write SetHint stored IsHintStored;
property Top: Integer read FTop write SetTop; // no default value - controls usually placed to different positions
property Width: Integer read FWidth write SetWidth; // no default value - controls usually have differnt sizes
property Width: Integer read FWidth write SetWidth; // no default value - controls usually have different sizes
property HelpType: THelpType read FHelpType write FHelpType default htContext;
property HelpKeyword: String read FHelpKeyword write SetHelpKeyword stored IsHelpKeyWordStored;
property HelpContext: THelpContext read FHelpContext write SetHelpContext stored IsHelpContextStored default 0;

View File

@ -1245,17 +1245,6 @@ type
{ TRasterImage }
{ TCustomBitmap 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 imagess from Delphi form streams (e.g. .dfm files).
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 in IntfGraphics.pas }
{ TRasterImage }
TRasterImage = class(TGraphic)
private
FCanvas: TCanvas;
@ -1386,8 +1375,16 @@ type
property Width: Integer read GetWidth;
end;
{ TCustomBitmap }
{ TCustomBitmap
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 imagess from Delphi form streams (e.g. .dfm files).
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 in IntfGraphics.pas }
TCustomBitmap = class(TRasterImage)
private
FPixelFormat: TPixelFormat;