projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
decouple wxTLW,Frame::ShowFullScreen in wxMSW
[wxWidgets.git]
/
include
/
wx
/
motif
/
dcmemory.h
diff --git
a/include/wx/motif/dcmemory.h
b/include/wx/motif/dcmemory.h
index c576655b05d3442eb756ef8d3bf4fbf13ea8e656..bde81607ca0d3f4a33ff7491d3c2a1f59407d999 100644
(file)
--- a/
include/wx/motif/dcmemory.h
+++ b/
include/wx/motif/dcmemory.h
@@
-6,32
+6,37
@@
// Created: 17/09/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Created: 17/09/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence: wxWindows licence
+// Licence:
wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_DCMEMORY_H_
#define _WX_DCMEMORY_H_
#ifdef __GNUG__
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_DCMEMORY_H_
#define _WX_DCMEMORY_H_
#ifdef __GNUG__
-#pragma interface "dcmemory.h"
+
#pragma interface "dcmemory.h"
#endif
#include "wx/dcclient.h"
#endif
#include "wx/dcclient.h"
-class
WXDLLEXPORT wxMemoryDC: public wxPaint
DC
+class
wxMemoryDC : public wxWindow
DC
{
{
-
DECLARE_DYNAMIC_CLASS(wxMemoryDC)
+DECLARE_DYNAMIC_CLASS(wxMemoryDC)
-
public:
- wxMemoryDC(
void
);
+public:
+ wxMemoryDC();
wxMemoryDC( wxDC *dc ); // Create compatible DC
wxMemoryDC( wxDC *dc ); // Create compatible DC
- ~wxMemoryDC(void);
+ ~wxMemoryDC();
+
virtual void SelectObject( const wxBitmap& bitmap );
virtual void SelectObject( const wxBitmap& bitmap );
- void GetSize( int *width, int *height ) const;
- private:
- friend wxPaintDC;
- wxBitmap m_selected;
+ void DoGetSize( int *width, int *height ) const;
+
+ wxBitmap& GetBitmap() const { return (wxBitmap&) m_bitmap; }
+
+private:
+ friend class wxPaintDC;
+
+ wxBitmap m_bitmap;
};
#endif
};
#endif