]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/screenshotgen/src/autocapture.h
Include <fcntl.h> from a header using fcntl().
[wxWidgets.git] / utils / screenshotgen / src / autocapture.h
index 32dab8836f7803cf8af30fed3aca4d6e4e7edaeb..a139ca867b330d2d327c8a1df61b7998d5a18ead 100644 (file)
@@ -133,7 +133,7 @@ enum AdjustFlags
     @class AutoCaptureMechanism
 
     AutoCaptureMechanism provides an easy-to-use and adjustable facility to
     @class AutoCaptureMechanism
 
     AutoCaptureMechanism provides an easy-to-use and adjustable facility to
-    take the screenshots for all controls fully automaticly and correctly. It
+    take the screenshots for all controls fully automatically and correctly. It
     also provides an advanced feature to union screenshots of different
     states/modes of a control.
 
     also provides an advanced feature to union screenshots of different
     states/modes of a control.
 
@@ -146,24 +146,22 @@ enum AdjustFlags
     By default, screenshots are generated under the subdirectory "screenshots"
     of current working directory. During updating or adding new screenshots,
     first make sure screenshots are generated correctly, and then copy them to
     By default, screenshots are generated under the subdirectory "screenshots"
     of current working directory. During updating or adding new screenshots,
     first make sure screenshots are generated correctly, and then copy them to
-    the following subdirectory of docs/doxygen/images:
-
-    "wxmsw" for MS Windows, "wxgtk" for Linux and "wxmac" for Mac OS.
+    the "docs/doxygen/images" folder directly.
 
     @section tag_gui_assumption The Assumption of GUI
 
     Unfortunately, this class have an assumption about the structure of GUI: It
 
     @section tag_gui_assumption The Assumption of GUI
 
     Unfortunately, this class have an assumption about the structure of GUI: It
-    must have the follwoing top-down structure:
+    must have the following top-down structure:
 
     wxNotebook->wxPanel->wxSizer->wxControl
 
     That means, in the wxNotebook associated with this class, controls that
     needs to be taken screenshots are placed on different panels(for grouping)
 
     wxNotebook->wxPanel->wxSizer->wxControl
 
     That means, in the wxNotebook associated with this class, controls that
     needs to be taken screenshots are placed on different panels(for grouping)
-    and layed out by wxSizers.
+    and laid out by wxSizers.
 
     @section tag_tutorial Tutorial
 
 
     @section tag_tutorial Tutorial
 
-    In the contruction, you should associate a wxNotebook with this class, in
+    In the construction, you should associate a wxNotebook with this class, in
     that wxNotebook, controls that needs to be captured are placed on different
     panels(for grouping).
 
     that wxNotebook, controls that needs to be captured are placed on different
     panels(for grouping).
 
@@ -174,7 +172,7 @@ enum AdjustFlags
     on the second panel, then a page turn, and so on.
 
     When you are done, simply call CaptureAll(), then screenshots of all
     on the second panel, then a page turn, and so on.
 
     When you are done, simply call CaptureAll(), then screenshots of all
-    controls will be automaticly generated.
+    controls will be automatically generated.
 
     @section tag_autoadjust Make Use of Auto Adjustments
 
 
     @section tag_autoadjust Make Use of Auto Adjustments