]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/richedit/wxllist.h
gravity for splitter window (patch 1046105)
[wxWidgets.git] / samples / richedit / wxllist.h
index 5263acd334f6cf8b7a18939631389151bec028a1..9806179483b76e5c32ff925337a3901be2b579cd 100644 (file)
@@ -1,5 +1,5 @@
 /*-*- c++ -*-********************************************************
 /*-*- c++ -*-********************************************************
- * wxLayoutList.h - a formatted text rendering engine for wxWindows *
+ * wxLayoutList.h - a formatted text rendering engine for wxWidgets *
  *                                                                  *
  * (C) 1999-2000 by Karsten Ballüder (ballueder@gmx.net)            *
  *                                                                  *
  *                                                                  *
  * (C) 1999-2000 by Karsten Ballüder (ballueder@gmx.net)            *
  *                                                                  *
@@ -32,7 +32,7 @@
 #   include "MObject.h"
 #endif
 
 #   include "MObject.h"
 #endif
 
-// use the wxWindows caret class instead of home grown cursor whenever possible
+// use the wxWidgets caret class instead of home grown cursor whenever possible
 #ifdef __WXMSW__
 #   undef WXLAYOUT_USE_CARET
 #   define WXLAYOUT_USE_CARET 1
 #ifdef __WXMSW__
 #   undef WXLAYOUT_USE_CARET
 #   define WXLAYOUT_USE_CARET 1
@@ -260,9 +260,6 @@ protected:
 /// Define a list type of wxLayoutObject pointers.
 KBLIST_DEFINE(wxLayoutObjectList, wxLayoutObject);
 
 /// Define a list type of wxLayoutObject pointers.
 KBLIST_DEFINE(wxLayoutObjectList, wxLayoutObject);
 
-/// An illegal iterator to save typing.
-#define NULLIT (wxLayoutObjectList::iterator(NULL))
-
 /// The iterator type.
 typedef wxLayoutObjectList::iterator wxLOiterator;
 
 /// The iterator type.
 typedef wxLayoutObjectList::iterator wxLOiterator;
 
@@ -595,7 +592,7 @@ public:
         @param xpos the column number
         @param offset where to store the difference between xpos and
         the object's head
         @param xpos the column number
         @param offset where to store the difference between xpos and
         the object's head
-        @return iterator to the object or NULLIT
+        @return iterator to the object or iterator to NULL
     */
     wxLayoutObjectList::iterator FindObject(CoordType xpos, CoordType
         *offset) const ;
     */
     wxLayoutObjectList::iterator FindObject(CoordType xpos, CoordType
         *offset) const ;
@@ -607,7 +604,7 @@ public:
         @param xpos the screen x coordinate
         @param offset where to store the difference between xpos and
         the object's head
         @param xpos the screen x coordinate
         @param offset where to store the difference between xpos and
         the object's head
-        @return iterator to the object or NULLIT
+        @return iterator to the object or iterator to NULL
     */
     wxLayoutObjectList::iterator FindObjectScreen(wxDC &dc,
         wxLayoutList *llist,
     */
     wxLayoutObjectList::iterator FindObjectScreen(wxDC &dc,
         wxLayoutList *llist,
@@ -650,7 +647,7 @@ public:
     inline CoordType GetLineNumber() const { return m_LineNumber; }
 
     /** Return the length of the line.
     inline CoordType GetLineNumber() const { return m_LineNumber; }
 
     /** Return the length of the line.
-        @return line lenght in cursor positions
+        @return line length in cursor positions
     */
     inline CoordType GetLength() const { return m_Length; }
     //@}
     */
     inline CoordType GetLength() const { return m_Length; }
     //@}
@@ -771,7 +768,7 @@ public:
 
 private:
     /// Destructor is private. Use DeleteLine() to remove it.
 
 private:
     /// Destructor is private. Use DeleteLine() to remove it.
-    ~wxLayoutLine();
+    ~wxLayoutLine(){};
 
     /**@name Functions to let the lines synchronise with each other. */
     //@{
 
     /**@name Functions to let the lines synchronise with each other. */
     //@{
@@ -1393,12 +1390,12 @@ public:
 
 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 
 
 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 
-   The wxLayoutPrintout object for printing within the wxWindows print
+   The wxLayoutPrintout object for printing within the wxWidgets print
    framework.
 
  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
 /** This class implements a wxPrintout for printing a wxLayoutList within
    framework.
 
  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
 /** This class implements a wxPrintout for printing a wxLayoutList within
-    the wxWindows printing framework.
+    the wxWidgets printing framework.
  */
 class wxLayoutPrintout: public wxPrintout
 {
  */
 class wxLayoutPrintout: public wxPrintout
 {
@@ -1412,7 +1409,7 @@ public:
         _T("wxLayout Printout"));
 
     /// Destructor.
         _T("wxLayout Printout"));
 
     /// Destructor.
-    ~wxLayoutPrintout();
+    ~wxLayoutPrintout(){};
 
     /** Function which prints the n-th page.
         @param page the page number to print
 
     /** Function which prints the n-th page.
         @param page the page number to print
@@ -1425,7 +1422,7 @@ public:
     */
     bool HasPage(int page);
 
     */
     bool HasPage(int page);
 
-    /** Gets called from wxWindows to find out which pages are existing.
+    /** Gets called from wxWidgets to find out which pages are existing.
         I'm not totally sure about the parameters though.
         @param minPage the first page in the document
         @param maxPage the last page in the document
         I'm not totally sure about the parameters though.
         @param minPage the first page in the document
         @param maxPage the last page in the document