]> git.saurik.com Git - wxWidgets.git/commitdiff
Cursor and insert/delete work much better now, code streamlined, still
authorKarsten Ballüder <ballueder@usa.net>
Wed, 12 Aug 1998 08:33:34 +0000 (08:33 +0000)
committerKarsten Ballüder <ballueder@usa.net>
Wed, 12 Aug 1998 08:33:34 +0000 (08:33 +0000)
a minor problem left.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

user/wxLayout/kbList.cpp
user/wxLayout/kbList.h
user/wxLayout/wxLayout.cpp
user/wxLayout/wxllist.cpp
user/wxLayout/wxllist.h
user/wxLayout/wxlwindow.cpp
user/wxLayout/wxlwindow.h

index 7ff7409845c5d8437edd2f9bc4663f74e8f6efd5..f5953ea8f5bf4a39b841535d3843c537a1e3e718 100644 (file)
@@ -6,10 +6,16 @@
  * $Id$          *
  *                                                                  *
  * $Log$
  * $Id$          *
  *                                                                  *
  * $Log$
- * Revision 1.1  1998/06/29 12:44:36  KB
- * Added my wxWindows based layout engine to the repository.
- * It arranges text and graphics for display on a wxDC.
- * This code is licensed under the LGPL.
+ * Revision 1.2  1998/08/12 08:33:23  KB
+ * Cursor and insert/delete work much better now, code streamlined, still
+ * a minor problem left.
+ *
+ * Revision 1.6  1998/07/08 11:56:56  KB
+ * M compiles and runs on Solaris 2.5/gcc 2.8/c-client gso
+ *
+ * Revision 1.5  1998/06/27 20:07:18  KB
+ * several bug fixes for kbList
+ * started adding my layout stuff
  *
  * Revision 1.1.1.1  1998/06/13 21:51:12  karsten
  * initial code
  *
  * Revision 1.1.1.1  1998/06/13 21:51:12  karsten
  * initial code
 #   pragma implementation "kbList.h"
 #endif
 
 #   pragma implementation "kbList.h"
 #endif
 
-#include   "kbList.h"
+#ifdef   M_BASEDIR
+#   include   "Mconfig.h"
+#endif
 
 
+#include   "kbList.h"
 
 kbListNode::kbListNode( void *ielement,
                         kbListNode *iprev,
 
 kbListNode::kbListNode( void *ielement,
                         kbListNode *iprev,
@@ -178,11 +187,7 @@ kbList::insert(kbList::iterator & i, void *element)
    else if(i.Node() == first)
    {
       push_front(element);
    else if(i.Node() == first)
    {
       push_front(element);
-      return;
-   }
-   else if(i.Node() == last)
-   {
-      push_back(element);
+      i = first;
       return;
    }
    i = kbList::iterator(new kbListNode(element, i.Node()->prev, i.Node()));
       return;
    }
    i = kbList::iterator(new kbListNode(element, i.Node()->prev, i.Node()));
index 277157861f2aa1181da60fe5e60e0b7daf4032cb..818b2fe728b8b1073e9f717b1f370a1fe473231c 100644 (file)
@@ -4,14 +4,6 @@
  * (C) 1998 by Karsten Ballüder (Ballueder@usa.net)                 *
  *                                                                  *
  * $Id$
  * (C) 1998 by Karsten Ballüder (Ballueder@usa.net)                 *
  *                                                                  *
  * $Id$
- * $Log$
- * Revision 1.1  1998/06/29 12:44:36  KB
- * Added my wxWindows based layout engine to the repository.
- * It arranges text and graphics for display on a wxDC.
- * This code is licensed under the LGPL.
- *
- * Revision 1.6  1998/06/27 20:06:10  KB
- * Added my layout code.
  *
  *******************************************************************/
 
  *
  *******************************************************************/
 
@@ -209,7 +201,7 @@ public:
    bool empty(void) const
       { return first == NULL ; }
 
    bool empty(void) const
       { return first == NULL ; }
 
-private:
+protected:
    /// if true, list owns entries
    bool        ownsEntries;
    /// pointer to first element in list
    /// if true, list owns entries
    bool        ownsEntries;
    /// pointer to first element in list
@@ -217,6 +209,7 @@ private:
    /// pointer to last element in list
    kbListNode *last;
 
    /// pointer to last element in list
    kbListNode *last;
 
+private:
    /// forbid copy construction
    kbList(kbList const &foo);
    /// forbid assignments
    /// forbid copy construction
    kbList(kbList const &foo);
    /// forbid assignments
@@ -251,7 +244,7 @@ public: \
          /* the cast is needed for MS VC++ 5.0 */ \
          { return (type *)((kbList::iterator *)this)->operator*() ; } \
    }; \
          /* the cast is needed for MS VC++ 5.0 */ \
          { return (type *)((kbList::iterator *)this)->operator*() ; } \
    }; \
