// Modified by:
// Created: 23.05.99
// RCS-ID: $Id$
-// Copyright: (c) wxWindows team
+// Copyright: (c) wxWidgets team
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
#ifndef _WX_CARET_H_BASE_
#define _WX_CARET_H_BASE_
-#ifdef __GNUG__
+#include "wx/defs.h"
+
+#if wxUSE_CARET
+
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "caret.h"
#endif
int m_countVisible;
private:
- DECLARE_NO_COPY_CLASS(wxCaretBase);
+ DECLARE_NO_COPY_CLASS(wxCaretBase)
};
// ---------------------------------------------------------------------------
wxCaretSuspend(wxWindow *win)
{
m_caret = win->GetCaret();
- if ( m_caret )
+ m_show = FALSE;
+ if ( m_caret && m_caret->IsVisible() )
+ {
m_caret->Hide();
+ m_show = TRUE;
+ }
}
~wxCaretSuspend()
{
- if ( m_caret )
+ if ( m_caret && m_show )
m_caret->Show();
}
private:
wxCaret *m_caret;
+ bool m_show;
+
+ DECLARE_NO_COPY_CLASS(wxCaretSuspend)
};
+#endif // wxUSE_CARET
+
#endif // _WX_CARET_H_BASE_