mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 20:05:03 -05:00
Merge branch 'master' of github.com:MerlijnWajer/Simba
This commit is contained in:
commit
8e198325bf
@ -207,6 +207,7 @@ FastDrawClear
|
||||
|
||||
procedure FastDrawClear(bmp : integer; Color : TColor);
|
||||
|
||||
Draw *Color* on every pixel on the bitmap.
|
||||
|
||||
FastDrawTransparent
|
||||
-------------------
|
||||
@ -247,6 +248,7 @@ CopyClientToBitmap
|
||||
|
||||
procedure CopyClientToBitmap(bmp, xs, ys, xe, ye: Integer);
|
||||
|
||||
Copy client area *xs, ys, xe, ye* to specified bitmap.
|
||||
|
||||
BitmapFromClient
|
||||
----------------
|
||||
@ -255,6 +257,7 @@ BitmapFromClient
|
||||
|
||||
function BitmapFromClient(const xs, ys, xe, ye: Integer): Integer;
|
||||
|
||||
Create a bitmap from the client. Area specified by *xs, ye, xe, ye*.
|
||||
|
||||
SetBitmapName
|
||||
-------------
|
||||
@ -263,6 +266,8 @@ SetBitmapName
|
||||
|
||||
procedure SetBitmapName(Bmp : integer; name : string);
|
||||
|
||||
Assign a name to the bitmap. Mainly for debugging purposes. (It will write the
|
||||
name of the bitmap if it hasn't been freed.)
|
||||
|
||||
FindBitmap
|
||||
----------
|
||||
@ -439,6 +444,8 @@ DrawBitmap
|
||||
|
||||
procedure DrawBitmap(Bmp: Integer; Dest: TCanvas; x, y: Integer);
|
||||
|
||||
Draw the bitmap to a TCanvas.
|
||||
|
||||
|
||||
RectangleBitmap
|
||||
---------------
|
||||
|
@ -295,6 +295,7 @@ PrintDTM
|
||||
|
||||
procedure PrintDTM(const DTM : TMDTM);
|
||||
|
||||
Print the DTM contents.
|
||||
|
||||
MDTMToSDTM
|
||||
----------
|
||||
|
@ -1,6 +1,11 @@
|
||||
Working with Files
|
||||
==================
|
||||
|
||||
Files in Simba are all *integers*, internal handles for Simba which on their
|
||||
turn point to operating system files. Functions like CreateFile and OpenFile
|
||||
return a file handle. You should not forget to close these when you no longer
|
||||
need them.
|
||||
|
||||
CreateFile
|
||||
----------
|
||||
|
||||
@ -8,6 +13,8 @@ CreateFile
|
||||
|
||||
function CreateFile(const Path: string): Integer;
|
||||
|
||||
Create a file with *Path*. Raturns -1 on failure, otherwise returns the handle
|
||||
to the file.
|
||||
|
||||
OpenFile
|
||||
--------
|
||||
@ -16,6 +23,9 @@ OpenFile
|
||||
|
||||
function OpenFile(const Path: string; Shared: Boolean): Integer;
|
||||
|
||||
Opens file for reading. Opens shared if *Shared* is true.
|
||||
Returns -1 on failure, otherwise returns the handle to the file.
|
||||
|
||||
|
||||
RewriteFile
|
||||
-----------
|
||||
|
Loading…
Reference in New Issue
Block a user