-   inline name(bool ownsEntriesFlag = true) \
+   inline name(bool ownsEntriesFlag = FALSE) \
       : kbList(ownsEntriesFlag) {} \
    \
    inline void push_back(type *element) \
       : kbList(ownsEntriesFlag) {} \
    \
    inline void push_back(type *element) \
@@ -269,7 +262,7 @@ public: \
    inline void insert(iterator & i, type *element) \
       { kbList::insert(i, (void *) element); } \
    \
    inline void insert(iterator & i, type *element) \
       { kbList::insert(i, (void *) element); } \
    \
-   void erase(iterator & i) \
+   inline void erase(iterator & i) \
       { kbList::erase(i); } \
    \
    inline iterator begin(void) const \
       { kbList::erase(i); } \
    \
    inline iterator begin(void) const \
@@ -280,7 +273,22 @@ public: \
    \
    inline iterator tail(void) const \
       { return kbList::tail(); } \
    \
    inline iterator tail(void) const \
       { return kbList::tail(); } \
-}
+   ~name() \
+   { \
+      kbListNode *next; \
+      while ( first != NULL ) \
+      { \
+         next = first->next; \
+         if(ownsEntries) \
+            delete typecast(first->element); \
+         delete first; \
+         first = next; \
+      } \
+   } \
+   private: \
+   inline type * typecast(void *ptr) \
+      { return (type *) ptr; } \
+   }
 
 #ifdef   MCONFIG_H
 /// define the most commonly used list type once:
 
 #ifdef   MCONFIG_H
 /// define the most commonly used list type once:
index 159ab5654e245176ab63a9b4cdd64db9382196b7..e33c065b3e9178b44900798e457b484d47031ad0 100644 (file)
@@ -31,7 +31,7 @@ IMPLEMENT_APP(MyApp)
 //-----------------------------------------------------------------------------
 
    enum ids{ ID_EDIT = 1, ID_ADD_SAMPLE, ID_CLEAR, ID_PRINT, ID_DPRINT,
 //-----------------------------------------------------------------------------
 
    enum ids{ ID_EDIT = 1, ID_ADD_SAMPLE, ID_CLEAR, ID_PRINT, ID_DPRINT,
-             ID_WXLAYOUT_DEBUG, ID_QUIT, ID_CLICK, ID_HTML, ID_TEXT };
+             ID_WXLAYOUT_DEBUG, ID_QUIT, ID_CLICK, ID_HTML, ID_TEXT, ID_TEST };
 
 
 IMPLEMENT_DYNAMIC_CLASS( MyFrame, wxFrame )
 
 
 IMPLEMENT_DYNAMIC_CLASS( MyFrame, wxFrame )
@@ -58,6 +58,7 @@ IMPLEMENT_DYNAMIC_CLASS( MyFrame, wxFrame )
    file_menu->Append( ID_DPRINT, "Direct Print");
    file_menu->Append( ID_TEXT, "Export Text");
    file_menu->Append( ID_HTML, "Export HTML");
    file_menu->Append( ID_DPRINT, "Direct Print");
    file_menu->Append( ID_TEXT, "Export Text");
    file_menu->Append( ID_HTML, "Export HTML");
+   file_menu->Append( ID_TEST, "Test");
    file_menu->Append( ID_QUIT, "Exit");
   
    wxMenuBar *menu_bar = new wxMenuBar();
    file_menu->Append( ID_QUIT, "Exit");
   
    wxMenuBar *menu_bar = new wxMenuBar();
@@ -217,6 +218,15 @@ void MyFrame::OnCommand( wxCommandEvent &event )
    case ID_CLICK:
       cerr << "Received click event." << endl;
       break;
    case ID_CLICK:
       cerr << "Received click event." << endl;
       break;
+   case ID_TEST:
+   {
+      Clear();
+      m_lwin->GetLayoutList().LineBreak();
+      m_lwin->GetLayoutList().Insert("abc");
+      m_lwin->GetLayoutList().LineBreak();
+      m_lwin->GetLayoutList().Insert("def");
+      break;
+   }
    case ID_HTML:
    {
       wxLayoutExportObject *export;
    case ID_HTML:
    {
       wxLayoutExportObject *export;
index 7227929365b4fb0ce9f101423d0adf1e9853926e..f563ce256537d7d260bb3bbe34a7eb447f010891 100644 (file)
 #pragma implementation "wxllist.h"
 #endif
 
 #pragma implementation "wxllist.h"
 #endif
 
+// these two lines are for use in M:
+//#include "Mpch.h"
+//#include "gui/wxllist.h"
+
 #include   "wxllist.h"
 #include   "wxllist.h"
-#include   "iostream.h"
 
 
-#include   <wx/dc.h>
-#include   <wx/postscrp.h>
-#include   <wx/print.h>
+#ifndef USE_PCH
+#  include   "iostream.h"
+
+#  include   <wx/dc.h>
+#  include   <wx/postscrp.h>
+#  include   <wx/print.h>
+#endif
 
 #define   BASELINESTRETCH   12
 
 
 #define   BASELINESTRETCH   12
 
@@ -43,13 +50,13 @@ wxLayoutObjectBase::Debug(void)
         << GetSize(&bl).y << " bl=" << bl; 
 }
 
         << GetSize(&bl).y << " bl=" << bl; 
 }
 
