This class contains multiple copies of an icon in different sizes.
It is typically used in wx.Dialog.SetIcons
and wx.TopLevelWindow.SetIcons
.
Default constructor. |
|
Adds all the icons contained in the file to the bundle; if the collection already contains icons with the same width and height, they are replaced by the new ones. |
|
Returns the icon with the given size. |
|
return the icon at index (must be < |
|
return the number of available icons |
|
Returns the icon with exactly the given size or |
|
Returns |
See |
|
See |
wx.
IconBundle
(GDIObject)¶Possible constructors:
IconBundle()
IconBundle(file, type=BITMAP_TYPE_ANY)
IconBundle(stream, type=BITMAP_TYPE_ANY)
IconBundle(icon)
IconBundle(ic)
This class contains multiple copies of an icon in different sizes.
__init__
(self, *args, **kw)¶__init__ (self)
Default constructor.
__init__ (self, file, type=BITMAP_TYPE_ANY)
Initializes the bundle with the icon(s) found in the file.
file (string) –
type (BitmapType) –
__init__ (self, stream, type=BITMAP_TYPE_ANY)
Initializes the bundle with the icon(s) found in the stream.
Notice that the stream must be seekable, at least if it contains more than one icon. The stream pointer is positioned after the last icon read from the stream when this function returns.
stream (wx.InputStream) –
type (BitmapType) –
New in version 2.9.0.
__init__ (self, icon)
Initializes the bundle with a single icon.
icon (wx.Icon) –
__init__ (self, ic)
Copy constructor.
ic (wx.IconBundle) –
AddIcon
(self, *args, **kw)¶AddIcon (self, file, type=BITMAP_TYPE_ANY)
Adds all the icons contained in the file to the bundle; if the collection already contains icons with the same width and height, they are replaced by the new ones.
file (string) –
type (BitmapType) –
AddIcon (self, stream, type=BITMAP_TYPE_ANY)
Adds all the icons contained in the stream to the bundle; if the collection already contains icons with the same width and height, they are replaced by the new ones.
Notice that, as well as in the constructor loading the icon bundle from stream, the stream must be seekable, at least if more than one icon is to be loaded from it.
stream (wx.InputStream) –
type (BitmapType) –
New in version 2.9.0.
AddIcon (self, icon)
Adds the icon to the collection; if the collection already contains an icon with the same width and height, it is replaced by the new one.
icon (wx.Icon) –
GetIcon
(self, *args, **kw)¶GetIcon (self, size, flags=FALLBACK_SYSTEM)
Returns the icon with the given size.
If size is wx.DefaultSize
, it is interpreted as the standard system icon size, i.e. the size returned by wx.SystemSettings.GetMetric
for SYS_ICON_X
and SYS_ICON_Y
.
If the bundle contains an icon with exactly the requested size, it’s always returned. Otherwise, the behaviour depends on the flags. If only wx.IconBundle.FALLBACK_NONE
is given, the function returns an invalid icon. If wx.IconBundle.FALLBACK_SYSTEM
is given, it tries to find the icon of standard system size, regardless of the size passed as parameter. Otherwise, or if the icon system size is not found either, but wx.IconBundle.FALLBACK_NEAREST_LARGER
flag is specified, the function returns the smallest icon of the size larger than the requested one or, if this fails too, just the icon closest to the specified size.
The flags parameter is available only since wxWidgets 2.9.4.
GetIcon (self, size=DefaultCoord, flags=FALLBACK_SYSTEM)
Same as.
GetIcon(wx.Size(size, size))
size (int) –
flags (int) –
GetIconByIndex
(self, n)¶return the icon at index (must be < GetIconCount
)
n (int) –
GetIconCount
(self)¶return the number of available icons
int
GetIconOfExactSize
(self, size)¶Returns the icon with exactly the given size or wx.NullIcon
if this size is not available.
IsEmpty
(self)¶Returns True
if the bundle doesn’t contain any icons, False
otherwise (in which case a call to GetIcon
with default parameter should return a valid icon).
bool
IconCount
¶See GetIconCount