Welcome to XrcDialog’s documentation!

XrcDialog is a small collection of classes, that try to speed up the creation of simple wxPython Dialogs loaded from an xrc resource file.

This is how XrcDialog works:

  • Design a dialog called ‘Dialog’ with some xrc editor.
  • Define the dialog data you are intressted in as a dictionary of data items.
  • Each control in the dialog modifies the dialog data through an attached validator derived from a generic validator class CValidator
  • Usually, a control modifies a single data item through a more specialized validator, CSingleItemValidator.
  • This validator mediates between the control’s value and the data item’s value trough a transfer function.

Have a look at the example to see XrcDialog in action

Contents:

Indices and tables

Table Of Contents

Next topic

Example Dialog

This Page