-#  define   VAR(x)   cerr << #x"=" << x << endl;
-#  define   DBG_POINT(p)   cerr << #p << ": " << p.x << ',' << p.y << endl
-#  define   TRACE(f)   cerr << #f":" << endl;
+#  define   WXL_VAR(x)   cerr << #x"=" << x << endl;
+#  define   WXL_DBG_POINT(p)   cerr << #p << ": " << p.x << ',' << p.y << endl
+#  define   WXL_TRACE(f)   cerr << #f":" << endl;
 #else 
 #else 
-#  define   VAR(x)   
-#  define   DBG_POINT(p)   
-#  define   TRACE(f)   
+#  define   WXL_VAR(x)   
+#  define   WXL_DBG_POINT(p)   
+#  define   WXL_TRACE(f)   
 #endif
 
 //-------------------------- wxLayoutObjectText
 #endif
 
 //-------------------------- wxLayoutObjectText
@@ -99,8 +106,8 @@ wxLayoutObjectText::Debug(void)
 //-------------------------- wxLayoutObjectIcon
 
 wxLayoutObjectIcon::wxLayoutObjectIcon(wxIcon *icon)
 //-------------------------- wxLayoutObjectIcon
 
 wxLayoutObjectIcon::wxLayoutObjectIcon(wxIcon *icon)
+                  : m_Icon(icon)
 {
 {
-   m_Icon = icon;
 }
 
 void
 }
 
 void
@@ -205,7 +212,7 @@ wxLayoutList::SetFont(int family, int size, int style, int weight,
    if(size != -1)      m_FontPtSize = size;
    if(style != -1)     m_FontStyle = style;
    if(weight != -1)    m_FontWeight = weight;
    if(size != -1)      m_FontPtSize = size;
    if(style != -1)     m_FontStyle = style;
    if(weight != -1)    m_FontWeight = weight;
-   if(underline != -1) m_FontUnderline = underline;
+   if(underline != -1) m_FontUnderline = underline != 0;
 
    if(fg != NULL)     m_ColourFG = fg;
    if(bg != NULL)     m_ColourBG = bg;
 
    if(fg != NULL)     m_ColourFG = fg;
    if(bg != NULL)     m_ColourBG = bg;
@@ -265,6 +272,9 @@ wxLayoutList::Draw(wxDC &dc, bool findObject, wxPoint const &findCoords)
    CoordType baseLine = m_FontPtSize;
    CoordType baseLineSkip = (BASELINESTRETCH * baseLine)/10;
 
    CoordType baseLine = m_FontPtSize;
    CoordType baseLineSkip = (BASELINESTRETCH * baseLine)/10;
 
+   // where to draw the cursor
+   wxPoint cursorPosition, cursorSize;
+   
    // we trace the objects' cursor positions so we can draw the cursor
    wxPoint cursor = wxPoint(0,0);
    // the cursor position inside the object
    // we trace the objects' cursor positions so we can draw the cursor
    wxPoint cursor = wxPoint(0,0);
    // the cursor position inside the object
@@ -295,7 +305,7 @@ wxLayoutList::Draw(wxDC &dc, bool findObject, wxPoint const &findCoords)
 #endif
       dc.IsKindOf(CLASSINFO(wxPostScriptDC)))
    {
 #endif
       dc.IsKindOf(CLASSINFO(wxPostScriptDC)))
    {
-      VAR(wxThePrintSetupData);
+      WXL_VAR(wxThePrintSetupData);
       
       dc.GetSize(&pageWidth, &pageHeight);
       dc.StartDoc(_("Printing..."));
       
       dc.GetSize(&pageWidth, &pageHeight);
       dc.StartDoc(_("Printing..."));
@@ -314,7 +324,7 @@ wxLayoutList::Draw(wxDC &dc, bool findObject, wxPoint const &findCoords)
    position.y = margins.right;
    position.x = margins.left;
    
    position.y = margins.right;
    position.x = margins.left;
    
-   VAR(findObject); VAR(findCoords.x); VAR(findCoords.y);
+   WXL_VAR(findObject); WXL_VAR(findCoords.x); WXL_VAR(findCoords.y);
    // if the cursorobject is a cmd, we need to find the first
    // printable object:
    while(cursorObject != end()
    // if the cursorobject is a cmd, we need to find the first
    // printable object:
    while(cursorObject != end()
@@ -370,32 +380,32 @@ wxLayoutList::Draw(wxDC &dc, bool findObject, wxPoint const &findCoords)
             long descent = 0l; long width, height;
             tobj = (wxLayoutObjectText *)*i;
             String  str = tobj->GetText();
             long descent = 0l; long width, height;
             tobj = (wxLayoutObjectText *)*i;
             String  str = tobj->GetText();
-            VAR(m_CursorPosition.x); VAR(cursor.x);
+            WXL_VAR(m_CursorPosition.x); WXL_VAR(cursor.x);
             str = str.substr(0, cursorOffset);
             str = str.substr(0, cursorOffset);
-            VAR(str);
+            WXL_VAR(str);
             dc.GetTextExtent(Str(str), &width,&height, &descent);
             dc.GetTextExtent(Str(str), &width,&height, &descent);
-            VAR(height);
-            VAR(width); VAR(descent);
-            if(width < 1) width = 1;
-            dc.DrawLine(position.x+width,
-                        position.y+(baseLineSkip-height),
-                        position.x+width, position.y+baseLineSkip);
+            WXL_VAR(height);
+            WXL_VAR(width);
+            WXL_VAR(descent);
+            cursorPosition = wxPoint(position.x+width,
+                                      position.y+(baseLineSkip-height));
+            cursorSize = wxPoint(1, height);
+            //dc.DrawLine(position.x+width,
+            //            position.y+(baseLineSkip-height),
+            //            position.x+width, position.y+baseLineSkip);
          }
          else
          {
             if(type == WXLO_TYPE_LINEBREAK)
          }
          else
          {
             if(type == WXLO_TYPE_LINEBREAK)
-               dc.DrawLine(0, position.y+baseLineSkip, 0, position.y+2*baseLineSkip);
+               //dc.DrawLine(0, position.y+baseLineSkip, 0,               position.y+2*baseLineSkip);
+            {
+               cursorPosition = wxPoint(0, position.y);
+               cursorSize = wxPoint(1,baseLineSkip);
+            }
             else
             {
             else
             {
-               if(size.x == 0)
-               {
-                  if(size.y == 0)
-                     dc.DrawLine(position.x, position.y, position.x, position.y+baseLineSkip);
-                  else
-                     dc.DrawLine(position.x, position.y, position.x, position.y+size.y);
-               }
-               else
-                  dc.DrawRectangle(position.x, position.y, size.x, size.y);
+               cursorPosition = wxPoint(position.x, position.y);
+               cursorSize = wxPoint(size.x > 0 ? size.x : 1,size.y > 0 ? size.y : baseLineSkip);
             }
          }
       }
             }
          }
       }
