1 // Scintilla source code edit control
2 // PlatWX.cxx - implementation of platform facilities on wxWindows
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>
15 #include "wx/stc/stc.h"
23 Point
Point::FromLong(long lpoint
) {
24 return Point(lpoint
& 0xFFFF, lpoint
>> 16);
27 wxRect
wxRectFromPRectangle(PRectangle prc
) {
28 wxRect
rc(prc
.left
, prc
.top
,
29 prc
.right
-prc
.left
, prc
.bottom
-prc
.top
);
33 PRectangle
PRectangleFromwxRect(wxRect rc
) {
34 return PRectangle(rc
.GetLeft(), rc
.GetTop(),
35 rc
.GetRight()+1, rc
.GetBottom()+1);
38 wxColour
wxColourFromCA(const ColourAllocated
& ca
) {
39 ColourDesired
cd(ca
.AsLong());
40 return wxColour(cd
.GetRed(), cd
.GetGreen(), cd
.GetBlue());
43 //----------------------------------------------------------------------
47 allowRealization
= false;
54 void Palette::Release() {
58 // This method either adds a colour to the list of wanted colours (want==true)
59 // or retrieves the allocated colour back to the ColourPair.
60 // This is one method to make it easier to keep the code for wanting and retrieving in sync.
61 void Palette::WantFind(ColourPair
&cp
, bool want
) {
63 for (int i
=0; i
< used
; i
++) {
64 if (entries
[i
].desired
== cp
.desired
)
68 if (used
< numEntries
) {
69 entries
[used
].desired
= cp
.desired
;
70 entries
[used
].allocated
.Set(cp
.desired
.AsLong());
74 for (int i
=0; i
< used
; i
++) {
75 if (entries
[i
].desired
== cp
.desired
) {
76 cp
.allocated
= entries
[i
].allocated
;
80 cp
.allocated
.Set(cp
.desired
.AsLong());
84 void Palette::Allocate(Window
&) {
85 if (allowRealization
) {
90 //----------------------------------------------------------------------
100 void Font::Create(const char *faceName
, int characterSet
, int size
, bool bold
, bool italic
) {
101 wxFontEncoding encoding
;
105 switch (characterSet
) {
107 case wxSTC_CHARSET_ANSI
:
108 case wxSTC_CHARSET_DEFAULT
:
109 encoding
= wxFONTENCODING_DEFAULT
;
112 case wxSTC_CHARSET_BALTIC
:
113 encoding
= wxFONTENCODING_ISO8859_13
;
116 case wxSTC_CHARSET_CHINESEBIG5
:
117 encoding
= wxFONTENCODING_CP950
;
120 case wxSTC_CHARSET_EASTEUROPE
:
121 encoding
= wxFONTENCODING_ISO8859_2
;
124 case wxSTC_CHARSET_GB2312
:
125 encoding
= wxFONTENCODING_CP936
;
128 case wxSTC_CHARSET_GREEK
:
129 encoding
= wxFONTENCODING_ISO8859_7
;
132 case wxSTC_CHARSET_HANGUL
:
133 encoding
= wxFONTENCODING_CP949
;
136 case wxSTC_CHARSET_MAC
:
137 encoding
= wxFONTENCODING_DEFAULT
;
140 case wxSTC_CHARSET_OEM
:
141 encoding
= wxFONTENCODING_DEFAULT
;
144 case wxSTC_CHARSET_RUSSIAN
:
145 encoding
= wxFONTENCODING_KOI8
;
148 case wxSTC_CHARSET_SHIFTJIS
:
149 encoding
= wxFONTENCODING_CP932
;
152 case wxSTC_CHARSET_SYMBOL
:
153 encoding
= wxFONTENCODING_DEFAULT
;
156 case wxSTC_CHARSET_TURKISH
:
157 encoding
= wxFONTENCODING_ISO8859_9
;
160 case wxSTC_CHARSET_JOHAB
:
161 encoding
= wxFONTENCODING_DEFAULT
;
164 case wxSTC_CHARSET_HEBREW
:
165 encoding
= wxFONTENCODING_ISO8859_8
;
168 case wxSTC_CHARSET_ARABIC
:
169 encoding
= wxFONTENCODING_ISO8859_6
;
172 case wxSTC_CHARSET_VIETNAMESE
:
173 encoding
= wxFONTENCODING_DEFAULT
;
176 case wxSTC_CHARSET_THAI
:
177 encoding
= wxFONTENCODING_ISO8859_11
;
181 wxFontEncodingArray ea
= wxEncodingConverter::GetPlatformEquivalents(encoding
);
185 id
= new wxFont(size
,
187 italic
? wxITALIC
: wxNORMAL
,
188 bold
? wxBOLD
: wxNORMAL
,
195 void Font::Release() {
201 //----------------------------------------------------------------------
203 class SurfaceImpl
: public Surface
{
217 void Init(SurfaceID sid
);
218 void InitPixMap(int width
, int height
, Surface
*surface_
);
222 void PenColour(ColourAllocated fore
);
224 int DeviceHeightFont(int points
);
225 void MoveTo(int x_
, int y_
);
226 void LineTo(int x_
, int y_
);
227 void Polygon(Point
*pts
, int npts
, ColourAllocated fore
, ColourAllocated back
);
228 void RectangleDraw(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
);
229 void FillRectangle(PRectangle rc
, ColourAllocated back
);
230 void FillRectangle(PRectangle rc
, Surface
&surfacePattern
);
231 void RoundedRectangle(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
);
232 void Ellipse(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
);
233 void Copy(PRectangle rc
, Point from
, Surface
&surfaceSource
);
235 void DrawTextNoClip(PRectangle rc
, Font
&font_
, int ybase
, const char *s
, int len
, ColourAllocated fore
, ColourAllocated back
);
236 void DrawTextClipped(PRectangle rc
, Font
&font_
, int ybase
, const char *s
, int len
, ColourAllocated fore
, ColourAllocated back
);
237 void MeasureWidths(Font
&font_
, const char *s
, int len
, int *positions
);
238 int WidthText(Font
&font_
, const char *s
, int len
);
239 int WidthChar(Font
&font_
, char ch
);
240 int Ascent(Font
&font_
);
241 int Descent(Font
&font_
);
242 int InternalLeading(Font
&font_
);
243 int ExternalLeading(Font
&font_
);
244 int Height(Font
&font_
);
245 int AverageCharWidth(Font
&font_
);
247 int SetPalette(Palette
*pal
, bool inBackGround
);
248 void SetClip(PRectangle rc
);
249 void FlushCachedState();
251 void SetUnicodeMode(bool unicodeMode_
);
253 void BrushColour(ColourAllocated back
);
254 void SetFont(Font
&font_
);
259 SurfaceImpl::SurfaceImpl() :
260 hdc(0), hdcOwned(0), bitmap(0),
261 x(0), y(0), unicodeMode(0)
264 SurfaceImpl::~SurfaceImpl() {
268 void SurfaceImpl::Release() {
270 ((wxMemoryDC
*)hdc
)->SelectObject(wxNullBitmap
);
282 bool SurfaceImpl::Initialised() {
286 void SurfaceImpl::Init() {
289 hdc
= new wxMemoryDC();
292 // On Mac and GTK(?) the DC is not really valid until it has a bitmap
293 // selected into it. So instead of just creating the DC with no bitmap,
294 // go ahead and give it one.
295 InitPixMap(1,1,NULL
);
298 void SurfaceImpl::Init(SurfaceID hdc_
) {
303 void SurfaceImpl::InitPixMap(int width
, int height
, Surface
*surface_
) {
305 hdc
= new wxMemoryDC();
307 if (width
< 1) width
= 1;
308 if (height
< 1) height
= 1;
309 bitmap
= new wxBitmap(width
, height
);
310 ((wxMemoryDC
*)hdc
)->SelectObject(*bitmap
);
313 void SurfaceImpl::PenColour(ColourAllocated fore
) {
314 hdc
->SetPen(wxPen(wxColourFromCA(fore
), 1, wxSOLID
));
317 void SurfaceImpl::BrushColour(ColourAllocated back
) {
318 hdc
->SetBrush(wxBrush(wxColourFromCA(back
), wxSOLID
));
321 void SurfaceImpl::SetFont(Font
&font_
) {
323 hdc
->SetFont(*((wxFont
*)font_
.GetID()));
327 int SurfaceImpl::LogPixelsY() {
328 return hdc
->GetPPI().y
;
331 int SurfaceImpl::DeviceHeightFont(int points
) {
335 void SurfaceImpl::MoveTo(int x_
, int y_
) {
340 void SurfaceImpl::LineTo(int x_
, int y_
) {
341 hdc
->DrawLine(x
,y
, x_
,y_
);
346 void SurfaceImpl::Polygon(Point
*pts
, int npts
, ColourAllocated fore
, ColourAllocated back
) {
349 hdc
->DrawPolygon(npts
, (wxPoint
*)pts
);
352 void SurfaceImpl::RectangleDraw(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
) {
355 hdc
->DrawRectangle(wxRectFromPRectangle(rc
));
358 void SurfaceImpl::FillRectangle(PRectangle rc
, ColourAllocated back
) {
360 hdc
->SetPen(*wxTRANSPARENT_PEN
);
361 hdc
->DrawRectangle(wxRectFromPRectangle(rc
));
364 void SurfaceImpl::FillRectangle(PRectangle rc
, Surface
&surfacePattern
) {
366 if (((SurfaceImpl
&)surfacePattern
).bitmap
)
367 br
= wxBrush(*((SurfaceImpl
&)surfacePattern
).bitmap
);
368 else // Something is wrong so display in red
369 br
= wxBrush(*wxRED
, wxSOLID
);
370 hdc
->SetPen(*wxTRANSPARENT_PEN
);
372 hdc
->DrawRectangle(wxRectFromPRectangle(rc
));
375 void SurfaceImpl::RoundedRectangle(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
) {
378 hdc
->DrawRoundedRectangle(wxRectFromPRectangle(rc
), 4);
381 void SurfaceImpl::Ellipse(PRectangle rc
, ColourAllocated fore
, ColourAllocated back
) {
384 hdc
->DrawEllipse(wxRectFromPRectangle(rc
));
387 void SurfaceImpl::Copy(PRectangle rc
, Point from
, Surface
&surfaceSource
) {
388 wxRect r
= wxRectFromPRectangle(rc
);
389 hdc
->Blit(r
.x
, r
.y
, r
.width
, r
.height
,
390 ((SurfaceImpl
&)surfaceSource
).hdc
,
391 from
.x
, from
.y
, wxCOPY
);
394 void SurfaceImpl::DrawTextNoClip(PRectangle rc
, Font
&font
, int ybase
,
395 const char *s
, int len
,
396 ColourAllocated fore
, ColourAllocated back
) {
398 hdc
->SetTextForeground(wxColourFromCA(fore
));
399 hdc
->SetTextBackground(wxColourFromCA(back
));
400 FillRectangle(rc
, back
);
402 // ybase is where the baseline should be, but wxWin uses the upper left
403 // corner, so I need to calculate the real position for the text...
404 hdc
->DrawText(stc2wx(s
, len
), rc
.left
, ybase
- font
.ascent
);
407 void SurfaceImpl::DrawTextClipped(PRectangle rc
, Font
&font
, int ybase
,
408 const char *s
, int len
,
409 ColourAllocated fore
, ColourAllocated back
) {
411 hdc
->SetTextForeground(wxColourFromCA(fore
));
412 hdc
->SetTextBackground(wxColourFromCA(back
));
413 FillRectangle(rc
, back
);
414 hdc
->SetClippingRegion(wxRectFromPRectangle(rc
));
416 // see comments above
417 hdc
->DrawText(stc2wx(s
, len
), rc
.left
, ybase
- font
.ascent
);
418 hdc
->DestroyClippingRegion();
421 int SurfaceImpl::WidthText(Font
&font
, const char *s
, int len
) {
426 hdc
->GetTextExtent(stc2wx(s
, len
), &w
, &h
);
431 void SurfaceImpl::MeasureWidths(Font
&font
, const char *s
, int len
, int *positions
) {
432 wxString str
= stc2wx(s
, len
);
435 // Calculate the position of each character based on the widths of
436 // the previous characters
437 int* tpos
= new int[len
];
440 for (i
=0; i
<str
.Length(); i
++) {
442 hdc
->GetTextExtent(str
[i
], &w
, &h
);
444 tpos
[i
] = totalWidth
;
448 // Map the widths for UCS-2 characters back to the UTF-8 input string
452 unsigned char uch
= (unsigned char)s
[i
];
453 positions
[i
++] = tpos
[ui
];
455 if (uch
< (0x80 + 0x40 + 0x20)) {
456 positions
[i
++] = tpos
[ui
];
458 positions
[i
++] = tpos
[ui
];
459 positions
[i
++] = tpos
[ui
];
466 // If not unicode then just use the widths we have
467 memcpy(positions
, tpos
, len
* sizeof(*tpos
));
474 int SurfaceImpl::WidthChar(Font
&font
, char ch
) {
478 char s
[2] = { ch
, 0 };
480 hdc
->GetTextExtent(stc2wx(s
, 1), &w
, &h
);
484 #define EXTENT_TEST wxT(" `~!@#$%^&*()-_=+\\|[]{};:\"\'<,>.?/1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
486 int SurfaceImpl::Ascent(Font
&font
) {
489 hdc
->GetTextExtent(EXTENT_TEST
, &w
, &h
, &d
, &e
);
494 int SurfaceImpl::Descent(Font
&font
) {
497 hdc
->GetTextExtent(EXTENT_TEST
, &w
, &h
, &d
, &e
);
501 int SurfaceImpl::InternalLeading(Font
&font
) {
505 int SurfaceImpl::ExternalLeading(Font
&font
) {
508 hdc
->GetTextExtent(EXTENT_TEST
, &w
, &h
, &d
, &e
);
512 int SurfaceImpl::Height(Font
&font
) {
514 return hdc
->GetCharHeight();
517 int SurfaceImpl::AverageCharWidth(Font
&font
) {
519 return hdc
->GetCharWidth();
522 int SurfaceImpl::SetPalette(Palette
*pal
, bool inBackGround
) {
526 void SurfaceImpl::SetClip(PRectangle rc
) {
527 hdc
->SetClippingRegion(wxRectFromPRectangle(rc
));
530 void SurfaceImpl::FlushCachedState() {
533 void SurfaceImpl::SetUnicodeMode(bool unicodeMode_
) {
534 unicodeMode
=unicodeMode_
;
536 wxASSERT_MSG(unicodeMode
== wxUSE_UNICODE
,
537 wxT("Only unicode may be used when wxUSE_UNICODE is on."));
539 wxASSERT_MSG(unicodeMode
== wxUSE_UNICODE
,
540 wxT("Only non-unicode may be used when wxUSE_UNICODE is off."));
544 Surface
*Surface::Allocate() {
545 return new SurfaceImpl
;
549 //----------------------------------------------------------------------
552 inline wxWindow
* GETWIN(WindowID id
) { return (wxWindow
*)id
; }
557 void Window::Destroy() {
559 GETWIN(id
)->Destroy();
563 bool Window::HasFocus() {
564 return wxWindow::FindFocus() == GETWIN(id
);
567 PRectangle
Window::GetPosition() {
568 wxRect
rc(GETWIN(id
)->GetPosition(), GETWIN(id
)->GetSize());
569 return PRectangleFromwxRect(rc
);
572 void Window::SetPosition(PRectangle rc
) {
573 wxRect r
= wxRectFromPRectangle(rc
);
574 GETWIN(id
)->SetSize(r
);
577 void Window::SetPositionRelative(PRectangle rc
, Window
) {
578 SetPosition(rc
); // ????
581 PRectangle
Window::GetClientPosition() {
582 wxSize sz
= GETWIN(id
)->GetClientSize();
583 return PRectangle(0, 0, sz
.x
, sz
.y
);
586 void Window::Show(bool show
) {
587 GETWIN(id
)->Show(show
);
590 void Window::InvalidateAll() {
591 GETWIN(id
)->Refresh(false);
595 void Window::InvalidateRectangle(PRectangle rc
) {
596 wxRect r
= wxRectFromPRectangle(rc
);
597 GETWIN(id
)->Refresh(false, &r
);
601 void Window::SetFont(Font
&font
) {
602 GETWIN(id
)->SetFont(*((wxFont
*)font
.GetID()));
605 void Window::SetCursor(Cursor curs
) {
610 cursorId
= wxCURSOR_IBEAM
;
613 cursorId
= wxCURSOR_ARROW
;
616 cursorId
= wxCURSOR_ARROW
; // ** no up arrow... wxCURSOR_UPARROW;
619 cursorId
= wxCURSOR_WAIT
;
622 cursorId
= wxCURSOR_SIZEWE
;
625 cursorId
= wxCURSOR_SIZENS
;
627 case cursorReverseArrow
:
628 cursorId
= wxCURSOR_RIGHT_ARROW
;
631 cursorId
= wxCURSOR_ARROW
;
635 GETWIN(id
)->SetCursor(wxCursor(cursorId
));
639 void Window::SetTitle(const char *s
) {
640 GETWIN(id
)->SetTitle(stc2wx(s
));
644 //----------------------------------------------------------------------
645 // Helper classes for ListBox
648 // #undef wxSTC_USE_POPUP
649 // #define wxSTC_USE_POPUP 0
652 // A wxListBox that gives focus back to its parent if it gets it.
653 class wxSTCListBox
: public wxListBox
{
655 wxSTCListBox(wxWindow
* parent
, wxWindowID id
)
656 : wxListBox(parent
, id
, wxDefaultPosition
, wxDefaultSize
,
657 0, NULL
, wxLB_SINGLE
| wxSIMPLE_BORDER
)
660 void OnKeyDown(wxKeyEvent
& event
) {
661 // Give the key events to the STC. It will then update
662 // the listbox as needed.
663 GetGrandParent()->GetEventHandler()->ProcessEvent(event
);
667 DECLARE_EVENT_TABLE()
670 BEGIN_EVENT_TABLE(wxSTCListBox
, wxListBox
)
671 EVT_KEY_DOWN(wxSTCListBox::OnKeyDown
)
672 EVT_CHAR(wxSTCListBox::OnKeyDown
)
677 // A window to place the listbox upon. If wxPopupWindow is supported then
678 // that will be used so the listbox can extend beyond the client area of the
680 #if wxUSE_POPUPWIN && wxSTC_USE_POPUP
681 #include <wx/popupwin.h>
682 #define wxSTCListBoxWinBase wxPopupWindow
683 #define param2 wxBORDER_NONE // popup's 2nd param is flags
685 #define wxSTCListBoxWinBase wxWindow
686 #define param2 -1 // wxWindow's 2nd param is ID
689 class wxSTCListBoxWin
: public wxSTCListBoxWinBase
{
691 wxSTCListBoxWin(wxWindow
* parent
, wxWindowID id
)
692 : wxSTCListBoxWinBase(parent
, param2
) {
693 lb
= new wxSTCListBox(this, id
);
694 lb
->SetCursor(wxCursor(wxCURSOR_ARROW
));
698 void OnSize(wxSizeEvent
& event
) {
699 lb
->SetSize(GetSize());
702 wxListBox
* GetLB() { return lb
; }
704 #if wxUSE_POPUPWIN && wxSTC_USE_POPUP
705 virtual void DoSetSize(int x
, int y
,
706 int width
, int height
,
707 int sizeFlags
= wxSIZE_AUTO
) {
709 GetParent()->ClientToScreen(&x
, NULL
);
711 GetParent()->ClientToScreen(NULL
, &y
);
712 wxSTCListBoxWinBase::DoSetSize(x
, y
, width
, height
, sizeFlags
);
718 DECLARE_EVENT_TABLE()
721 BEGIN_EVENT_TABLE(wxSTCListBoxWin
, wxSTCListBoxWinBase
)
722 EVT_SIZE(wxSTCListBoxWin::OnSize
)
726 inline wxListBox
* GETLB(WindowID win
) {
727 return (((wxSTCListBoxWin
*)win
)->GetLB());
730 //----------------------------------------------------------------------
735 ListBox::~ListBox() {
738 void ListBox::Create(Window
&parent
, int ctrlID
) {
739 id
= new wxSTCListBoxWin(GETWIN(parent
.GetID()), ctrlID
);
742 void ListBox::SetVisibleRows(int rows
) {
743 desiredVisibleRows
= rows
;
746 PRectangle
ListBox::GetDesiredRect() {
747 wxSize sz
= GETLB(id
)->GetBestSize();
753 if (sz
.y
> 140) // TODO: Use desiredVisibleRows??
760 void ListBox::SetAverageCharWidth(int width
) {
761 aveCharWidth
= width
;
764 void ListBox::SetFont(Font
&font
) {
765 GETLB(id
)->SetFont(*((wxFont
*)font
.GetID()));
768 void ListBox::Clear() {
772 void ListBox::Append(char *s
) {
773 GETLB(id
)->Append(s
);
776 int ListBox::Length() {
777 return GETLB(id
)->GetCount();
780 void ListBox::Select(int n
) {
781 GETLB(id
)->SetSelection(n
);
787 GETLB(id
)->SetFirstItem(n
);
791 int ListBox::GetSelection() {
792 return GETLB(id
)->GetSelection();
795 int ListBox::Find(const char *prefix
) {
800 void ListBox::GetValue(int n
, char *value
, int len
) {
801 wxString text
= GETLB(id
)->GetString(n
);
802 strncpy(value
, wx2stc(text
), len
);
806 void ListBox::Sort() {
809 //----------------------------------------------------------------------
811 Menu::Menu() : id(0) {
814 void Menu::CreatePopUp() {
819 void Menu::Destroy() {
825 void Menu::Show(Point pt
, Window
&w
) {
826 GETWIN(w
.GetID())->PopupMenu((wxMenu
*)id
, pt
.x
- 4, pt
.y
);
830 //----------------------------------------------------------------------
832 ColourDesired
Platform::Chrome() {
834 c
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
835 return ColourDesired(c
.Red(), c
.Green(), c
.Blue());
838 ColourDesired
Platform::ChromeHighlight() {
840 c
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT
);
841 return ColourDesired(c
.Red(), c
.Green(), c
.Blue());
844 const char *Platform::DefaultFont() {
845 static char buf
[128];
846 strcpy(buf
, wxNORMAL_FONT
->GetFaceName().mbc_str());
850 int Platform::DefaultFontSize() {
854 unsigned int Platform::DoubleClickTime() {
855 return 500; // **** ::GetDoubleClickTime();
858 void Platform::DebugDisplay(const char *s
) {
859 wxLogDebug(stc2wx(s
));
862 bool Platform::IsKeyDown(int key
) {
863 return false; // I don't think we'll need this.
866 long Platform::SendScintilla(WindowID w
,
868 unsigned long wParam
,
871 wxStyledTextCtrl
* stc
= (wxStyledTextCtrl
*)w
;
872 return stc
->SendMsg(msg
, wParam
, lParam
);
876 // These are utility functions not really tied to a platform
878 int Platform::Minimum(int a
, int b
) {
885 int Platform::Maximum(int a
, int b
) {
894 void Platform::DebugPrintf(const char *format
, ...) {
898 va_start(pArguments
, format
);
899 vsprintf(buffer
,format
,pArguments
);
901 Platform::DebugDisplay(buffer
);
906 static bool assertionPopUps
= true;
908 bool Platform::ShowAssertionPopUps(bool assertionPopUps_
) {
909 bool ret
= assertionPopUps
;
910 assertionPopUps
= assertionPopUps_
;
914 void Platform::Assert(const char *c
, const char *file
, int line
) {
916 sprintf(buffer
, "Assertion [%s] failed at %s %d", c
, file
, line
);
917 if (assertionPopUps
) {
919 wxMessageBox(stc2wx(buffer
),
920 wxT("Assertion failure"),
922 // if (idButton == IDRETRY) {
924 // } else if (idButton == IDIGNORE) {
930 strcat(buffer
, "\r\n");
931 Platform::DebugDisplay(buffer
);
937 int Platform::Clamp(int val
, int minVal
, int maxVal
) {
946 bool Platform::IsDBCSLeadByte(int codePage
, char ch
) {
952 //----------------------------------------------------------------------
954 ElapsedTime::ElapsedTime() {
958 double ElapsedTime::Duration(bool reset
) {
959 double result
= wxGetElapsedTime(reset
);
965 //----------------------------------------------------------------------