module timelinelib.wxgui.dialogs.feedback.view

class timelinelib.wxgui.dialogs.feedback.view.FeedbackDialog[source]

Bases: timelinelib.wxgui.framework.Dialog

<BoxSizerVertical>

<StaticText name=”info” border=”LEFT|TOP|RIGHT” /> <FlexGridSizer columns=”2” growableColumns=”1” growableRows=”2” proportion=”1” border=”ALL”>

<StaticText align=”ALIGN_CENTER_VERTICAL” label=”$(to_text)” /> <TextCtrl name=”to_text” style=”TE_READONLY” /> <StaticText align=”ALIGN_CENTER_VERTICAL” label=”$(subject_text)” /> <TextCtrl name=”subject_text” /> <StaticText align=”ALIGN_TOP” label=”$(body_text)” /> <TextCtrlSelect name=”body_text” height=”200” style=”TE_MULTILINE” /> <StaticText align=”ALIGN_CENTER_VERTICAL” label=”$(send_with_text)” /> <BoxSizerHorizontal>

<Button label=”$(default_button_text)” borderType=”SMALL” border=”RIGHT” event_EVT_BUTTON=”on_default_click” /> <Button label=”$(gmail_button_text)” borderType=”SMALL” border=”RIGHT” event_EVT_BUTTON=”on_gmail_click” /> <Button label=”$(other_button_text)” border=”RIGHT” event_EVT_BUTTON=”on_other_click” /> <StretchSpacer /> <DialogButtonsCloseSizer />

</BoxSizerHorizontal>

</FlexGridSizer>

</BoxSizerVertical>

__init__(parent, info, subject, body)[source]

Initialize self. See help(type(self)) for accurate signature.

SetInfoText(text)[source]
GetToText()[source]
SetToText(text)[source]
GetSubjectText()[source]
SetSubjectText(text)[source]
GetBodyText()[source]
SetBodyText(text)[source]
SelectAllBodyText()[source]
timelinelib.wxgui.dialogs.feedback.view.show_feedback_dialog(info, subject, body, parent=None)[source]