1 /*-*- c++ -*-********************************************************
2 * wxLwindow.h : a scrolled Window for displaying/entering rich text*
4 * (C) 1998, 1999 by Karsten Ballüder (karsten@phy.hw.ac.uk) *
7 *******************************************************************/
9 // ============================================================================
11 // ============================================================================
13 // ----------------------------------------------------------------------------
15 // ----------------------------------------------------------------------------
18 # pragma implementation "wxlwindow.h"
21 #include <wx/wxprec.h>
32 # include "gui/wxMenuDefs.h"
33 # include "gui/wxMApp.h"
35 # include "gui/wxlwindow.h"
36 # include "gui/wxlparser.h"
38 # include "MDialogs.h"
42 # include <wx/msw/private.h>
45 # include "wxlwindow.h"
46 # include "wxlparser.h"
49 #include <wx/clipbrd.h>
50 #include <wx/textctrl.h>
51 #include <wx/dataobj.h>
53 #ifdef WXLAYOUT_USE_CARET
54 # include <wx/caret.h>
55 #endif // WXLAYOUT_USE_CARET
59 // ----------------------------------------------------------------------------
61 // ----------------------------------------------------------------------------
64 # define WXLO_DEBUG(x) wxLogDebug x
66 # define WXLO_DEBUG(x)
69 // ----------------------------------------------------------------------------
71 // ----------------------------------------------------------------------------
73 /// offsets to put a nice frame around text
74 #define WXLO_XOFFSET 4
75 #define WXLO_YOFFSET 4
77 /// offset to the right and bottom for when to redraw scrollbars
78 #define WXLO_ROFFSET 20
79 #define WXLO_BOFFSET 20
81 /// scroll margins when selecting with the mouse
82 #define WXLO_SCROLLMARGIN_X 10
83 #define WXLO_SCROLLMARGIN_Y 10
85 /// the size of one scrollbar page in pixels
86 static const int X_SCROLL_PAGE
= 10;
87 static const int Y_SCROLL_PAGE
= 20;
91 #define wxUSE_PRIVATE_CLIPBOARD_FORMAT 0
93 // ----------------------------------------------------------------------------
95 // ----------------------------------------------------------------------------
97 BEGIN_EVENT_TABLE(wxLayoutWindow
,wxScrolledWindow
)
98 EVT_SIZE (wxLayoutWindow::OnSize
)
100 EVT_PAINT (wxLayoutWindow::OnPaint
)
102 EVT_CHAR (wxLayoutWindow::OnChar
)
103 EVT_KEY_UP (wxLayoutWindow::OnKeyUp
)
105 EVT_LEFT_DOWN(wxLayoutWindow::OnLeftMouseDown
)
106 EVT_LEFT_UP(wxLayoutWindow::OnLeftMouseUp
)
107 EVT_RIGHT_DOWN(wxLayoutWindow::OnRightMouseClick
)
108 EVT_LEFT_DCLICK(wxLayoutWindow::OnMouseDblClick
)
109 EVT_MIDDLE_DOWN(wxLayoutWindow::OnMiddleMouseDown
)
110 EVT_MOTION (wxLayoutWindow::OnMouseMove
)
112 EVT_UPDATE_UI(WXLOWIN_MENU_UNDERLINE
, wxLayoutWindow::OnUpdateMenuUnderline
)
113 EVT_UPDATE_UI(WXLOWIN_MENU_BOLD
, wxLayoutWindow::OnUpdateMenuBold
)
114 EVT_UPDATE_UI(WXLOWIN_MENU_ITALICS
, wxLayoutWindow::OnUpdateMenuItalic
)
115 EVT_MENU_RANGE(WXLOWIN_MENU_FIRST
, WXLOWIN_MENU_LAST
, wxLayoutWindow::OnMenu
)
117 EVT_SET_FOCUS(wxLayoutWindow::OnSetFocus
)
118 EVT_KILL_FOCUS(wxLayoutWindow::OnKillFocus
)
120 // EVT_IDLE(wxLayoutWindow::ResizeScrollbars)
123 // ----------------------------------------------------------------------------
124 // function prototypes
125 // ----------------------------------------------------------------------------
127 /// returns TRUE if keyCode is one of arrows/home/end/page{up|down} keys
128 static bool IsDirectionKey(long keyCode
);
130 // ============================================================================
132 // ============================================================================
134 #ifndef wxWANTS_CHARS
135 # define wxWANTS_CHARS 0
138 // ----------------------------------------------------------------------------
140 // ----------------------------------------------------------------------------
142 wxLayoutWindow::wxLayoutWindow(wxWindow
*parent
)
143 : wxScrolledWindow(parent
, -1,
144 wxDefaultPosition
, wxDefaultSize
,
145 wxHSCROLL
| wxVSCROLL
|
150 SetStatusBar(NULL
); // don't use statusbar
152 m_doSendEvents
= false;
153 m_ViewStartX
= 0; m_ViewStartY
= 0;
154 m_DoPopupMenu
= true;
155 m_PopupMenu
= MakeFormatMenu();
156 m_memDC
= new wxMemoryDC
;
157 m_bitmap
= new wxBitmap(4,4);
158 m_bitmapSize
= wxPoint(4,4);
159 m_llist
= new wxLayoutList();
161 m_ScrollToCursor
= false;
163 m_FocusFollowMode
= false;
167 // no scrollbars initially
169 m_hasVScrollbar
= false;
173 #ifdef WXLAYOUT_USE_CARET
174 // FIXME cursor size shouldn't be hardcoded
175 wxCaret
*caret
= new wxCaret(this, 2, 20);
177 m_llist
->SetCaret(caret
);
178 #endif // WXLAYOUT_USE_CARET
181 m_HandCursor
= FALSE
;
182 m_CursorVisibility
= -1;
183 SetCursor(wxCURSOR_IBEAM
);
186 // at least under Windows, this should be the default behaviour
187 m_AutoDeleteSelection
= TRUE
;
190 wxLayoutWindow::~wxLayoutWindow()
192 delete m_memDC
; // deletes bitmap automatically (?)
196 SetBackgroundBitmap(NULL
);
200 wxLayoutWindow::Clear(int family
,
208 GetLayoutList()->Clear(family
,size
,style
,weight
,underline
,fg
,bg
);
209 SetBackgroundColour(GetLayoutList()->GetDefaultStyleInfo().GetBGColour());
210 wxScrolledWindow::Clear();
211 ResizeScrollbars(true);
215 m_CursorVisibility
= 1;
217 #ifdef WXLAYOUT_USE_CARET
218 if ( m_CursorVisibility
== 1 )
220 #endif // WXLAYOUT_USE_CARET
222 RequestUpdate((wxRect
*)NULL
);
225 void wxLayoutWindow::Refresh(bool eraseBackground
, const wxRect
*rect
)
227 wxScrolledWindow::Refresh(eraseBackground
, rect
);
231 wxLayoutWindow::OnMouse(int eventId
, wxMouseEvent
& event
)
233 wxClientDC
dc( this );
235 if ( eventId
!= WXLOWIN_MENU_MOUSEMOVE
243 findPos
.x
= dc
.DeviceToLogicalX(event
.GetX());
244 findPos
.y
= dc
.DeviceToLogicalY(event
.GetY());
246 findPos
.x
-= WXLO_XOFFSET
;
247 findPos
.y
-= WXLO_YOFFSET
;
254 m_ClickPosition
= wxPoint(event
.GetX(), event
.GetY());
256 // Scroll the window if the mouse is at the end of it:
257 if(m_Selecting
&& eventId
== WXLOWIN_MENU_MOUSEMOVE
)
259 //WXLO_DEBUG(("selecting at : %d/%d", (int) event.GetX(), (int)event.GetY()));
261 ViewStart(&left
, &top
);
262 wxSize size
= GetClientSize();
265 if(event
.GetX() < WXLO_SCROLLMARGIN_X
)
266 xdelta
= -(WXLO_SCROLLMARGIN_X
-event
.GetX());
267 else if(event
.GetX() > size
.x
-WXLO_SCROLLMARGIN_X
)
268 xdelta
= event
.GetX()-size
.x
+WXLO_SCROLLMARGIN_X
;
271 if(event
.GetY() < WXLO_SCROLLMARGIN_Y
)
272 ydelta
= -(WXLO_SCROLLMARGIN_Y
-event
.GetY());
273 else if(event
.GetY() > size
.y
-WXLO_SCROLLMARGIN_Y
)
274 ydelta
= event
.GetY()-size
.y
+WXLO_SCROLLMARGIN_Y
;
278 //WXLO_DEBUG(("xdelta: %d", (int) xdelta));
279 if(xdelta
!= 0 || ydelta
!= 0)
281 top
+= ydelta
; if(top
< 0) top
= 0;
282 left
+= xdelta
; if(left
< 0) left
= 0;
289 wxLayoutObject
*obj
= m_llist
->FindObjectScreen(dc
, findPos
,
291 wxLayoutObject::UserData
*u
= obj
? obj
->GetUserData() : NULL
;
293 // has the mouse only been moved?
296 case WXLOWIN_MENU_MOUSEMOVE
:
298 // this variables is used to only erase the message in the status
299 // bar if we had put it there previously - otherwise empting status
300 // bar might be undesirable
301 static bool s_hasPutMessageInStatusBar
= false;
303 // found is only true if we are really over an object, not just
305 if(found
&& u
&& ! m_Selecting
)
308 SetCursor(wxCURSOR_HAND
);
310 if(m_StatusBar
&& m_StatusFieldLabel
!= -1)
312 const wxString
&label
= u
->GetLabel();
315 m_StatusBar
->SetStatusText(label
,
317 s_hasPutMessageInStatusBar
= true;
324 SetCursor(wxCURSOR_IBEAM
);
325 m_HandCursor
= FALSE
;
326 if( m_StatusBar
&& m_StatusFieldLabel
!= -1 &&
327 s_hasPutMessageInStatusBar
)
329 m_StatusBar
->SetStatusText("", m_StatusFieldLabel
);
335 if ( event
.LeftIsDown() )
337 // m_Selecting might not be set if the button got pressed
338 // outside this window, so check for it:
341 m_llist
->ContinueSelection(cursorPos
, m_ClickPosition
);
342 RequestUpdate(); // TODO: we don't have to redraw everything!
353 case WXLOWIN_MENU_LDOWN
:
355 // always move cursor to mouse click:
356 m_llist
->MoveCursorTo(cursorPos
);
358 // clicking a mouse removes the selection
359 if ( m_llist
->HasSelection() )
361 m_llist
->DiscardSelection();
363 RequestUpdate(); // TODO: we don't have to redraw everything!
366 // Calculate where the top of the visible area is:
370 GetScrollPixelsPerUnit(&dx
, &dy
);
373 wxPoint
offset(-x0
+WXLO_XOFFSET
, -y0
+WXLO_YOFFSET
);
375 if(m_CursorVisibility
== -1)
376 m_CursorVisibility
= 1;
377 #ifdef WXLAYOUT_USE_CARET
378 if ( m_CursorVisibility
== 1 )
380 #endif // WXLAYOUT_USE_CARET
382 if(m_CursorVisibility
)
384 // draw a thick cursor for editable windows with focus
385 m_llist
->DrawCursor(dc
, m_HaveFocus
&& IsEditable(), offset
);
389 RequestUpdate(); // RequestUpdate suppresses flicker under GTK
393 m_llist
->StartSelection(wxPoint(-1, -1), m_ClickPosition
);
398 case WXLOWIN_MENU_LUP
:
401 // end selection at the cursor position corresponding to the
402 // current mouse position, but don´t move cursor there.
403 m_llist
->EndSelection(cursorPos
,m_ClickPosition
);
406 RequestUpdate(); // TODO: we don't have to redraw everything!
410 case WXLOWIN_MENU_MDOWN
:
414 case WXLOWIN_MENU_DBLCLICK
:
415 // select a word under cursor
416 m_llist
->MoveCursorTo(cursorPos
);
417 m_llist
->MoveCursorWord(-1);
418 m_llist
->StartSelection();
419 m_llist
->MoveCursorWord(1, false);
420 m_llist
->EndSelection();
422 RequestUpdate(); // TODO: we don't have to redraw everything!
426 // notify about mouse events?
429 // only do the menu if activated, editable and not on a clickable object
430 if(eventId
== WXLOWIN_MENU_RCLICK
432 && (! obj
|| u
== NULL
))
434 PopupMenu(m_PopupMenu
, m_ClickPosition
.x
, m_ClickPosition
.y
);
439 // find the object at this position
442 wxCommandEvent
commandEvent(wxEVT_COMMAND_MENU_SELECTED
, eventId
);
443 commandEvent
.SetEventObject( this );
444 commandEvent
.SetClientData((char *)obj
);
445 GetEventHandler()->ProcessEvent(commandEvent
);
452 // ----------------------------------------------------------------------------
453 // keyboard handling.
454 // ----------------------------------------------------------------------------
457 wxLayoutWindow::OnChar(wxKeyEvent
& event
)
459 int keyCode
= event
.KeyCode();
460 bool ctrlDown
= event
.ControlDown();
462 #ifdef WXLAYOUT_DEBUG
463 if(keyCode
== WXK_F1
)
470 // Force m_Selecting to be false if shift is no longer
471 // pressed. OnKeyUp() cannot catch all Shift-Up events.
472 if(m_Selecting
&& !event
.ShiftDown())
475 m_llist
->EndSelection();
476 m_llist
->DiscardSelection(); //FIXME: correct?
479 // If we deleted the selection here, we must not execute the
480 // deletion in Delete/Backspace handling.
481 bool deletedSelection
= false;
482 // pressing any non-arrow key optionally replaces the selection:
483 if(m_AutoDeleteSelection
485 && m_llist
->HasSelection()
486 && ! IsDirectionKey(keyCode
)
487 && ! (event
.AltDown() || ctrlDown
)
490 m_llist
->DeleteSelection();
491 deletedSelection
= true;
495 // <Shift>+<arrow> starts selection
496 if ( IsDirectionKey(keyCode
) )
498 // just continue the old selection
499 if ( m_Selecting
&& event
.ShiftDown() )
500 m_llist
->ContinueSelection();
503 m_llist
->DiscardSelection();
505 if( event
.ShiftDown() )
508 m_llist
->StartSelection();
513 // If needed, make cursor visible:
514 if(m_CursorVisibility
== -1)
515 m_CursorVisibility
= 1;
517 /* These two nested switches work like this:
518 The first one processes all non-editing keycodes, to move the
519 cursor, etc. It's default will process all keycodes causing
520 modifications to the buffer, but only if editing is allowed.
526 m_llist
->MoveCursorWord(1);
528 m_llist
->MoveCursorHorizontally(1);
532 m_llist
->MoveCursorWord(-1);
534 m_llist
->MoveCursorHorizontally(-1);
537 m_llist
->MoveCursorVertically(-1);
540 m_llist
->MoveCursorVertically(1);
543 m_llist
->MoveCursorVertically(-Y_SCROLL_PAGE
);
546 m_llist
->MoveCursorVertically(Y_SCROLL_PAGE
);
550 m_llist
->MoveCursorTo(wxPoint(0, 0));
552 m_llist
->MoveCursorToBeginOfLine();
556 m_llist
->MoveCursorToEnd();
558 m_llist
->MoveCursorToEndOfLine();
562 if(ctrlDown
&& ! IsEditable())
566 // this should work even in read-only mode
572 case 't': // search again
576 // we don't handle it, maybe an accelerator?
580 else if( IsEditable() )
582 /* First, handle control keys */
583 if(ctrlDown
&& ! event
.AltDown())
585 if(keyCode
>= 'A' && keyCode
<= 'Z')
586 keyCode
= tolower(keyCode
);
593 if(! deletedSelection
)
595 m_llist
->DeleteWord();
600 if(! deletedSelection
) // already done
607 m_llist
->DeleteLines(1);
610 case 'h': // like backspace
611 if(m_llist
->MoveCursorHorizontally(-1))
620 case 't': // search again
624 m_llist
->DeleteToBeginOfLine();
628 m_llist
->DeleteToEndOfLine();
635 // if SHIFT is down, use primary selection
636 Paste( event
.ShiftDown() );
641 #ifdef WXLAYOUT_DEBUG
643 m_llist
->SetFont(-1,-1,-1,-1,true); // underlined
647 // we don't handle it, maybe an accelerator?
652 else if( event
.AltDown() && ! event
.ControlDown() )
658 m_llist
->DeleteWord();
662 // we don't handle it, maybe an accelerator?
667 else if ( ! event
.AltDown() && ! event
.ControlDown())
672 if(event
.ShiftDown())
676 if(event
.ShiftDown())
679 if(! deletedSelection
)
685 case WXK_BACK
: // backspace
686 if(! deletedSelection
)
687 if(m_llist
->MoveCursorHorizontally(-1))
695 m_llist
->WrapLine(m_WrapMargin
);
696 m_llist
->LineBreak();
701 if ( !event
.ShiftDown() )
703 // TODO should be configurable
704 static const int tabSize
= 8;
706 CoordType x
= m_llist
->GetCursorPos().x
;
707 size_t numSpaces
= tabSize
- x
% tabSize
;
708 m_llist
->Insert(wxString(' ', numSpaces
));
714 if((!(event
.ControlDown() || event
.AltDown()
716 && (keyCode
< 256 && keyCode
>= 32)
719 if(m_WrapMargin
> 0 && isspace(keyCode
))
720 m_llist
->WrapLine(m_WrapMargin
);
721 m_llist
->Insert((char)keyCode
);
725 // we don't handle it, maybe an accelerator?
732 // we don't handle it, maybe an accelerator?
738 // continue selection to the current (new) cursor position
739 m_llist
->ContinueSelection();
742 // refresh the screen
743 RequestUpdate(m_llist
->GetUpdateRect());
747 wxLayoutWindow::OnKeyUp(wxKeyEvent
& event
)
749 if ( event
.KeyCode() == WXK_SHIFT
&& m_Selecting
)
751 m_llist
->EndSelection();
760 wxLayoutWindow::ScrollToCursor(void)
762 //is always needed to make sure we know where the cursor is
764 RequestUpdate(m_llist
->GetUpdateRect());
766 int x0
,y0
,x1
,y1
, dx
, dy
;
768 // Calculate where the top of the visible area is:
770 GetScrollPixelsPerUnit(&dx
, &dy
);
773 WXLO_DEBUG(("ScrollToCursor: ViewStart is %d/%d", x0
, y0
));
775 // Get the size of the visible window:
776 GetClientSize(&x1
, &y1
);
778 // Make sure that the scrollbars are at a position so that the cursor is
779 // visible if we are editing
780 WXLO_DEBUG(("m_ScrollToCursor = %d", (int) m_ScrollToCursor
));
781 wxPoint cc
= m_llist
->GetCursorScreenPos();
783 // the cursor should be completely visible in both directions
784 wxPoint
cs(m_llist
->GetCursorSize());
787 if ( cc
.x
< x0
|| cc
.x
>= x0
+ x1
- cs
.x
)
794 if ( cc
.y
< y0
|| cc
.y
>= y0
+ y1
- cs
.y
)
801 if ( nx
!= -1 || ny
!= -1 )
803 // set new view start
804 Scroll(nx
== -1 ? -1 : (nx
+dx
-1)/dx
, ny
== -1 ? -1 : (ny
+dy
-1)/dy
);
806 m_ScrollToCursor
= false;
812 wxLayoutWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
))
814 wxRect region
= GetUpdateRegion().GetBox();
815 InternalPaint(®ion
);
819 wxLayoutWindow::RequestUpdate(const wxRect
*updateRect
)
822 // Calling Refresh() causes bad flicker under wxGTK!!!
823 InternalPaint(updateRect
);
825 // shouldn't specify the update rectangle if it doesn't include all the
826 // changed locations - otherwise, they won't be repainted at all because
827 // the system clips the display to the update rect
828 Refresh(FALSE
); //, updateRect);
833 wxLayoutWindow::InternalPaint(const wxRect
*updateRect
)
835 wxPaintDC
dc( this );
838 #ifdef WXLAYOUT_USE_CARET
839 // hide the caret before drawing anything
841 #endif // WXLAYOUT_USE_CARET
843 int x0
,y0
,x1
,y1
, dx
, dy
;
845 // Calculate where the top of the visible area is:
847 GetScrollPixelsPerUnit(&dx
, &dy
);
850 // Get the size of the visible window:
851 GetClientSize(&x1
,&y1
);
857 WXLO_DEBUG(("Update rect: %ld,%ld / %ld,%ld",
858 updateRect
->x
, updateRect
->y
,
859 updateRect
->x
+updateRect
->width
,
860 updateRect
->y
+updateRect
->height
));
866 /* Check whether the window has grown, if so, we need to reallocate
867 the bitmap to be larger. */
868 if(x1
> m_bitmapSize
.x
|| y1
> m_bitmapSize
.y
)
870 wxASSERT(m_bitmapSize
.x
> 0);
871 wxASSERT(m_bitmapSize
.y
> 0);
873 m_memDC
->SelectObject(wxNullBitmap
);
875 m_bitmapSize
= wxPoint(x1
,y1
);
876 m_bitmap
= new wxBitmap(x1
,y1
);
877 m_memDC
->SelectObject(*m_bitmap
);
880 m_memDC
->SetDeviceOrigin(0,0);
881 m_memDC
->SetBackground(wxBrush(m_llist
->GetDefaultStyleInfo().GetBGColour(),wxSOLID
));
882 m_memDC
->SetPen(wxPen(m_llist
->GetDefaultStyleInfo().GetBGColour(),
884 m_memDC
->SetLogicalFunction(wxCOPY
);
887 // fill the background with the background bitmap
892 w
= m_BGbitmap
->GetWidth(),
893 h
= m_BGbitmap
->GetHeight();
894 for(y
= 0; y
< y1
; y
+=h
)
895 for(x
= 0; x
< x1
; x
+=w
)
896 m_memDC
->DrawBitmap(*m_BGbitmap
, x
, y
);
897 m_memDC
->SetBackgroundMode(wxTRANSPARENT
);
900 // This is the important bit: we tell the list to draw itself
904 WXLO_DEBUG(("Update rect: %ld,%ld / %ld,%ld",
905 updateRect
->x
, updateRect
->y
,
906 updateRect
->x
+updateRect
->width
,
907 updateRect
->y
+updateRect
->height
));
911 // Device origins on the memDC are suspect, we translate manually
912 // with the translate parameter of Draw().
913 wxPoint
offset(-x0
+WXLO_XOFFSET
,-y0
+WXLO_YOFFSET
);
914 m_llist
->Draw(*m_memDC
,offset
, y0
, y0
+y1
);
916 // We start calculating a new update rect before drawing the
917 // cursor, so that the cursor coordinates get included in the next
918 // update rectangle (although they are drawn on the memDC, this is
919 // needed to erase it):
920 m_llist
->InvalidateUpdateRect();
921 if(m_CursorVisibility
!= 0)
923 // draw a thick cursor for editable windows with focus
924 m_llist
->DrawCursor(*m_memDC
,
925 m_HaveFocus
&& IsEditable(),
929 // Now copy everything to the screen:
931 // This somehow doesn't work, but even the following bit with the
932 // whole rect at once is still a bit broken I think.
933 wxRegionIterator
ri ( GetUpdateRegion() );
937 WXLO_DEBUG(("UpdateRegion: %ld,%ld, %ld,%ld",
938 ri
.GetX(),ri
.GetY(),ri
.GetW(),ri
.GetH()));
939 dc
.Blit(x0
+ri
.GetX(),y0
+ri
.GetY(),ri
.GetW(),ri
.GetH(),
940 m_memDC
,ri
.GetX(),ri
.GetY(),wxCOPY
,FALSE
);
946 // FIXME: Trying to copy only the changed parts, but it does not seem
948 // x0 = updateRect->x; y0 = updateRect->y;
949 // if(updateRect->height < y1)
950 // y1 = updateRect->height;
951 // y1 += WXLO_YOFFSET; //FIXME might not be needed
952 dc
.Blit(x0
,y0
,x1
,y1
,m_memDC
,0,0,wxCOPY
,FALSE
);
955 #ifdef WXLAYOUT_USE_CARET
956 // show the caret back after everything is redrawn
958 #endif // WXLAYOUT_USE_CARET
962 if ( m_StatusBar
&& m_StatusFieldCursor
!= -1 )
964 static wxPoint
s_oldCursorPos(-1, -1);
966 wxPoint
pos(m_llist
->GetCursorPos());
968 // avoid unnecessary status bar refreshes
969 if ( pos
!= s_oldCursorPos
)
971 s_oldCursorPos
= pos
;
974 label
.Printf(_("Ln:%d Col:%d"), pos
.y
+ 1, pos
.x
+ 1);
975 m_StatusBar
->SetStatusText(label
, m_StatusFieldCursor
);
981 wxLayoutWindow::OnSize(wxSizeEvent
&event
)
990 Change the range and position of scrollbars. Has evolved into a
991 generic Update function which will at some time later cause a repaint
996 wxLayoutWindow::ResizeScrollbars(bool exact
)
1002 wxClientDC
dc( this );
1004 // m_llist->ForceTotalLayout();
1005 m_llist
->Layout(dc
);
1008 wxPoint max
= m_llist
->GetSize();
1009 wxSize size
= GetClientSize();
1011 WXLO_DEBUG(("ResizeScrollbars: max size = (%ld, %ld)",
1012 (long int)max
.x
, (long int) max
.y
));
1014 // in the absence of scrollbars we should compare with the client size
1015 if ( !m_hasHScrollbar
)
1016 m_maxx
= size
.x
;// - WXLO_ROFFSET;
1017 if ( !m_hasVScrollbar
)
1018 m_maxy
= size
.y
;// - WXLO_BOFFSET;
1020 // check if the text hasn't become too big
1021 // TODO why do we set both at once? they're independent...
1022 if( max
.x
> m_maxx
- WXLO_ROFFSET
1023 || max
.y
> m_maxy
- WXLO_BOFFSET
1024 || max
.x
< m_maxx
- X_SCROLL_PAGE
1025 || max
.y
< m_maxy
- Y_SCROLL_PAGE
1028 // text became too large
1031 // add an extra bit to the sizes to avoid future updates
1032 max
.x
+= WXLO_ROFFSET
;
1033 max
.y
+= WXLO_BOFFSET
;
1037 if(max
.x
< X_SCROLL_PAGE
)
1039 SetScrollbars(0,-1,0,-1,0,-1,true);
1040 m_hasHScrollbar
= FALSE
;
1043 if(max
.y
< Y_SCROLL_PAGE
)
1045 SetScrollbars(-1,0,-1,0,-1,0,true);
1046 m_hasVScrollbar
= FALSE
;
1051 ViewStart(&m_ViewStartX
, &m_ViewStartY
);
1052 SetScrollbars(X_SCROLL_PAGE
,
1054 max
.x
/ X_SCROLL_PAGE
+ 1,
1055 max
.y
/ Y_SCROLL_PAGE
+ 1,
1056 m_ViewStartX
, m_ViewStartY
,
1059 m_hasVScrollbar
= true;
1062 m_maxx
= max
.x
+ X_SCROLL_PAGE
;
1063 m_maxy
= max
.y
+ Y_SCROLL_PAGE
;
1067 // ----------------------------------------------------------------------------
1069 // clipboard operations
1071 // ----------------------------------------------------------------------------
1074 wxLayoutWindow::Paste(bool primary
)
1076 // this only has an effect under X11:
1077 if(primary
) wxTheClipboard
->UsePrimarySelection();
1079 if (wxTheClipboard
->Open())
1081 #if wxUSE_PRIVATE_CLIPBOARD_FORMAT
1082 wxLayoutDataObject wxldo
;
1083 if (wxTheClipboard
->IsSupported( wxldo
.GetFormat() ))
1085 if(wxTheClipboard
->GetData(wxldo
))
1087 wxString str
= wxldo
.GetLayoutData();
1095 wxTextDataObject data
;
1096 if (wxTheClipboard
->IsSupported( data
.GetFormat() )
1097 && wxTheClipboard
->GetData(data
) )
1099 wxString text
= data
.GetText();
1100 wxLayoutImportText( m_llist
, text
);
1104 wxTheClipboard
->Close();
1109 wxLayoutWindow::Copy(bool invalidate
)
1111 // Calling GetSelection() will automatically do an EndSelection()
1112 // on the list, but we need to take a note of it, too:
1115 m_Selecting
= false;
1116 m_llist
->EndSelection();
1119 wxLayoutDataObject
*wldo
= new wxLayoutDataObject
;
1120 wxLayoutList
*llist
= m_llist
->GetSelection(wldo
, invalidate
);
1123 // Export selection as text:
1125 wxLayoutExportObject
*exp
;
1126 wxLayoutExportStatus
status(llist
);
1127 while((exp
= wxLayoutExport( &status
, WXLO_EXPORT_AS_TEXT
)) != NULL
)
1129 if(exp
->type
== WXLO_EXPORT_TEXT
)
1130 text
<< *(exp
->content
.text
);
1135 // The exporter always appends a newline, so we chop it off if it
1138 size_t len
= text
.Length();
1139 if(len
> 2 && text
[len
-2] == '\r') // Windows
1140 text
= text
.Mid(0,len
-2);
1141 else if(len
> 1 && text
[len
-1] == '\n')
1142 text
= text
.Mid(0,len
-1);
1145 if (wxTheClipboard
->Open())
1147 wxTextDataObject
*data
= new wxTextDataObject( text
);
1150 rc
= wxTheClipboard
->SetData( data
);
1151 #if wxUSE_PRIVATE_CLIPBOARD_FORMAT
1152 rc
|= wxTheClipboard
->SetData( wldo
);
1154 wxTheClipboard
->Close();
1164 wxLayoutWindow::Cut(void)
1166 if(Copy(false)) // do not invalidate selection after copy
1168 m_llist
->DeleteSelection();
1176 // ----------------------------------------------------------------------------
1178 // ----------------------------------------------------------------------------
1181 wxLayoutWindow::Find(const wxString
&needle
,
1182 wxPoint
* fromWhere
,
1183 const wxString
&configPath
)
1188 if(needle
.Length() == 0)
1190 if( ! MInputBox(&m_FindString
,
1195 || strutil_isempty(m_FindString
))
1199 m_FindString
= needle
;
1201 if(fromWhere
== NULL
)
1202 found
= m_llist
->FindText(m_FindString
, m_llist
->GetCursorPos());
1204 found
= m_llist
->FindText(m_FindString
, *fromWhere
);
1212 m_llist
->MoveCursorTo(found
);
1223 wxLayoutWindow::FindAgain(void)
1225 bool rc
= Find(m_FindString
);
1229 // ----------------------------------------------------------------------------
1231 // ----------------------------------------------------------------------------
1234 wxLayoutWindow::MakeFormatMenu()
1236 wxMenu
*m
= new wxMenu(_("Layout Menu"));
1238 m
->Append(WXLOWIN_MENU_LARGER
,_("&Larger"),_("Switch to larger font."), false);
1239 m
->Append(WXLOWIN_MENU_SMALLER
,_("&Smaller"),_("Switch to smaller font."), false);
1240 m
->AppendSeparator();
1241 m
->Append(WXLOWIN_MENU_UNDERLINE
, _("&Underline"),_("Underline mode."), true);
1242 m
->Append(WXLOWIN_MENU_BOLD
, _("&Bold"),_("Bold mode."), true);
1243 m
->Append(WXLOWIN_MENU_ITALICS
, _("&Italics"),_("Italics mode."), true);
1244 m
->AppendSeparator();
1245 m
->Append(WXLOWIN_MENU_ROMAN
,_("&Roman"),_("Switch to roman font."), false);
1246 m
->Append(WXLOWIN_MENU_TYPEWRITER
,_("&Typewriter"),_("Switch to typewriter font."), false);
1247 m
->Append(WXLOWIN_MENU_SANSSERIF
,_("&Sans Serif"),_("Switch to sans serif font."), false);
1252 void wxLayoutWindow::OnUpdateMenuUnderline(wxUpdateUIEvent
& event
)
1254 event
.Check(m_llist
->IsFontUnderlined());
1257 void wxLayoutWindow::OnUpdateMenuBold(wxUpdateUIEvent
& event
)
1259 event
.Check(m_llist
->IsFontBold());
1262 void wxLayoutWindow::OnUpdateMenuItalic(wxUpdateUIEvent
& event
)
1264 event
.Check(m_llist
->IsFontItalic());
1267 void wxLayoutWindow::OnMenu(wxCommandEvent
& event
)
1269 switch (event
.GetId())
1271 case WXLOWIN_MENU_LARGER
:
1272 m_llist
->SetFontLarger(); RequestUpdate(); break;
1273 case WXLOWIN_MENU_SMALLER
:
1274 m_llist
->SetFontSmaller(); RequestUpdate(); break;
1275 case WXLOWIN_MENU_UNDERLINE
:
1276 m_llist
->ToggleFontUnderline(); RequestUpdate(); break;
1277 case WXLOWIN_MENU_BOLD
:
1278 m_llist
->ToggleFontWeight(); RequestUpdate(); break;
1279 case WXLOWIN_MENU_ITALICS
:
1280 m_llist
->ToggleFontItalics(); RequestUpdate(); break;
1281 case WXLOWIN_MENU_ROMAN
:
1282 m_llist
->SetFontFamily(wxROMAN
); RequestUpdate(); break;
1283 case WXLOWIN_MENU_TYPEWRITER
:
1284 m_llist
->SetFontFamily(wxFIXED
); RequestUpdate(); break;
1285 case WXLOWIN_MENU_SANSSERIF
:
1286 m_llist
->SetFontFamily(wxSWISS
); RequestUpdate(); break;
1290 // ----------------------------------------------------------------------------
1292 // ----------------------------------------------------------------------------
1295 wxLayoutWindow::OnSetFocus(wxFocusEvent
&ev
)
1299 RequestUpdate(); // cursor must change
1303 wxLayoutWindow::OnKillFocus(wxFocusEvent
&ev
)
1305 m_HaveFocus
= false;
1307 RequestUpdate();// cursor must change
1310 // ----------------------------------------------------------------------------
1311 // private functions
1312 // ----------------------------------------------------------------------------
1314 static bool IsDirectionKey(long keyCode
)