1//---------------------------------------------------------------------------
2// This file is generated by wxPython's SIP generator.  Do not edit by hand.
3//
4// Copyright: (c) 2018 by Total Control Software
5// License:   wxWindows License
6//
7// This file will be included by _core.sip
8//
9//---------------------------------------------------------------------------
10%ModuleCode
11#define NO_IMAGE wxWithImages::NO_IMAGE
12%End
13
14//---------------------------------------------------------------------------
15
16class wxWithImages
17{
18    %Docstring
19        WithImages()
20
21        A mixin class to be used with other classes that use a wxImageList.
22    %End
23    %TypeHeaderCode
24        #include <wx/withimages.h>
25    %End
26
27public:
28    enum
29    {
30        NO_IMAGE
31    };
32
33    wxWithImages();
34
35    virtual
36    ~wxWithImages();
37
38    void AssignImageList(
39        wxImageList * imageList   /Transfer/
40    );
41    %Docstring
42        AssignImageList(imageList)
43
44        Sets the image list for the page control and takes ownership of the
45        list.
46    %End
47
48    virtual
49    void SetImageList(
50        wxImageList * imageList
51    );
52    %Docstring
53        SetImageList(imageList)
54
55        Sets the image list to use.
56    %End
57
58    wxImageList * GetImageList() const;
59    %Docstring
60        GetImageList() -> ImageList
61
62        Returns the associated image list, may be NULL.
63    %End
64
65    private:
66        wxWithImages(const wxWithImages&);
67
68
69    private:
70        wxWithImages& operator=(const wxWithImages&);
71
72
73    public:
74
75
76    %Property(name=ImageList, get=GetImageList, set=SetImageList)
77};  // end of class wxWithImages
78
79
80const int NO_IMAGE;
81
82//---------------------------------------------------------------------------
83
84