]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/src/_gdiobj.i
Use a compatible bitmap if a depth of -1 is given
[wxWidgets.git] / wxPython / src / _gdiobj.i
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: _gdiobj.i
3// Purpose: SWIG interface for wxGDIObject
4//
5// Author: Robin Dunn
6//
7// Created: 13-Sept-2003
8// RCS-ID: $Id$
9// Copyright: (c) 2003 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13// Not a %module
14
15//---------------------------------------------------------------------------
16%newgroup
17
18class wxGDIObject : public wxObject {
19public:
20 wxGDIObject();
21 ~wxGDIObject();
22
23 bool GetVisible();
24 void SetVisible( bool visible );
25
26 bool IsNull();
27
28};
29
30//---------------------------------------------------------------------------