]> git.saurik.com Git - wxWidgets.git/commitdiff
don't export private stc2wx(), wx2stc() functions from wxSTC shared library
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 15 Jul 2007 08:10:29 +0000 (08:10 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 15 Jul 2007 08:10:29 +0000 (08:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47479 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/stc/private.h [new file with mode: 0644]
include/wx/stc/stc.h
src/stc/PlatWX.cpp
src/stc/ScintillaWX.cpp
src/stc/stc.cpp
src/stc/stc.h.in

diff --git a/include/wx/stc/private.h b/include/wx/stc/private.h
new file mode 100644 (file)
index 0000000..976e946
--- /dev/null
@@ -0,0 +1,40 @@
+////////////////////////////////////////////////////////////////////////////
+// Name:        wx/stc/private.h
+// Purpose:     Private declarations for wxSTC
+// Author:      Robin Dunn
+// Created:     2007-07-15
+// RCS-ID:      $Id$
+// Copyright:   (c) 2000 by Total Control Software
+// Licence:     wxWindows license
+/////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_STC_PRIVATE_H_
+#define _WX_STC_PRIVATE_H_
+
+#include "wx/defs.h"
+#include "wx/string.h"
+
+//----------------------------------------------------------------------
+// Utility functions used within wxSTC
+
+#if wxUSE_UNICODE
+
+extern wxString stc2wx(const char* str);
+extern wxString stc2wx(const char* str, size_t len);
+extern const wxWX2MBbuf wx2stc(const wxString& str);
+
+#else // not UNICODE
+
+inline wxString stc2wx(const char* str) {
+    return wxString(str);
+}
+inline wxString stc2wx(const char* str, size_t len) {
+    return wxString(str, len);
+}
+inline const wxWX2MBbuf wx2stc(const wxString& str) {
+    return str.mbc_str();
+}
+
+#endif // UNICODE
+
+#endif // _WX_STC_PRIVATE_H_
index c36ca8867122a95d3ba0eea1409e1ff363d6a2bd..1217ebace4356f9c025ec19c0a8e834419d588a6 100644 (file)
@@ -17,8 +17,8 @@
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#ifndef __stc_h__
-#define __stc_h__
+#ifndef _WX_STC_STC_H_
+#define _WX_STC_STC_H_
 
 #include "wx/defs.h"
 
@@ -3586,32 +3586,6 @@ typedef void (wxEvtHandler::*wxStyledTextEventFunction)(wxStyledTextEvent&);
 #define EVT_STC_AUTOCOMP_SELECTION(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_AUTOCOMP_SELECTION     id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction)  wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
 #endif
 
-//----------------------------------------------------------------------
-// Utility functions used within wxSTC
-
-#ifndef SWIG
-#if wxUSE_UNICODE
-
-WXDLLIMPEXP_STC wxString stc2wx(const char* str);
-WXDLLIMPEXP_STC wxString stc2wx(const char* str, size_t len);
-WXDLLIMPEXP_STC const wxWX2MBbuf wx2stc(const wxString& str);
-
-#else // not UNICODE
-
-inline wxString stc2wx(const char* str) {
-    return wxString(str);
-}
-inline wxString stc2wx(const char* str, size_t len) {
-    return wxString(str, len);
-}
-inline const wxWX2MBbuf wx2stc(const wxString& str) {
-    return str.mbc_str();
-}
-
-#endif // UNICODE
-#endif // SWIG
-
-//----------------------------------------------------------------------
-#endif
-
 #endif // wxUSE_STC
+
+#endif // _WX_STC_STC_H_
index d219e12cb14e7f054d2ffd4c8f105a3ec95ef41d..153de8cc573832c464694ac9419dca425aa502a3 100644 (file)
@@ -35,6 +35,7 @@
 #include "Platform.h"
 #include "PlatWX.h"
 #include "wx/stc/stc.h"
+#include "wx/stc/private.h"
 
 
 
index 5f613664d8d17a9842b3392c3553aedd799df6eb..2f27b51b6f19872ef897f8a7baa10ba705f817dc 100644 (file)
@@ -36,6 +36,7 @@
 #include "ScintillaWX.h"
 #include "ExternalLexer.h"
 #include "wx/stc/stc.h"
+#include "wx/stc/private.h"
 #include "PlatWX.h"
 
 #ifdef __WXMSW__
index 5f72b1de7134bd152487d22b0651d47509b0e440..dda75ca9d36af95fab7edb6d8adf564aee13fe03 100644 (file)
@@ -25,6 +25,7 @@
 #if wxUSE_STC
 
 #include "wx/stc/stc.h"
+#include "wx/stc/private.h"
 
 #ifndef WX_PRECOMP
     #include "wx/wx.h"
index 66686107c98f748e07d7278db418e6a5030a633f..5630c3229d908cd0cf8292778b1260e768fb41d4 100644 (file)
@@ -17,8 +17,8 @@
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#ifndef __stc_h__
-#define __stc_h__
+#ifndef _WX_STC_STC_H_
+#define _WX_STC_STC_H_
 
 #include "wx/defs.h"
 
@@ -516,32 +516,6 @@ typedef void (wxEvtHandler::*wxStyledTextEventFunction)(wxStyledTextEvent&);
 #define EVT_STC_AUTOCOMP_SELECTION(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_STC_AUTOCOMP_SELECTION     id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction)  wxStaticCastEvent( wxStyledTextEventFunction, & fn ), (wxObject *) NULL ),
 #endif
 
-//----------------------------------------------------------------------
-// Utility functions used within wxSTC
-
-#ifndef SWIG
-#if wxUSE_UNICODE
-
-WXDLLIMPEXP_STC wxString stc2wx(const char* str);
-WXDLLIMPEXP_STC wxString stc2wx(const char* str, size_t len);
-WXDLLIMPEXP_STC const wxWX2MBbuf wx2stc(const wxString& str);
-
-#else // not UNICODE
-
-inline wxString stc2wx(const char* str) {
-    return wxString(str);
-}
-inline wxString stc2wx(const char* str, size_t len) {
-    return wxString(str, len);
-}
-inline const wxWX2MBbuf wx2stc(const wxString& str) {
-    return str.mbc_str();
-}
-
-#endif // UNICODE
-#endif // SWIG
-
-//----------------------------------------------------------------------
-#endif
-
 #endif // wxUSE_STC
+
+#endif // _WX_STC_STC_H_