phoenix_title wx.PreferencesPage

One page of preferences dialog.

This is the base class for implementation of application’s preferences. Its methods return various properties of the page, such as title or icon. The actual page is created by CreateWindow.

New in version 2.9.5.


class_hierarchy Class Hierarchy

Inheritance diagram for class PreferencesPage:

sub_classes Known Subclasses

wx.StockPreferencesPage


method_summary Methods Summary

__init__

Constructor.

CreateWindow

Create a window for this page.

GetIcon

Return the icon to be used for the page on some platforms.

GetLargeIcon

GetName

Return name of the page.


property_summary Properties Summary

Icon

See GetIcon

LargeIcon

See GetLargeIcon

Name

See GetName


api Class API

class wx.PreferencesPage(object)

Possible constructors:

PreferencesPage()

One page of preferences dialog.


Methods

__init__(self)

Constructor.



CreateWindow(self, parent)

Create a window for this page.

The window will be placed into the preferences dialog in platform-specific manner. Depending on the platform, this method may be called before showing the preferences window, when switching to its tab or even more than once. Don’t make assumptions about the number of times or the specific time when it is called.

The caller takes ownership of the window.

wx.Panel is usually used, but doesn’t have to be.

Parameters

parent (wx.Window) – Parent window to use.

Return type

wx.Window



GetIcon(self)

Return the icon to be used for the page on some platforms.

Currently only used on macOS.

Return type

wx.BitmapBundle

New in version 4.1/wxWidgets-3.1.6.

Note

This method is not pure virtual, but must be implemented on the platforms that require it (macOS). The preprocessor symbol HAS_PREF_EDITOR_ICONS is defined if this method must be implemented.



GetLargeIcon(self)
Return type

wx.Bitmap

Deprecated

This function is deprecated, override GetIcon instead.



GetName(self)

Return name of the page.

The name is used for notebook tab’s label, icon label etc., depending on the platform.

Return type

string


Properties

Icon

See GetIcon



LargeIcon

See GetLargeIcon



Name

See GetName