git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32479 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
78 lines
2.3 KiB
OpenEdge ABL
78 lines
2.3 KiB
OpenEdge ABL
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: _imaglist.i
|
|
// Purpose: SWIG interface defs for wxImageList and releated classes
|
|
//
|
|
// Author: Robin Dunn
|
|
//
|
|
// Created: 7-July-1997
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2003 by Total Control Software
|
|
// Licence: wxWindows license
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Not a %module
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
%{
|
|
%}
|
|
|
|
//---------------------------------------------------------------------------
|
|
%newgroup
|
|
|
|
enum {
|
|
wxIMAGELIST_DRAW_NORMAL ,
|
|
wxIMAGELIST_DRAW_TRANSPARENT,
|
|
wxIMAGELIST_DRAW_SELECTED,
|
|
wxIMAGELIST_DRAW_FOCUSED,
|
|
|
|
wxIMAGE_LIST_NORMAL,
|
|
wxIMAGE_LIST_SMALL,
|
|
wxIMAGE_LIST_STATE
|
|
};
|
|
|
|
|
|
MustHaveApp(wxImageList);
|
|
|
|
|
|
// wxImageList is used for wxListCtrl, wxTreeCtrl. These controls refer to
|
|
// images for their items by an index into an image list.
|
|
// A wxImageList is capable of creating images with optional masks from
|
|
// a variety of sources - a single bitmap plus a colour to indicate the mask,
|
|
// two bitmaps, or an icon.
|
|
class wxImageList : public wxObject {
|
|
public:
|
|
wxImageList(int width, int height, int mask=true, int initialCount=1);
|
|
~wxImageList();
|
|
|
|
int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
|
|
%Rename(AddWithColourMask,int, Add(const wxBitmap& bitmap, const wxColour& maskColour));
|
|
%Rename(AddIcon,int, Add(const wxIcon& icon));
|
|
|
|
wxBitmap GetBitmap(int index) const;
|
|
wxIcon GetIcon(int index) const;
|
|
|
|
#ifdef __WXMSW__
|
|
bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
|
|
#else
|
|
// %Rename(ReplaceIcon,bool, Replace(int index, const wxIcon& icon));
|
|
// int Add(const wxBitmap& bitmap);
|
|
bool Replace(int index, const wxBitmap& bitmap);
|
|
#endif
|
|
|
|
bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL,
|
|
const bool solidBackground = false);
|
|
|
|
int GetImageCount();
|
|
bool Remove(int index);
|
|
bool RemoveAll();
|
|
|
|
DocDeclA(
|
|
void, GetSize(int index, int& OUTPUT, int& OUTPUT),
|
|
"GetSize() -> (width,height)");
|
|
|
|
};
|
|
|
|
//---------------------------------------------------------------------------
|