1 // Scintilla source code edit control
2 // PlatWX.cxx - implementation of platform facilities on wxWidgets
3 // Copyright 1998-1999 by Neil Hodgson <neilh@scintilla.org>
4 // Robin Dunn <robin@aldunn.com>
5 // The License.txt file describes the conditions under which this software may be distributed.
10 #include <wx/encconv.h>
11 #include <wx/listctrl.h>
12 #include <wx/mstream.h>
14 #include <wx/imaglist.h>
18 #include "wx/stc/stc.h"
22 Point
Point::FromLong(long lpoint
) {
23 return Point(lpoint
& 0xFFFF, lpoint
>> 16);
26 wxRect
wxRectFromPRectangle(PRectangle prc
) {
27 wxRect
r(prc
.left
, prc
.top
,
28 prc
.Width(), prc
.Height());
32 PRectangle
PRectangleFromwxRect(wxRect rc
) {
33 return PRectangle(rc
.GetLeft(), rc
.GetTop(),
34 rc
.GetRight()+1, rc
.GetBottom()+1);
37 wxColour
wxColourFromCA(const ColourAllocated
& ca
) {
38 ColourDesired
cd(ca
.AsLong());
39 return wxColour((unsigned char)cd
.GetRed(),
40 (unsigned char)cd
.GetGreen(),
41 (unsigned char)cd
.GetBlue());
44 //----------------------------------------------------------------------
48 allowRealization
= false;
55 void Palette::Release() {
59 // This method either adds a colour to the list of wanted colours (want==true)
60 // or retrieves the allocated colour back to the ColourPair.
61 // This is one method to make it easier to keep the code for wanting and retrieving in sync.
62 void Palette::WantFind(ColourPair
&cp
, bool want
) {
64 for (int i
=0; i
< used
; i
++) {
65 if (entries
[i
].desired
== cp
.desired
)
69 if (used
< numEntries
) {
70 entries
[used
].desired
= cp
.desired
;
71 entries
[used
].allocated
.Set(cp
.desired
.AsLong());
75 for (int i
=0; i
< used
; i
++) {
76 if (entries
[i
].desired
== cp
.desired
) {
77 cp
.allocated
= entries
[i
].allocated
;
81 cp
.allocated
.Set(cp
.desired
.AsLong());
85 void Palette::Allocate(Window
&) {
86 if (allowRealization
) {
91 //----------------------------------------------------------------------
101 void Font::Create(const char *faceName
, int characterSet
, int size
, bool bold
, bool italic
, bool extraFontFlag
) {
105 // The minus one is done because since Scintilla uses SC_SHARSET_DEFAULT
106 // internally and we need to have wxFONENCODING_DEFAULT == SC_SHARSET_DEFAULT
107 // so we adjust the encoding before passing it to Scintilla. See also
108 // wxStyledTextCtrl::StyleSetCharacterSet
109 wxFontEncoding encoding
= (wxFontEncoding
)(characterSet
-1);
111 wxFontEncodingArray ea
= wxEncodingConverter::GetPlatformEquivalents(encoding
);
115 wxFont
* font
= new wxFont(size
,
117 italic
? wxITALIC
: wxNORMAL
,
118 bold
? wxBOLD
: wxNORMAL
,
122 font
->SetNoAntiAliasing(!extraFontFlag
);
127 void Font::Release() {
133 //----------------------------------------------------------------------
135 class SurfaceImpl
: public Surface
{
148 virtual void Init(WindowID wid
);
149 virtual void Init(SurfaceID sid
, WindowID wid
);
150 virtual void InitPixMap(int width
, int height
, Surface
*surface_
, WindowID wid
);
152 virtual void Release();
153 virtual bool Initialised();
154 virtual void PenColour(ColourAllocated fore
);
155 virtual int LogPixelsY();
156 virtual int DeviceHeightFont(int points
);
157 virtual void MoveTo(int x_
, int y_
);
158 virtual void LineTo(int x_
, int y_
);
159 virtual void Polygon(Point
*pts
, int npts
, ColourAllocated fore
, ColourAllocated back
);
160 virtual void RectangleDraw(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
);
161 virtual void FillRectangle(PRectangle rc
, ColourAllocated back
);
162 virtual void FillRectangle(PRectangle rc
, Surface
&surfacePattern
);
163 virtual void RoundedRectangle(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
);
164 virtual void Ellipse(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
);
165 virtual void Copy(PRectangle rc
, Point from
, Surface
&surfaceSource
);
167 virtual void DrawTextNoClip(PRectangle rc
, Font
&font_
, int ybase
, const char *s
, int len
, ColourAllocated fore
, ColourAllocated back
);
168 virtual void DrawTextClipped(PRectangle rc
, Font
&font_
, int ybase
, const char *s
, int len
, ColourAllocated fore
, ColourAllocated back
);
169 virtual void DrawTextTransparent(PRectangle rc
, Font
&font_
, int ybase
, const char *s
, int len
, ColourAllocated fore
);
170 virtual void MeasureWidths(Font
&font_
, const char *s
, int len
, int *positions
);
171 virtual int WidthText(Font
&font_
, const char *s
, int len
);
172 virtual int WidthChar(Font
&font_
, char ch
);
173 virtual int Ascent(Font
&font_
);
174 virtual int Descent(Font
&font_
);
175 virtual int InternalLeading(Font
&font_
);
176 virtual int ExternalLeading(Font
&font_
);
177 virtual int Height(Font
&font_
);
178 virtual int AverageCharWidth(Font
&font_
);
180 virtual int SetPalette(Palette
*pal
, bool inBackGround
);
181 virtual void SetClip(PRectangle rc
);
182 virtual void FlushCachedState();
184 virtual void SetUnicodeMode(bool unicodeMode_
);
185 virtual void SetDBCSMode(int codePage
);
187 void BrushColour(ColourAllocated back
);
188 void SetFont(Font
&font_
);
193 SurfaceImpl::SurfaceImpl() :
194 hdc(0), hdcOwned(0), bitmap(0),
195 x(0), y(0), unicodeMode(0)
198 SurfaceImpl::~SurfaceImpl() {
202 void SurfaceImpl::Init(WindowID wid
) {
205 hdc
= new wxMemoryDC();
208 // On Mac and GTK the DC is not really valid until it has a bitmap
209 // selected into it. So instead of just creating the DC with no bitmap,
210 // go ahead and give it one.
211 InitPixMap(1,1,NULL
,wid
);
215 void SurfaceImpl::Init(SurfaceID hdc_
, WindowID
) {
220 void SurfaceImpl::InitPixMap(int width
, int height
, Surface
*WXUNUSED(surface_
), WindowID
) {
222 hdc
= new wxMemoryDC();
224 if (width
< 1) width
= 1;
225 if (height
< 1) height
= 1;
226 bitmap
= new wxBitmap(width
, height
);
227 ((wxMemoryDC
*)hdc
)->SelectObject(*bitmap
);
231 void SurfaceImpl::Release() {
233 ((wxMemoryDC
*)hdc
)->SelectObject(wxNullBitmap
);
245 bool SurfaceImpl::Initialised() {
250 void SurfaceImpl::PenColour(ColourAllocated fore
) {
251 hdc
->SetPen(wxPen(wxColourFromCA(fore
), 1, wxSOLID
));
254 void SurfaceImpl::BrushColour(ColourAllocated back
) {
255 hdc
->SetBrush(wxBrush(wxColourFromCA(back
), wxSOLID
));
258 void SurfaceImpl::SetFont(Font
&font_
) {
260 hdc
->SetFont(*((wxFont
*)font_
.GetID()));
264 int SurfaceImpl::LogPixelsY() {
265 return hdc
->GetPPI().y
;
268 int SurfaceImpl::DeviceHeightFont(int points
) {
272 void SurfaceImpl::MoveTo(int x_
, int y_
) {
277 void SurfaceImpl::LineTo(int x_
, int y_
) {
278 hdc
->DrawLine(x
,y
, x_
,y_
);
283 void SurfaceImpl::Polygon(Point
*pts
, int npts
, ColourAllocated fore
, ColourAllocated back
) {
286 hdc
->DrawPolygon(npts
, (wxPoint
*)pts
);
289 void SurfaceImpl::RectangleDraw(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
) {
292 hdc
->DrawRectangle(wxRectFromPRectangle(rc
));
295 void SurfaceImpl::FillRectangle(PRectangle rc
, ColourAllocated back
) {
297 hdc
->SetPen(*wxTRANSPARENT_PEN
);
298 hdc
->DrawRectangle(wxRectFromPRectangle(rc
));
301 void SurfaceImpl::FillRectangle(PRectangle rc
, Surface
&surfacePattern
) {
303 if (((SurfaceImpl
&)surfacePattern
).bitmap
)
304 br
= wxBrush(*((SurfaceImpl
&)surfacePattern
).bitmap
);
305 else // Something is wrong so display in red
306 br
= wxBrush(*wxRED
, wxSOLID
);
307 hdc
->SetPen(*wxTRANSPARENT_PEN
);
309 hdc
->DrawRectangle(wxRectFromPRectangle(rc
));
312 void SurfaceImpl::RoundedRectangle(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
) {
315 hdc
->DrawRoundedRectangle(wxRectFromPRectangle(rc
), 4);
318 void SurfaceImpl::Ellipse(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
) {
321 hdc
->DrawEllipse(wxRectFromPRectangle(rc
));
324 void SurfaceImpl::Copy(PRectangle rc
, Point from
, Surface
&surfaceSource
) {
325 wxRect r
= wxRectFromPRectangle(rc
);
326 hdc
->Blit(r
.x
, r
.y
, r
.width
, r
.height
,
327 ((SurfaceImpl
&)surfaceSource
).hdc
,
328 from
.x
, from
.y
, wxCOPY
);
331 void SurfaceImpl::DrawTextNoClip(PRectangle rc
, Font
&font
, int ybase
,
332 const char *s
, int len
,
333 ColourAllocated fore
, ColourAllocated back
) {
335 hdc
->SetTextForeground(wxColourFromCA(fore
));
336 hdc
->SetTextBackground(wxColourFromCA(back
));
337 FillRectangle(rc
, back
);
339 // ybase is where the baseline should be, but wxWin uses the upper left
340 // corner, so I need to calculate the real position for the text...
341 hdc
->DrawText(stc2wx(s
, len
), rc
.left
, ybase
- font
.ascent
);
344 void SurfaceImpl::DrawTextClipped(PRectangle rc
, Font
&font
, int ybase
,
345 const char *s
, int len
,
346 ColourAllocated fore
, ColourAllocated back
) {
348 hdc
->SetTextForeground(wxColourFromCA(fore
));
349 hdc
->SetTextBackground(wxColourFromCA(back
));
350 FillRectangle(rc
, back
);
351 hdc
->SetClippingRegion(wxRectFromPRectangle(rc
));
353 // see comments above
354 hdc
->DrawText(stc2wx(s
, len
), rc
.left
, ybase
- font
.ascent
);
355 hdc
->DestroyClippingRegion();
359 void SurfaceImpl::DrawTextTransparent(PRectangle rc
, Font
&font
, int ybase
,
360 const char *s
, int len
,
361 ColourAllocated fore
) {
364 hdc
->SetTextForeground(wxColourFromCA(fore
));
365 hdc
->SetBackgroundMode(wxTRANSPARENT
);
367 // ybase is where the baseline should be, but wxWin uses the upper left
368 // corner, so I need to calculate the real position for the text...
369 hdc
->DrawText(stc2wx(s
, len
), rc
.left
, ybase
- font
.ascent
);
371 hdc
->SetBackgroundMode(wxSOLID
);
375 void SurfaceImpl::MeasureWidths(Font
&font
, const char *s
, int len
, int *positions
) {
377 wxString str
= stc2wx(s
, len
);
382 hdc
->GetPartialTextExtents(str
, tpos
);
385 // Map the widths for UCS-2 characters back to the UTF-8 input string
386 // NOTE: I don't think this is right for when sizeof(wxChar) > 2, ie wxGTK2
387 // so figure it out and fix it!
390 while ((int)i
< len
) {
391 unsigned char uch
= (unsigned char)s
[i
];
392 positions
[i
++] = tpos
[ui
];
394 if (uch
< (0x80 + 0x40 + 0x20)) {
395 positions
[i
++] = tpos
[ui
];
397 positions
[i
++] = tpos
[ui
];
398 positions
[i
++] = tpos
[ui
];
405 // If not unicode then just use the widths we have
407 std::copy(tpos
.begin(), tpos
.end(), positions
);
409 memcpy(positions
, tpos
.begin(), len
* sizeof(int));
415 int SurfaceImpl::WidthText(Font
&font
, const char *s
, int len
) {
420 hdc
->GetTextExtent(stc2wx(s
, len
), &w
, &h
);
425 int SurfaceImpl::WidthChar(Font
&font
, char ch
) {
429 char s
[2] = { ch
, 0 };
431 hdc
->GetTextExtent(stc2wx(s
, 1), &w
, &h
);
435 #define EXTENT_TEST wxT(" `~!@#$%^&*()-_=+\\|[]{};:\"\'<,>.?/1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
437 int SurfaceImpl::Ascent(Font
&font
) {
440 hdc
->GetTextExtent(EXTENT_TEST
, &w
, &h
, &d
, &e
);
445 int SurfaceImpl::Descent(Font
&font
) {
448 hdc
->GetTextExtent(EXTENT_TEST
, &w
, &h
, &d
, &e
);
452 int SurfaceImpl::InternalLeading(Font
&WXUNUSED(font
)) {
456 int SurfaceImpl::ExternalLeading(Font
&font
) {
459 hdc
->GetTextExtent(EXTENT_TEST
, &w
, &h
, &d
, &e
);
463 int SurfaceImpl::Height(Font
&font
) {
465 return hdc
->GetCharHeight() + 1;
468 int SurfaceImpl::AverageCharWidth(Font
&font
) {
470 return hdc
->GetCharWidth();
473 int SurfaceImpl::SetPalette(Palette
*WXUNUSED(pal
), bool WXUNUSED(inBackGround
)) {
477 void SurfaceImpl::SetClip(PRectangle rc
) {
478 hdc
->SetClippingRegion(wxRectFromPRectangle(rc
));
481 void SurfaceImpl::FlushCachedState() {
484 void SurfaceImpl::SetUnicodeMode(bool unicodeMode_
) {
485 unicodeMode
=unicodeMode_
;
488 void SurfaceImpl::SetDBCSMode(int WXUNUSED(codePage
)) {
489 // dbcsMode = codePage == SC_CP_DBCS;
493 Surface
*Surface::Allocate() {
494 return new SurfaceImpl
;
498 //----------------------------------------------------------------------
501 inline wxWindow
* GETWIN(WindowID id
) { return (wxWindow
*)id
; }
506 void Window::Destroy() {
509 GETWIN(id
)->Destroy();
514 bool Window::HasFocus() {
515 return wxWindow::FindFocus() == GETWIN(id
);
518 PRectangle
Window::GetPosition() {
519 if (! id
) return PRectangle();
520 wxRect
rc(GETWIN(id
)->GetPosition(), GETWIN(id
)->GetSize());
521 return PRectangleFromwxRect(rc
);
524 void Window::SetPosition(PRectangle rc
) {
525 wxRect r
= wxRectFromPRectangle(rc
);
526 GETWIN(id
)->SetSize(r
);
529 void Window::SetPositionRelative(PRectangle rc
, Window
) {
530 SetPosition(rc
); // ????
533 PRectangle
Window::GetClientPosition() {
534 if (! id
) return PRectangle();
535 wxSize sz
= GETWIN(id
)->GetClientSize();
536 return PRectangle(0, 0, sz
.x
, sz
.y
);
539 void Window::Show(bool show
) {
540 GETWIN(id
)->Show(show
);
543 void Window::InvalidateAll() {
544 GETWIN(id
)->Refresh(false);
548 void Window::InvalidateRectangle(PRectangle rc
) {
549 wxRect r
= wxRectFromPRectangle(rc
);
550 GETWIN(id
)->Refresh(false, &r
);
554 void Window::SetFont(Font
&font
) {
555 GETWIN(id
)->SetFont(*((wxFont
*)font
.GetID()));
558 void Window::SetCursor(Cursor curs
) {
563 cursorId
= wxCURSOR_IBEAM
;
566 cursorId
= wxCURSOR_ARROW
;
569 cursorId
= wxCURSOR_ARROW
; // ** no up arrow... wxCURSOR_UPARROW;
572 cursorId
= wxCURSOR_WAIT
;
575 cursorId
= wxCURSOR_SIZEWE
;
578 cursorId
= wxCURSOR_SIZENS
;
580 case cursorReverseArrow
:
581 cursorId
= wxCURSOR_RIGHT_ARROW
;
584 cursorId
= wxCURSOR_HAND
;
587 cursorId
= wxCURSOR_ARROW
;
591 wxCursor wc
= wxStockCursor(cursorId
) ;
593 wxCursor wc
= wxCursor(cursorId
) ;
595 GETWIN(id
)->SetCursor(wc
);
599 void Window::SetTitle(const char *s
) {
600 GETWIN(id
)->SetTitle(stc2wx(s
));
604 //----------------------------------------------------------------------
605 // Helper classes for ListBox
608 // This is a simple subclass of wxListView that just resets focus to the
609 // parent when it gets it.
610 class wxSTCListBox
: public wxListView
{
612 wxSTCListBox(wxWindow
* parent
, wxWindowID id
,
613 const wxPoint
& pos
, const wxSize
& size
,
618 Hide(); // don't flicker as we move it around...
620 Create(parent
, id
, pos
, size
, style
);
624 void OnFocus(wxFocusEvent
& event
) {
625 GetParent()->SetFocus();
629 void OnKillFocus(wxFocusEvent
& WXUNUSED(event
)) {
630 // Do nothing. Prevents base class from resetting the colors...
634 // For some reason I don't understand yet the focus doesn't really leave
635 // the listbox like it should, so if we get any events feed them back to
637 void OnKeyDown(wxKeyEvent
& event
) {
638 GetGrandParent()->GetEventHandler()->ProcessEvent(event
);
640 void OnChar(wxKeyEvent
& event
) {
641 GetGrandParent()->GetEventHandler()->ProcessEvent(event
);
644 // And we need to force the focus back when being destroyed
646 GetGrandParent()->SetFocus();
651 DECLARE_EVENT_TABLE()
654 BEGIN_EVENT_TABLE(wxSTCListBox
, wxListView
)
655 EVT_SET_FOCUS( wxSTCListBox::OnFocus
)
656 EVT_KILL_FOCUS(wxSTCListBox::OnKillFocus
)
658 EVT_KEY_DOWN( wxSTCListBox::OnKeyDown
)
659 EVT_CHAR( wxSTCListBox::OnChar
)
665 #if wxUSE_POPUPWIN //-----------------------------------
666 #include <wx/popupwin.h>
670 // TODO: Refactor these two classes to have a common base (or a mix-in) to get
671 // rid of the code duplication. (Either that or convince somebody to
672 // implement wxPopupWindow for the Mac!!)
674 // In the meantime, be careful to duplicate any changes as needed...
677 // A popup window to place the wxSTCListBox upon
678 class wxSTCListBoxWin
: public wxPopupWindow
682 CallBackAction doubleClickAction
;
683 void* doubleClickActionData
;
685 wxSTCListBoxWin(wxWindow
* parent
, wxWindowID id
) :
686 wxPopupWindow(parent
, wxBORDER_NONE
)
688 SetBackgroundColour(*wxBLACK
); // for our simple border
690 lv
= new wxSTCListBox(parent
, id
, wxDefaultPosition
, wxDefaultSize
,
691 wxLC_REPORT
| wxLC_SINGLE_SEL
| wxLC_NO_HEADER
| wxBORDER_NONE
);
692 lv
->SetCursor(wxCursor(wxCURSOR_ARROW
));
693 lv
->InsertColumn(0, wxEmptyString
);
694 lv
->InsertColumn(1, wxEmptyString
);
696 // NOTE: We need to fool the wxListView into thinking that it has the
697 // focus so it will use the normal selection colour and will look
698 // "right" to the user. But since the wxPopupWindow or its children
699 // can't receive focus then we have to pull a fast one and temporarily
700 // parent the listctrl on the STC window and then call SetFocus and
701 // then reparent it back to the popup.
710 // Set position in client coords
711 virtual void DoSetSize(int x
, int y
,
712 int width
, int height
,
713 int sizeFlags
= wxSIZE_AUTO
) {
714 if (x
!= wxDefaultCoord
) {
715 GetParent()->ClientToScreen(&x
, NULL
);
717 if (y
!= wxDefaultCoord
) {
718 GetParent()->ClientToScreen(NULL
, &y
);
720 wxPopupWindow::DoSetSize(x
, y
, width
, height
, sizeFlags
);
723 // return position as if it were in client coords
724 virtual void DoGetPosition( int *x
, int *y
) const {
726 wxPopupWindow::DoGetPosition(&sx
, &sy
);
727 GetParent()->ScreenToClient(&sx
, &sy
);
734 if ( !wxPendingDelete
.Member(this) )
735 wxPendingDelete
.Append(this);
741 wxImageList
* il
= lv
->GetImageList(wxIMAGE_LIST_SMALL
);
744 il
->GetSize(0, w
, h
);
751 void SetDoubleClickAction(CallBackAction action
, void *data
) {
752 doubleClickAction
= action
;
753 doubleClickActionData
= data
;
757 void OnFocus(wxFocusEvent
& event
) {
758 GetParent()->SetFocus();
762 void OnSize(wxSizeEvent
& event
) {
764 wxSize sz
= GetSize();
767 lv
->SetSize(1, 1, sz
.x
, sz
.y
);
768 // reset the column widths
769 lv
->SetColumnWidth(0, IconWidth()+4);
770 lv
->SetColumnWidth(1, sz
.x
- 2 - lv
->GetColumnWidth(0) -
771 wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
));
775 void OnActivate(wxListEvent
& WXUNUSED(event
)) {
776 doubleClickAction(doubleClickActionData
);
779 wxListView
* GetLB() { return lv
; }
782 DECLARE_EVENT_TABLE()
786 BEGIN_EVENT_TABLE(wxSTCListBoxWin
, wxPopupWindow
)
787 EVT_SET_FOCUS ( wxSTCListBoxWin::OnFocus
)
788 EVT_SIZE ( wxSTCListBoxWin::OnSize
)
789 EVT_LIST_ITEM_ACTIVATED(wxID_ANY
, wxSTCListBoxWin::OnActivate
)
794 #else // wxUSE_POPUPWIN -----------------------------------
796 // A normal window to place the wxSTCListBox upon.
797 class wxSTCListBoxWin
: public wxWindow
{
800 CallBackAction doubleClickAction
;
801 void* doubleClickActionData
;
803 wxSTCListBoxWin(wxWindow
* parent
, wxWindowID id
) :
804 wxWindow(parent
, id
, wxDefaultPosition
, wxSize(0,0), wxSIMPLE_BORDER
)
807 lv
= new wxSTCListBox(this, id
, wxDefaultPosition
, wxDefaultSize
,
808 wxLC_REPORT
| wxLC_SINGLE_SEL
| wxLC_NO_HEADER
| wxNO_BORDER
);
809 lv
->SetCursor(wxCursor(wxCURSOR_ARROW
));
810 lv
->InsertColumn(0, wxEmptyString
);
811 lv
->InsertColumn(1, wxEmptyString
);
813 // Eventhough we immediately reset the focus to the parent, this helps
814 // things to look right...
821 // On OSX and (possibly others) there can still be pending
822 // messages/events for the list control when Scintilla wants to
823 // close it, so do a pending delete of it instead of destroying
827 // The bottom edge of this window is not getting properly
828 // refreshed upon deletion, so help it out...
829 wxWindow
* p
= GetParent();
830 wxRect
r(GetPosition(), GetSize());
831 r
.SetHeight(r
.GetHeight()+1);
832 p
->Refresh(false, &r
);
834 if ( !wxPendingDelete
.Member(this) )
835 wxPendingDelete
.Append(this);
841 wxImageList
* il
= lv
->GetImageList(wxIMAGE_LIST_SMALL
);
844 il
->GetSize(0, w
, h
);
851 void SetDoubleClickAction(CallBackAction action
, void *data
) {
852 doubleClickAction
= action
;
853 doubleClickActionData
= data
;
857 void OnFocus(wxFocusEvent
& event
) {
858 GetParent()->SetFocus();
862 void OnSize(wxSizeEvent
& event
) {
864 wxSize sz
= GetClientSize();
866 // reset the column widths
867 lv
->SetColumnWidth(0, IconWidth()+4);
868 lv
->SetColumnWidth(1, sz
.x
- 2 - lv
->GetColumnWidth(0) -
869 wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
));
874 virtual bool Show(bool show
= true) {
875 bool rv
= wxWindow::Show(show
);
876 GetParent()->Refresh(false);
881 void OnActivate(wxListEvent
& WXUNUSED(event
)) {
882 doubleClickAction(doubleClickActionData
);
885 wxListView
* GetLB() { return lv
; }
888 DECLARE_EVENT_TABLE()
892 BEGIN_EVENT_TABLE(wxSTCListBoxWin
, wxWindow
)
893 EVT_SET_FOCUS ( wxSTCListBoxWin::OnFocus
)
894 EVT_SIZE ( wxSTCListBoxWin::OnSize
)
895 EVT_LIST_ITEM_ACTIVATED(wxID_ANY
, wxSTCListBoxWin::OnActivate
)
898 #endif // wxUSE_POPUPWIN -----------------------------------
901 inline wxSTCListBoxWin
* GETLBW(WindowID win
) {
902 return ((wxSTCListBoxWin
*)win
);
905 inline wxListView
* GETLB(WindowID win
) {
906 return GETLBW(win
)->GetLB();
909 //----------------------------------------------------------------------
911 class ListBoxImpl
: public ListBox
{
915 int desiredVisibleRows
;
918 wxImageList
* imgList
;
919 wxArrayInt
* imgTypeMap
;
925 virtual void SetFont(Font
&font
);
926 virtual void Create(Window
&parent
, int ctrlID
, int lineHeight_
, bool unicodeMode_
);
927 virtual void SetAverageCharWidth(int width
);
928 virtual void SetVisibleRows(int rows
);
929 virtual PRectangle
GetDesiredRect();
930 virtual int CaretFromEdge();
931 virtual void Clear();
932 virtual void Append(char *s
, int type
= -1);
933 virtual int Length();
934 virtual void Select(int n
);
935 virtual int GetSelection();
936 virtual int Find(const char *prefix
);
937 virtual void GetValue(int n
, char *value
, int len
);
938 virtual void RegisterImage(int type
, const char *xpm_data
);
939 virtual void ClearRegisteredImages();
940 virtual void SetDoubleClickAction(CallBackAction
, void *);
945 ListBoxImpl::ListBoxImpl()
946 : lineHeight(10), unicodeMode(false),
947 desiredVisibleRows(5), aveCharWidth(8), maxStrWidth(0),
948 imgList(NULL
), imgTypeMap(NULL
)
952 ListBoxImpl::~ListBoxImpl() {
964 void ListBoxImpl::SetFont(Font
&font
) {
965 GETLB(id
)->SetFont(*((wxFont
*)font
.GetID()));
969 void ListBoxImpl::Create(Window
&parent
, int ctrlID
, int lineHeight_
, bool unicodeMode_
) {
970 lineHeight
= lineHeight_
;
971 unicodeMode
= unicodeMode_
;
973 id
= new wxSTCListBoxWin(GETWIN(parent
.GetID()), ctrlID
);
975 GETLB(id
)->SetImageList(imgList
, wxIMAGE_LIST_SMALL
);
979 void ListBoxImpl::SetAverageCharWidth(int width
) {
980 aveCharWidth
= width
;
984 void ListBoxImpl::SetVisibleRows(int rows
) {
985 desiredVisibleRows
= rows
;
989 PRectangle
ListBoxImpl::GetDesiredRect() {
990 // wxListCtrl doesn't have a DoGetBestSize, so instead we kept track of
991 // the max size in Append and calculate it here...
992 int maxw
= maxStrWidth
;
995 // give it a default if there are no lines, and/or add a bit more
996 if (maxw
== 0) maxw
= 100;
997 maxw
+= aveCharWidth
* 3 +
998 GETLBW(id
)->IconWidth() + wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
1002 // estimate a desired height
1003 int count
= GETLB(id
)->GetItemCount();
1006 GETLB(id
)->GetItemRect(0, rect
);
1007 maxh
= count
* rect
.GetHeight();
1008 if (maxh
> 140) // TODO: Use desiredVisibleRows??
1011 // Try to make the size an exact multiple of some number of lines
1012 int lines
= maxh
/ rect
.GetHeight();
1013 maxh
= (lines
+ 1) * rect
.GetHeight() + 2;
1027 int ListBoxImpl::CaretFromEdge() {
1028 return 4 + GETLBW(id
)->IconWidth();
1032 void ListBoxImpl::Clear() {
1033 GETLB(id
)->DeleteAllItems();
1037 void ListBoxImpl::Append(char *s
, int type
) {
1038 wxString text
= stc2wx(s
);
1039 long count
= GETLB(id
)->GetItemCount();
1040 long itemID
= GETLB(id
)->InsertItem(count
, wxEmptyString
);
1041 GETLB(id
)->SetItem(itemID
, 1, text
);
1043 GETLB(id
)->GetTextExtent(text
, &itemWidth
, NULL
);
1044 maxStrWidth
= wxMax(maxStrWidth
, itemWidth
);
1046 wxCHECK_RET(imgTypeMap
, wxT("Unexpected NULL imgTypeMap"));
1047 long idx
= imgTypeMap
->Item(type
);
1048 GETLB(id
)->SetItemImage(itemID
, idx
, idx
);
1053 int ListBoxImpl::Length() {
1054 return GETLB(id
)->GetItemCount();
1058 void ListBoxImpl::Select(int n
) {
1064 GETLB(id
)->Focus(n
);
1065 GETLB(id
)->Select(n
, select
);
1069 int ListBoxImpl::GetSelection() {
1070 return GETLB(id
)->GetFirstSelected();
1074 int ListBoxImpl::Find(const char *WXUNUSED(prefix
)) {
1080 void ListBoxImpl::GetValue(int n
, char *value
, int len
) {
1084 item
.SetMask(wxLIST_MASK_TEXT
);
1085 GETLB(id
)->GetItem(item
);
1086 strncpy(value
, wx2stc(item
.GetText()), len
);
1087 value
[len
-1] = '\0';
1091 void ListBoxImpl::RegisterImage(int type
, const char *xpm_data
) {
1092 wxMemoryInputStream
stream(xpm_data
, strlen(xpm_data
)+1);
1093 wxImage
img(stream
, wxBITMAP_TYPE_XPM
);
1097 // assumes all images are the same size
1098 imgList
= new wxImageList(bmp
.GetWidth(), bmp
.GetHeight(), true);
1099 imgTypeMap
= new wxArrayInt
;
1102 int idx
= imgList
->Add(bmp
);
1104 // do we need to extend the mapping array?
1105 wxArrayInt
& itm
= *imgTypeMap
;
1106 if ( itm
.GetCount() < (size_t)type
+1)
1107 itm
.Add(-1, type
- itm
.GetCount() + 1);
1109 // Add an item that maps type to the image index
1113 void ListBoxImpl::ClearRegisteredImages() {
1123 GETLB(id
)->SetImageList(NULL
, wxIMAGE_LIST_SMALL
);
1127 void ListBoxImpl::SetDoubleClickAction(CallBackAction action
, void *data
) {
1128 GETLBW(id
)->SetDoubleClickAction(action
, data
);
1133 ListBox::ListBox() {
1136 ListBox::~ListBox() {
1139 ListBox
*ListBox::Allocate() {
1140 return new ListBoxImpl();
1143 //----------------------------------------------------------------------
1145 Menu::Menu() : id(0) {
1148 void Menu::CreatePopUp() {
1153 void Menu::Destroy() {
1159 void Menu::Show(Point pt
, Window
&w
) {
1160 GETWIN(w
.GetID())->PopupMenu((wxMenu
*)id
, pt
.x
- 4, pt
.y
);
1164 //----------------------------------------------------------------------
1166 DynamicLibrary
*DynamicLibrary::Load(const char *WXUNUSED(modulePath
)) {
1167 wxFAIL_MSG(wxT("Dynamic lexer loading not implemented yet"));
1171 //----------------------------------------------------------------------
1173 ColourDesired
Platform::Chrome() {
1175 c
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
1176 return ColourDesired(c
.Red(), c
.Green(), c
.Blue());
1179 ColourDesired
Platform::ChromeHighlight() {
1181 c
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT
);
1182 return ColourDesired(c
.Red(), c
.Green(), c
.Blue());
1185 const char *Platform::DefaultFont() {
1186 static char buf
[128];
1187 strcpy(buf
, wxNORMAL_FONT
->GetFaceName().mbc_str());
1191 int Platform::DefaultFontSize() {
1192 return wxNORMAL_FONT
->GetPointSize();
1195 unsigned int Platform::DoubleClickTime() {
1196 return 500; // **** ::GetDoubleClickTime();
1199 bool Platform::MouseButtonBounce() {
1202 void Platform::DebugDisplay(const char *s
) {
1203 wxLogDebug(stc2wx(s
));
1206 bool Platform::IsKeyDown(int WXUNUSED(key
)) {
1207 return false; // I don't think we'll need this.
1210 long Platform::SendScintilla(WindowID w
,
1212 unsigned long wParam
,
1215 wxStyledTextCtrl
* stc
= (wxStyledTextCtrl
*)w
;
1216 return stc
->SendMsg(msg
, wParam
, lParam
);
1219 long Platform::SendScintillaPointer(WindowID w
,
1221 unsigned long wParam
,
1224 wxStyledTextCtrl
* stc
= (wxStyledTextCtrl
*)w
;
1225 return stc
->SendMsg(msg
, wParam
, (long)lParam
);
1229 // These are utility functions not really tied to a platform
1231 int Platform::Minimum(int a
, int b
) {
1238 int Platform::Maximum(int a
, int b
) {
1247 void Platform::DebugPrintf(const char *format
, ...) {
1251 va_start(pArguments
, format
);
1252 vsprintf(buffer
,format
,pArguments
);
1254 Platform::DebugDisplay(buffer
);
1259 static bool assertionPopUps
= true;
1261 bool Platform::ShowAssertionPopUps(bool assertionPopUps_
) {
1262 bool ret
= assertionPopUps
;
1263 assertionPopUps
= assertionPopUps_
;
1267 void Platform::Assert(const char *c
, const char *file
, int line
) {
1269 sprintf(buffer
, "Assertion [%s] failed at %s %d", c
, file
, line
);
1270 if (assertionPopUps
) {
1272 wxMessageBox(stc2wx(buffer
),
1273 wxT("Assertion failure"),
1274 wxICON_HAND
| wxOK
);
1275 // if (idButton == IDRETRY) {
1277 // } else if (idButton == IDIGNORE) {
1283 strcat(buffer
, "\r\n");
1284 Platform::DebugDisplay(buffer
);
1290 int Platform::Clamp(int val
, int minVal
, int maxVal
) {
1299 bool Platform::IsDBCSLeadByte(int WXUNUSED(codePage
), char WXUNUSED(ch
)) {
1303 int Platform::DBCSCharLength(int WXUNUSED(codePage
), const char *WXUNUSED(s
)) {
1307 int Platform::DBCSCharMaxLength() {
1312 //----------------------------------------------------------------------
1314 ElapsedTime::ElapsedTime() {
1318 double ElapsedTime::Duration(bool reset
) {
1319 double result
= wxGetElapsedTime(reset
);
1325 //----------------------------------------------------------------------
1329 #include "UniConversion.h"
1331 // Convert using Scintilla's functions instead of wx's, Scintilla's are more
1332 // forgiving and won't assert...
1334 wxString
stc2wx(const char* str
, size_t len
)
1337 return wxEmptyString
;
1339 size_t wclen
= UCS2Length(str
, len
);
1340 wxWCharBuffer
buffer(wclen
+1);
1342 size_t actualLen
= UCS2FromUTF8(str
, len
, buffer
.data(), wclen
+1);
1343 return wxString(buffer
.data(), actualLen
);
1348 wxString
stc2wx(const char* str
)
1350 return stc2wx(str
, strlen(str
));
1354 const wxWX2MBbuf
wx2stc(const wxString
& str
)
1356 const wchar_t* wcstr
= str
.c_str();
1357 size_t wclen
= str
.length();
1358 size_t len
= UTF8Length(wcstr
, wclen
);
1360 wxCharBuffer
buffer(len
+1);
1361 UTF8FromUCS2(wcstr
, wclen
, buffer
.data(), len
);
1363 // TODO check NULL termination!!