@@ -462,6 +472,12 @@ wxLayoutList::Draw(wxDC &dc, bool findObject, wxPoint const &findCoords)
       i++;
    }
    dc.EndDoc();
       i++;
    }
    dc.EndDoc();
+   // draw the cursor
+   if(m_Editable)
+   {
+      dc.DrawRectangle(cursorPosition.x, cursorPosition.y,
+                       cursorSize.x, cursorSize.y);
+   }
    m_MaxY = position.y;
    return foundObject;
 }
    m_MaxY = position.y;
    return foundObject;
 }
@@ -512,50 +528,80 @@ wxLayoutList::Debug(void)
 // don't change this, I know how to optimise this and will do it real 
 // soon (KB)
 
 // don't change this, I know how to optimise this and will do it real 
 // soon (KB)
 
+/*
+ * FindObjectCursor:
+ * Finds the object belonging to a given cursor position cpos and
+ * returns an iterator to that object and stores the relative cursor
+ * position in offset.
+ *
+ * For linebreaks, the offset can be 0=before or 1=after.
+ *
+ * If the cpos coordinates don't exist, they are modified.
+ */
+
 wxLayoutObjectList::iterator 
 wxLayoutObjectList::iterator 
-wxLayoutList::FindObjectCursor(wxPoint const &cpos, CoordType *offset)
+wxLayoutList::FindObjectCursor(wxPoint *cpos, CoordType *offset)
 {
 {
-   wxPoint cursor = wxPoint(0,0);  // runs along the objects
+   wxPoint object = wxPoint(0,0);  // runs along the objects
    CoordType width;
    wxLayoutObjectList::iterator i;
 
 #ifdef WXLAYOUT_DEBUG
    CoordType width;
    wxLayoutObjectList::iterator i;
 
 #ifdef WXLAYOUT_DEBUG
-   cerr << "Looking for object at " << cpos.x << ',' << cpos.y <<
+   cerr << "Looking for object at " << cpos->x << ',' << cpos->y <<
       endl;
 #endif
       endl;
 #endif
-   for(i = begin(); i != end() && cursor.y <= cpos.y; i++)
+   for(i = begin(); i != end() && object.y <= cpos->y; i++)
    {
    {
-      width = 0;
-      if((*i)->GetType() == WXLO_TYPE_LINEBREAK)
+      width = (**i).CountPositions();
+      if(cpos->y == object.y) // a possible candidate
       {
       {
-         if(cpos.y == cursor.y && i != begin())
+         if((**i).GetType() ==WXLO_TYPE_LINEBREAK)
          {
          {
-            --i;
-            if(offset) *offset = i != end() ? (*i)->CountPositions() : 0;
+            if(cpos->x == object.x)
+            {
+               *offset = 0;
+               return i;
+            }
+            *offset=1;
+            cpos->x = object.x;
+            return i;
+         }
+         if(cpos->x >= object.x && cpos->x <= object.x+width) // overlap
+         {
+            if(offset) *offset = cpos->x-object.x;
+#ifdef WXLAYOUT_DEBUG
+            cerr << "   found object at " << object.x << ',' <<
+               object.y << ", type:" << _t[(*i)->GetType()] <<endl;
+#endif      
             return i;
          }
             return i;
          }
-         cursor.x = 0; cursor.y ++;
       }
       }
-      else
-         cursor.x += (width = (*i)->CountPositions());
-      if(cursor.y == cpos.y && (cursor.x > cpos.x ||
-                                ((*i)->GetType() != WXLO_TYPE_CMD && cursor.x == cpos.x))
-         ) // found it ?   
+      // no overlap, increment coordinates
+      object.x += width;
+      if((**i).GetType() == WXLO_TYPE_LINEBREAK)
       {
       {
-         if(offset)
-            *offset = cpos.x-(cursor.x-width);  // 0==cursor before
-         // the object
-#ifdef WXLAYOUT_DEBUG
-         cerr << "   found object at " << cursor.x-width << ',' <<
-            cursor.y << ", type:" << _t[(*i)->GetType()] <<endl;
-#endif   
-         return i;
+         object.x = 0;
+         object.y++;
       }
    }
 #ifdef WXLAYOUT_DEBUG
    cerr << "   not found" << endl;
 #endif
       }
    }
 #ifdef WXLAYOUT_DEBUG
    cerr << "   not found" << endl;
 #endif
-   return end(); // not found
+   // return last object, coordinates of that one:
+   i = tail();
+   if(i == end())
+      return i;
+   if((**i).GetType()==WXLO_TYPE_LINEBREAK)
+   {
+      if(offset)
+         *offset = (cpos.x > object.x) : 1 : 0;
+      return i;
+   }
+   cpos->x = object.x; // would be the coordinate of next object
+   cpos->y = object.y;
+   cpos->x += width; // last object's width
+   if(*offset)  *offset = cpos->x-object.x
+   return i; // not found
 }
 
 wxLayoutObjectList::iterator 
 }
 
 wxLayoutObjectList::iterator 
