projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Replace wxComboBox::IsEmpty() with Is{List,Text}Empty().
[wxWidgets.git]
/
include
/
wx
/
private
/
overlay.h
diff --git
a/include/wx/private/overlay.h
b/include/wx/private/overlay.h
index 9c70479f7d41ff3bc56a4153d3d6f89680044b43..fa6b3dbe07baa32c4bb9c492cecf1316c7d58cea 100644
(file)
--- a/
include/wx/private/overlay.h
+++ b/
include/wx/private/overlay.h
@@
-14,10
+14,10
@@
#include "wx/overlay.h"
#include "wx/overlay.h"
-#if wxHAS_NATIVE_OVERLAY
+#if
def
wxHAS_NATIVE_OVERLAY
#if defined(__WXMAC__)
#if defined(__WXMAC__)
- #include "wx/
mac
/carbon/private/overlay.h"
+ #include "wx/
osx
/carbon/private/overlay.h"
#elif defined(__WXDFB__)
#include "wx/dfb/private/overlay.h"
#else
#elif defined(__WXDFB__)
#include "wx/dfb/private/overlay.h"
#else
@@
-28,6
+28,8
@@
#include "wx/bitmap.h"
#include "wx/bitmap.h"
+class WXDLLIMPEXP_FWD_CORE wxWindow;
+
// generic implementation of wxOverlay
class wxOverlayImpl
{
// generic implementation of wxOverlay
class wxOverlayImpl
{
@@
-43,13
+45,13
@@
public:
// returns true if it has been setup
bool IsOk();
// returns true if it has been setup
bool IsOk();
- void Init(wx
Window
DC* dc, int x , int y , int width , int height);
+ void Init(wxDC* dc, int x , int y , int width , int height);
- void BeginDrawing(wx
Window
DC* dc);
+ void BeginDrawing(wxDC* dc);
- void EndDrawing(wx
Window
DC* dc);
+ void EndDrawing(wxDC* dc);
- void Clear(wx
Window
DC* dc);
+ void Clear(wxDC* dc);
private:
wxBitmap m_bmpSaved ;
private:
wxBitmap m_bmpSaved ;
@@
-57,13
+59,8
@@
private:
int m_y ;
int m_width ;
int m_height ;
int m_y ;
int m_width ;
int m_height ;
-// this is to enable wxMOTIF and UNIV to compile....
-// currently (10 oct 06) we don't use m_window
-// ce - how do we fix this
-#if defined(__WXGTK__) || defined(__WXMSW__)
wxWindow* m_window ;
wxWindow* m_window ;
-#endif
-} ;
+};
#endif // wxHAS_NATIVE_OVERLAY/!wxHAS_NATIVE_OVERLAY
#endif // wxHAS_NATIVE_OVERLAY/!wxHAS_NATIVE_OVERLAY