summaryrefslogtreecommitdiff
path: root/vcl/README.GDIMetaFile
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-10-01 13:20:07 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2015-10-01 11:24:24 +0000
commit33d165a9f18c4bfcf5b878adf7057195cda4194f (patch)
tree2659ab993124affff6cc57eba3ac47e126c533d4 /vcl/README.GDIMetaFile
parent28803c28bda0c4bc3d94acf023d8eb96990c8f14 (diff)
Fix typos
Change-Id: I8fd769ca61d1ec1a915a012c0c2244056dc5bcb8 Reviewed-on: https://gerrit.libreoffice.org/18992 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'vcl/README.GDIMetaFile')
-rw-r--r--vcl/README.GDIMetaFile10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/README.GDIMetaFile b/vcl/README.GDIMetaFile
index d95a74a6ec87..5d0358db29cc 100644
--- a/vcl/README.GDIMetaFile
+++ b/vcl/README.GDIMetaFile
@@ -1,21 +1,21 @@
GDIMetaFile class
=================
-The GDIMetaFile class reads, writes, manipulates and replays metafiles via the VCL module.
+The GDIMetaFile class reads, writes, manipulates and replays metafiles via the VCL module.
-A typical usecase is to intialize a new GDIMetaFile, open the actual stored metafile and
+A typical use case is to intialize a new GDIMetaFile, open the actual stored metafile and
read it in via GDIMetaFile::Read( aIStream ). This reads in the metafile into the GDIMetafile
object - it can read in an old-style VCLMTF metafile (back in the days that Microsoft didn't
document the metafile format this was used), as well as EMF+ files - and adds them to a list
(vector) of MetaActions. You can also populate your own GDIMetaFile via AddAction(),
-RemoveAction(), ReplaceAction(), etc.
+RemoveAction(), ReplaceAction(), etc.
Once the GDIMetafile object is read to be used, you can "play" the metafile, pause it, wind
forward or rewind the metafile. The metafile can be moved, scaled, rotated and clipped, as
-well have the colours adjusted or replaced, or even made monochrome.
+well have the colours adjusted or replaced, or even made monochrome.
The GDIMetafile can be used to get an OutputDevice's metafile via the Linker() and Record()
-functions.
+functions.
Using GDIMetafile