Package Gnumed :: Package timelinelib :: Package wxgui :: Package dialogs :: Package export :: Module view :: Class ExportDialog
[frames] | no frames]

Class ExportDialog

source code

humblewx.Dialog --+    
                  |    
   framework.Dialog --+
                      |
                     ExportDialog


<BoxSizerVertical>
    <StaticBoxSizerVertical label="$(type_description_text)" border="ALL">
        <ListBox style="LB_SINGLE" name="lb_target_types" />
    </StaticBoxSizerVertical>

    <StaticBoxSizerVertical label="$(encoding_description_text)" border="LEFT|RIGHT|BOTTOM">
        <ListBox style="LB_SINGLE" name="lb_text_encodings" />
    </StaticBoxSizerVertical>

    <StaticBoxSizerVertical label="$(encoding_error_strategy_text)" border="LEFT|RIGHT|BOTTOM">
        <ListBox 
            style="LB_SINGLE" 
            name="lb_error_strategies" 
            choices="$(lb_error_strategies_choices)" />
    </StaticBoxSizerVertical>

    <StaticBoxSizerVertical label="$(export_items_description_text)" border="LEFT|RIGHT|BOTTOM">
        <FlexGridSizer rows="0" columns="2" border="ALL">
            <CheckBox align="ALIGN_CENTER_VERTICAL" label="$(events_text)" name="cbx_events" />
            <Button align="ALIGN_CENTER_VERTICAL" label="$(select_text)"
                event_EVT_BUTTON="on_edit_event_fields" />
            <CheckBox align="ALIGN_CENTER_VERTICAL" label="$(categories_text)" name="cbx_categories"/>
            <Button align="ALIGN_CENTER_VERTICAL" label="$(select_text)"
                event_EVT_BUTTON="on_edit_categories_fields" />
        </FlexGridSizer>
    </StaticBoxSizerVertical>

    <DialogButtonsOkCancelSizer
        border="LEFT|RIGHT|BOTTOM"
        event_EVT_BUTTON__ID_OK="on_ok"
    />
</BoxSizerVertical>

Instance Methods
 
__init__(self, parent) source code
 
SetTargetTypes(self, types) source code
 
SetTextEncodings(self, encodings) source code
 
SetEvents(self, state) source code
 
SetCategories(self, state) source code
 
EditEventFields(self) source code
 
EditCategoryFields(self) source code
 
GetExportEvents(self) source code
 
GetExportCategories(self) source code
 
DisplayInformationMessage(self, label, text) source code
 
Close(self) source code
 
GetExportType(self) source code
 
GetTextEncoding(self) source code
 
GetTextEncodingErrorStrategy(self) source code
 
GetEventFields(self) source code
 
GetCategoryFields(self) source code

Inherited from framework.Dialog: DisplayErrorMessage, EndModalOk

Method Details

DisplayInformationMessage(self, label, text)

source code 
Overrides: framework.Dialog.DisplayInformationMessage