-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path_obj.i
More file actions
72 lines (52 loc) · 1.68 KB
/
Copy path_obj.i
File metadata and controls
72 lines (52 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/////////////////////////////////////////////////////////////////////////////
// Name: _wxobj.i
// Purpose: SWIG interface for wxObject
//
// Author: Robin Dunn
//
// Created: 9-Aug-2003
// RCS-ID: $Id$
// Copyright: (c) 2003 by Total Control Software
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
// Not a %module
//---------------------------------------------------------------------------
%newgroup
DocStr(wxObject,
"The base class for most wx objects, although in wxPython not
much functionality is needed nor exposed.", "");
class wxObject {
public:
%extend {
DocStr(GetClassName,
"Returns the class name of the C++ class using wxRTTI.", "");
wxString GetClassName() {
return self->GetClassInfo()->GetClassName();
}
%pythonPrepend Destroy "args[0].this.own(False)"
DocStr(Destroy,
"Deletes the C++ object this Python object is a proxy for.", "");
void Destroy() {
delete self;
}
}
DocDeclStr(
bool , IsSameAs(const wxObject& p) const,
"For wx.Objects that use C++ reference counting internally, this method
can be used to determine if two objects are referencing the same data
object.", "");
%property(ClassName, GetClassName, doc="See `GetClassName`");
};
class wxRefCounter
{
public:
wxRefCounter();
%extend {
~wxRefCounter() { self->DecRef(); }
}
int GetRefCount() const;
void IncRef();
void DecRef();
};
typedef wxRefCounter wxObjectRefData;
//---------------------------------------------------------------------------