@@ -563,7 +609,7 @@ wxLayoutList::FindCurrentObject(CoordType *offset)
 {
    wxLayoutObjectList::iterator obj = end();
 
 {
    wxLayoutObjectList::iterator obj = end();
 
-   obj = FindObjectCursor(m_CursorPosition, offset);
+   obj = FindObjectCursor(&m_CursorPosition, offset);
    if(obj == end())  // not ideal yet
    {
       obj = tail();
    if(obj == end())  // not ideal yet
    {
       obj = tail();
@@ -665,68 +711,71 @@ wxLayoutList::MoveCursor(int dx, int dy)
 void
 wxLayoutList::Delete(CoordType count)
 {
 void
 wxLayoutList::Delete(CoordType count)
 {
-   TRACE(Delete);
+   WXL_TRACE(Delete);
 
    if(!m_Editable)
       return;
 
 
    if(!m_Editable)
       return;
 
-   VAR(count);
+   WXL_VAR(count);
 
 
-   CoordType offs, len;
+   CoordType offs;
    wxLayoutObjectList::iterator i;
       
    do
    {
       i  = FindCurrentObject(&offs);
    wxLayoutObjectList::iterator i;
       
    do
    {
       i  = FindCurrentObject(&offs);
+   startover: // ugly, but easiest way to do it
       if(i == end())
       if(i == end())
-         return;
-#ifdef WXLAYOUT_DEBUG
-      cerr << "trying to delete: " << _t[(*i)->GetType()] << endl;
-#endif
+         return; // we cannot delete anything more
+
+      /* Here we need to treat linebreaks differently.
+         If offs==0 we are before the linebreak, otherwise behind.  */
       if((*i)->GetType() == WXLO_TYPE_LINEBREAK)
       if((*i)->GetType() == WXLO_TYPE_LINEBREAK)
-         m_MaxLine--;
-      if((*i)->GetType() == WXLO_TYPE_TEXT)
+      {
+         if(offs == 0)
+         {
+            m_MaxLine--;
+            erase(i);
+            count--;
+            continue; // we're done
+         }
+         else // delete the object behind the linebreak
+         {
+            i++; // we increment and continue as normal
+            offs=0;
+            goto startover; 
+         }
+      }
+      else if((*i)->GetType() == WXLO_TYPE_TEXT)
       {
          wxLayoutObjectText *tobj = (wxLayoutObjectText *)*i;
       {
          wxLayoutObjectText *tobj = (wxLayoutObjectText *)*i;
-         len = tobj->CountPositions();
+         CoordType len = tobj->CountPositions();
          // If we find the end of a text object, this means that we
          // have to delete from the object following it.
          // If we find the end of a text object, this means that we
          // have to delete from the object following it.
-         if(offs == len)
+         if(len == offs)
          {
             i++;
          {
             i++;
-            if(i != end() && (*i)->GetType() == WXLO_TYPE_TEXT)
-            {
-               offs = 0;  // delete from begin of next string
-               tobj = (wxLayoutObjectText *)*i;
-               len = tobj->CountPositions();
-            }
-            else
-            {
-               erase(i);
-               return;
-            }
+            offs = 0;
+            goto startover;
          }
          }
-         if(len <= count) // delete this object
+         else if(len <= count) // delete this object
          {
             count -= len;
             erase(i);
          {
             count -= len;
             erase(i);
+            continue; 
          }
          else
          {
             len = count;
          }
          else
          {
             len = count;
-            VAR(offs); VAR(len);
             tobj->GetText().erase(offs,len);
             return; // we are done
          }
       }
             tobj->GetText().erase(offs,len);
             return; // we are done
          }
       }
-      else // delete the object
+      else // all other objects: delete the object
       {
       {
-         len = (*i)->CountPositions();
+         CoordType len = (*i)->CountPositions();
          erase(i); // after this, i is the iterator for the following object
          erase(i); // after this, i is the iterator for the following object
-         if(count > len)
-            count -= len;
-         else
-            count = 0;
+         count = count > len ? count -= len : 0;
       }
    }
    while(count && i != end());      
       }
    }
    while(count && i != end());      
@@ -739,37 +788,38 @@ wxLayoutList::Insert(wxLayoutObjectBase *obj)
    CoordType offs;
    wxLayoutObjectList::iterator i = FindCurrentObject(&offs);
 
    CoordType offs;
    wxLayoutObjectList::iterator i = FindCurrentObject(&offs);
 
-   TRACE(Insert(obj));
+   WXL_TRACE(Insert(obj));
 
    if(i == end())
       push_back(obj);
 
    if(i == end())
       push_back(obj);
-   else
-   {      
-      // do we have to split a text object?
-      if((*i)->GetType() == WXLO_TYPE_TEXT && offs != 0 && offs != (*i)->CountPositions())
-      {
-         wxLayoutObjectText *tobj = (wxLayoutObjectText *) *i;
+   else if(offs == 0)
+      insert(i,obj);
+   // do we have to split a text object?
+   else if((*i)->GetType() == WXLO_TYPE_TEXT && offs != (*i)->CountPositions())
+   {
+      wxLayoutObjectText *tobj = (wxLayoutObjectText *) *i;
 #ifdef WXLAYOUT_DEBUG
 #ifdef WXLAYOUT_DEBUG
-         cerr << "text: '" << tobj->GetText() << "'" << endl;
-         VAR(offs);
+      cerr << "text: '" << tobj->GetText() << "'" << endl;
+      WXL_VAR(offs);
 #endif
 #endif
-         String left = tobj->GetText().substr(0,offs); // get part before cursor
-         VAR(left);
-         tobj->GetText() = tobj->GetText().substr(offs,(*i)->CountPositions()-offs); // keeps the right half
-         VAR(tobj->GetText());
-         insert(i,obj);
-         insert(i,new wxLayoutObjectText(left)); // inserts before
-      }
+      String left = tobj->GetText().substr(0,offs); // get part before cursor
+      WXL_VAR(left);
+      tobj->GetText() = tobj->GetText().substr(offs,(*i)->CountPositions()-offs); // keeps the right half
+      WXL_VAR(tobj->GetText());
+      insert(i,obj);
+      insert(i,new wxLayoutObjectText(left)); // inserts before
+   }
+   else
+   {
+     // all other cases, append after object:
+      wxLayoutObjectList::iterator j = i; // we want to apend after this object
+      j++;
+      if(j != end())
+         insert(j, obj);
       else
       else
-      {
-         wxLayoutObjectList::iterator j = i; // we want to apend after this object
-         j++;
-         if(j != end())
-            insert(j, obj);
-         else
-            push_back(obj);
-      }  
+         push_back(obj);
    }
    }
+   
    m_CursorPosition.x += obj->CountPositions();
    if(obj->GetType() == WXLO_TYPE_LINEBREAK)
       m_MaxLine++;
    m_CursorPosition.x += obj->CountPositions();
    if(obj->GetType() == WXLO_TYPE_LINEBREAK)
       m_MaxLine++;
@@ -779,7 +829,7 @@ void
 wxLayoutList::Insert(String const &text)
 {
    wxLayoutObjectText *tobj = NULL;
 wxLayoutList::Insert(String const &text)
 {
    wxLayoutObjectText *tobj = NULL;
-   TRACE(Insert(text));
+   WXL_TRACE(Insert(text));
 
    if(! m_Editable)
       return;
 
    if(! m_Editable)
       return;
@@ -789,7 +839,7 @@ wxLayoutList::Insert(String const &text)
 
    if(i != end() && (*i)->GetType() == WXLO_TYPE_TEXT)
    {  // insert into an existing text object:
 
    if(i != end() && (*i)->GetType() == WXLO_TYPE_TEXT)
    {  // insert into an existing text object:
-      TRACE(inserting into existing object);
+      WXL_TRACE(inserting into existing object);
       tobj = (wxLayoutObjectText *)*i ;
       wxASSERT(tobj);
       tobj->GetText().insert(offs,text);
       tobj = (wxLayoutObjectText *)*i ;
       wxASSERT(tobj);
       tobj->GetText().insert(offs,text);
@@ -798,7 +848,7 @@ wxLayoutList::Insert(String const &text)
    {
       wxLayoutObjectList::iterator j = i;
       j--;
    {
       wxLayoutObjectList::iterator j = i;
       j--;
-      TRACE(checking previous object);
+      WXL_TRACE(checking previous object);
       if(0 && j != end() && (*j)->GetType() == WXLO_TYPE_TEXT)
       {
          tobj = (wxLayoutObjectText *)*i;
       if(0 && j != end() && (*j)->GetType() == WXLO_TYPE_TEXT)
       {
          tobj = (wxLayoutObjectText *)*i;
@@ -807,7 +857,7 @@ wxLayoutList::Insert(String const &text)
       }
       else  // insert a new text object
       {
       }
       else  // insert a new text object
       {
-         TRACE(creating new object);
+         WXL_TRACE(creating new object);
          Insert(new wxLayoutObjectText(text));  //FIXME not too optimal, slow
          return;  // position gets incremented in Insert(obj)
       }
          Insert(new wxLayoutObjectText(text));  //FIXME not too optimal, slow
          return;  // position gets incremented in Insert(obj)
       }
index d1cc23775f917ea24ab75d83e42ccf2a2322d449..8959a80e104cb8f459473d1267e249e07ca8f48c 100644 (file)
@@ -14,7 +14,7 @@
 
 #include   "kbList.h"
 
 
 #include   "kbList.h"
 
-#include   <wx/wx.h>
+#include   "wx/wx.h"
 
 // skip the following defines if embedded in M application
 #ifdef   M_BASEDIR
 
 // skip the following defines if embedded in M application
 #ifdef   M_BASEDIR
@@ -47,8 +47,9 @@ typedef long CoordType;
 class wxLayoutList;
 class wxLayoutObjectBase;
 
 class wxLayoutList;
 class wxLayoutObjectBase;
 
-/// Define a list type of wxLayoutObjectBase pointers.
-KBLIST_DEFINE(wxLayoutObjectList, wxLayoutObjectBase);
+class wxDC;
+class wxColour;
+class wxFont;
 
 /** The base class defining the interface to each object which can be
     part of the layout. Each object needs to draw itself and calculate 
 
 /** The base class defining the interface to each object which can be
     part of the layout. Each object needs to draw itself and calculate 
@@ -99,6 +100,10 @@ private:
    void * m_UserData;
 };
 
    void * m_UserData;
 };
 
+/// Define a list type of wxLayoutObjectBase pointers.
+KBLIST_DEFINE(wxLayoutObjectList, wxLayoutObjectBase);
+
+
 /// object for text block
 class wxLayoutObjectText : public wxLayoutObjectBase
 {
 /// object for text block
 class wxLayoutObjectText : public wxLayoutObjectBase
 {
@@ -138,8 +143,9 @@ public:
                      bool draw = true);
    virtual wxPoint GetSize(CoordType *baseLine) const;
    wxLayoutObjectIcon(wxIcon *icon);
                      bool draw = true);
    virtual wxPoint GetSize(CoordType *baseLine) const;
    wxLayoutObjectIcon(wxIcon *icon);
+
 private:
 private:
-   wxIcon * m_Icon;
+   wxIcon *m_Icon;
 };
 
 /// for export to html:
 };
 
 /// for export to html:
@@ -294,7 +300,7 @@ protected:
    bool      m_Editable;
    /// find the object to the cursor position and returns the offset
    /// in there
    bool      m_Editable;
    /// find the object to the cursor position and returns the offset
    /// in there
-   wxLayoutObjectList::iterator FindObjectCursor(wxPoint const &cpos, CoordType *offset = NULL);
+   wxLayoutObjectList::iterator FindObjectCursor(wxPoint *cpos, CoordType *offset = NULL);
    
 };
 
    
 };
 
index f20a7374fb26d09918f9943ed965dd9a1c6839fe..8d5b14e234e668d9571a4f28b8c5b3c72573b761 100644 (file)
@@ -24,22 +24,17 @@ wxLayoutWindow::wxLayoutWindow(wxWindow *parent)
    : wxScrolledWindow(parent)
 {
    m_ScrollbarsSet = false;
    : wxScrolledWindow(parent)
 {
    m_ScrollbarsSet = false;
-   m_EventId = 0;
+   m_EventId = -1;
 }
 
 void
 wxLayoutWindow::OnMouse(wxMouseEvent& event)
 {
 }
 
 void
 wxLayoutWindow::OnMouse(wxMouseEvent& event)
 {
-   if(m_EventId == 0) // nothing to do
+   if(m_EventId == -1) // nothing to do
       return;
    
       return;
    
-   // this is unintuitive
-   wxClientDC dc(this);
-   PrepareDC( dc );
-
-   m_FindPos.x = dc.DeviceToLogicalX( event.GetX() );
-   m_FindPos.y = dc.DeviceToLogicalY( event.GetY() );
-
+   m_FindPos.x = event.GetX();
+   m_FindPos.y = event.GetY();
    m_FoundObject = NULL;
 
 #ifdef   WXLAYOUT_DEBUG
    m_FoundObject = NULL;
 
 #ifdef   WXLAYOUT_DEBUG
@@ -48,7 +43,7 @@ wxLayoutWindow::OnMouse(wxMouseEvent& event)
    Refresh();
    if(m_FoundObject)
    {
    Refresh();
    if(m_FoundObject)
    {
-      if(m_EventId)
+      if(m_EventId != -1)
       {
          wxCommandEvent commandEvent(wxEVENT_TYPE_MENU_COMMAND, m_EventId);
          commandEvent.SetEventObject( this );
       {
          wxCommandEvent commandEvent(wxEVENT_TYPE_MENU_COMMAND, m_EventId);
          commandEvent.SetEventObject( this );
@@ -138,7 +133,7 @@ wxLayoutWindow::OnPaint( wxPaintEvent &WXUNUSED(event)w)  // or: OnDraw(wxDC& dc
    wxPaintDC dc( this );  // only when used as OnPaint for OnDraw we
    PrepareDC( dc );       // can skip the first two lines
 
    wxPaintDC dc( this );  // only when used as OnPaint for OnDraw we
    PrepareDC( dc );       // can skip the first two lines
 
-   if(m_EventId) // look for keyclicks
+   if(m_EventId != -1) // look for keyclicks
       m_FoundObject = m_llist.Draw(dc,true,m_FindPos);
    else
       m_llist.Draw(dc);
       m_FoundObject = m_llist.Draw(dc,true,m_FindPos);
    else
       m_llist.Draw(dc);
index 18e3567e440d38eaeaba4f276d797a9dc9582d35..bdb4993cfa29c2a3e05f5a683bc679cd1533f76b 100644 (file)
 #   pragma interface "wxlwindow.h"
 #endif
 
 #   pragma interface "wxlwindow.h"
 #endif
 
-#include   <wx/wx.h>
+#ifndef USE_PCH
+#  include   <wx/wx.h>
+#endif
 
 #include   "wxllist.h"
 
 
 #include   "wxllist.h"
 
-#define   BROKEN_COMPILER
-
-#ifdef   BROKEN_COMPILER
-#   define   virtual
-#endif
-
 class wxLayoutWindow : public wxScrolledWindow
 {
 public:
 class wxLayoutWindow : public wxScrolledWindow
 {
 public:
@@ -38,18 +34,24 @@ public:
          SetBackgroundColour( *GetLayoutList().GetDefaults()->GetBGColour());
       }
 
          SetBackgroundColour( *GetLayoutList().GetDefaults()->GetBGColour());
       }
 
-   //virtual void OnDraw(wxDC &dc);
+   // callbacks
+   // NB: these functions are used as event handlers and must not be virtual
+   //void OnDraw(wxDC &dc);
    void OnPaint(wxPaintEvent &WXUNUSED(event));
    void OnPaint(wxPaintEvent &WXUNUSED(event));
-   virtual void OnMouse(wxMouseEvent& event);
-   virtual void OnChar(wxKeyEvent& event);
+   void OnMouse(wxMouseEvent& event);
+   void OnChar(wxKeyEvent& event);
+
+#ifdef __WXMSW__
+   virtual long MSWGetDlgCode();
+#endif //MSW
+
    void UpdateScrollbars(void);
    void Print(void);
    void UpdateScrollbars(void);
    void Print(void);
-   void Erase(void)
-      { m_llist.Clear(); Clear(); }
+   void Erase(void) { m_llist.Clear(); Clear(); }
    void SetEventId(int id) { m_EventId = id; }
    void SetEventId(int id) { m_EventId = id; }
-   wxPoint const &GetClickPosition(void) const { return
-                                                    m_ClickPosition; }
-   virtual ~wxLayoutWindow() {} ;
+   wxPoint const &GetClickPosition(void) const { return m_ClickPosition; }
+   virtual ~wxLayoutWindow() {}
+
 private:
    /// for sending events
    wxWindow *m_Parent;
 private:
    /// for sending events
    wxWindow *m_Parent;
@@ -62,11 +64,8 @@ private:
    wxPoint m_FindPos;
    wxLayoutObjectBase *m_FoundObject;
    wxPoint m_ClickPosition;
    wxPoint m_FindPos;
    wxLayoutObjectBase *m_FoundObject;
    wxPoint m_ClickPosition;
+
    DECLARE_EVENT_TABLE()
 };
 
    DECLARE_EVENT_TABLE()
 };
 
-#ifdef   BROKEN_COMPILER
-#undef   virtual
-#endif
-
 #endif
 #endif