AGW Logo

agw_title ImageNotebookEvent

This events will be sent when a EVT_IMAGENOTEBOOK_PAGE_CHANGED, EVT_IMAGENOTEBOOK_PAGE_CHANGING, EVT_IMAGENOTEBOOK_PAGE_CLOSING, EVT_IMAGENOTEBOOK_PAGE_CLOSED is mapped in the parent.

hierarchy Inheritance Diagram

Inheritance diagram for: ImageNotebookEvent

Inheritance diagram of ImageNotebookEvent


method_summary Methods Summary

__init__Default class constructor.
AllowThis is the opposite of Veto: it explicitly allows the event to be processed.
GetOldSelectionReturns the old event selection.
GetSelectionReturns the event selection.
IsAllowedReturns True if the change is allowed (Veto hasn’t been called) or
SetOldSelectionSets the event old selection.
SetSelectionSets the event selection.
VetoPrevents the change announced by this event from happening.

API Class API

class ImageNotebookEvent(wx.PyCommandEvent)[source]

This events will be sent when a EVT_IMAGENOTEBOOK_PAGE_CHANGED, EVT_IMAGENOTEBOOK_PAGE_CHANGING, EVT_IMAGENOTEBOOK_PAGE_CLOSING, EVT_IMAGENOTEBOOK_PAGE_CLOSED is mapped in the parent.



__init__(eventType, eventId=1, sel=-1, oldsel=-1)[source]

Default class constructor.

Parameters:
  • eventType – the event type;
  • eventId – the event identifier;
  • sel – the current selection;
  • oldsel – the old selection.


Allow()[source]

This is the opposite of Veto: it explicitly allows the event to be processed. For most events it is not necessary to call this method as the events are allowed anyhow but some are forbidden by default (this will be mentioned in the corresponding event description).



GetOldSelection()[source]

Returns the old event selection.



GetSelection()[source]

Returns the event selection.



IsAllowed()[source]

Returns True if the change is allowed (Veto hasn’t been called) or False otherwise (if it was).



SetOldSelection(s)[source]

Sets the event old selection.

Parameters:s – an integer specifying the old selection.


SetSelection(s)[source]

Sets the event selection.

Parameters:s – an integer specifying the new selection.


Veto()[source]

Prevents the change announced by this event from happening.

Note

It is in general a good idea to notify the user about the reasons for vetoing the change because otherwise the applications behaviour (which just refuses to do what the user wants) might be quite surprising.

Tree

Table Of Contents

Previous topic

ImageInfo

Next topic

LabelBook