Skip to content
Commits on Source (7)
......@@ -6,6 +6,15 @@
# rel-1-7-patches
------------------------------------------------
1.7.2
FIX: GTK3 related size adjustments for PatientOverview/SimpleSoap plugins
FIX: GTK3 related bitmap adjustments
FIX: [Save] functionality of Export Area
FIX: placeholders $current_provider_[title/firstnames/lastnames]$
FIX: receiver selection address list setup
FIX: exception on creation of duplicate patient [thanks Marc]
1.7.1
NEW: add bash completion script
......@@ -1941,6 +1950,11 @@ FIX: missing cast to ::text in dem.date_trunc_utc() calls
# gnumed_v22
------------------------------------------------
22.2
FIX: staff/v_staff plausibility check [thanks Marc]
FIX: LaTeX-Template for Begleitbrief
22.1
IMPROVED: concurrency robustness of backup/restore scripts
......
......@@ -105,6 +105,29 @@ def person_exists(lastnames, dob, firstnames=None, active_only=True):
rows, idx = gmPG2.run_ro_queries(queries = [{'cmd': cmd, 'args': args}], get_col_idx = False)
return rows[0][0]
#============================================================
def this_person_exists(lastnames, firstnames, dob, comment):
# backend also looks at gender (IOW, only fails on same-gender dupes)
if comment is not None:
comment = comment.strip()
if comment == u'':
comment = None
args = {
'last': lastnames.strip(),
'first': firstnames.strip(),
'dob': dob,
'cmt': comment
}
where_parts = [
u'lower(lastnames) = lower(%(last)s)',
u'lower(firstnames) = lower(%(first)s)',
u"dem.date_trunc_utc('day', dob) IS NOT DISTINCT FROM dem.date_trunc_utc('day', %(dob)s)",
u'lower(comment) IS NOT DISTINCT FROM lower(%(cmt)s)'
]
cmd = u"SELECT COUNT(1) FROM dem.v_persons WHERE %s" % u' AND '.join(where_parts)
rows, idx = gmPG2.run_ro_queries(queries = [{'cmd': cmd, 'args': args}], get_col_idx = False)
return rows[0][0]
#============================================================
# FIXME: make this work as a mapping type, too
class cDTO_person(object):
......
This diff is collapsed.
......@@ -97,7 +97,8 @@ expandto(location.href);
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:35 2013
Generated by Epydoc 3.0.1
on Thu May 10 01:55:20 2018
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
......
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Gnumed.CherryPy</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="Gnumed-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Tree link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Index link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Help link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
<a href="Gnumed-module.html">Package&nbsp;Gnumed</a> ::
Package&nbsp;CherryPy
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>]&nbsp;|&nbsp;<a href="Gnumed.CherryPy-module.html"
target="_top">no&nbsp;frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== PACKAGE DESCRIPTION ==================== -->
<h1 class="epydoc">Package CherryPy</h1><p class="nomargin-top"><span class="codelink"><a href="Gnumed.CherryPy-pysrc.html">source&nbsp;code</a></span></p>
<!-- ==================== SUBMODULES ==================== -->
<a name="section-Submodules"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Submodules</span></td>
</tr>
<tr><td class="summary">
<ul class="nomargin">
<li> <strong class="uidlink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html">Gnumed.CherryPy.gmGuiHelpersWeb</a></strong>: <em class="summary">GNUmed GUI helper classes and functions.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.CherryPy.gmGuiWeb-module.html">Gnumed.CherryPy.gmGuiWeb</a></strong> </li>
</ul></td></tr>
</table>
<br />
<!-- ==================== VARIABLES ==================== -->
<a name="section-Variables"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Variables</span></td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">&nbsp;</span>
</td><td class="summary">
<a name="__package__"></a><span class="summary-name">__package__</span> = <code title="None">None</code>
</td>
</tr>
</table>
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="Gnumed-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Tree link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Index link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Help link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:03 2013
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Gnumed.CherryPy.gmGuiHelpersWeb.c2ButtonQuestionDlg</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="Gnumed-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Tree link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Index link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Help link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
<a href="Gnumed-module.html">Package&nbsp;Gnumed</a> ::
<a href="Gnumed.CherryPy-module.html">Package&nbsp;CherryPy</a> ::
<a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html">Module&nbsp;gmGuiHelpersWeb</a> ::
Class&nbsp;c2ButtonQuestionDlg
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>]&nbsp;|&nbsp;<a href="Gnumed.CherryPy.gmGuiHelpersWeb.c2ButtonQuestionDlg-class.html"
target="_top">no&nbsp;frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== CLASS DESCRIPTION ==================== -->
<h1 class="epydoc">Class c2ButtonQuestionDlg</h1><p class="nomargin-top"><span class="codelink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-pysrc.html#c2ButtonQuestionDlg">source&nbsp;code</a></span></p>
<pre class="base-tree">
object --+
|
wx._core.Object --+
|
wx._core.EvtHandler --+
|
wx._core.Window --+
|
wx._windows.TopLevelWindow --+
|
wx._windows.Dialog --+
|
<a href="Gnumed.wxGladeWidgets.wxg2ButtonQuestionDlg.wxg2ButtonQuestionDlg-class.html">wxGladeWidgets.wxg2ButtonQuestionDlg.wxg2ButtonQuestionDlg</a> --+
|
<strong class="uidshort">c2ButtonQuestionDlg</strong>
</pre>
<hr />
<!-- ==================== INSTANCE METHODS ==================== -->
<a name="section-InstanceMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Instance Methods</span></td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">EvtHandler</span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="Gnumed.CherryPy.gmGuiHelpersWeb.c2ButtonQuestionDlg-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">*args</span>,
<span class="summary-sig-arg">**kwargs</span>)</span><br />
__init__(self, Window parent, int id=-1, String title=EmptyString, ...</td>
<td align="right" valign="top">
<span class="codelink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-pysrc.html#c2ButtonQuestionDlg.__init__">source&nbsp;code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">&nbsp;</span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="checkbox_is_checked"></a><span class="summary-sig-name">checkbox_is_checked</span>(<span class="summary-sig-arg">self</span>)</span></td>
<td align="right" valign="top">
<span class="codelink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-pysrc.html#c2ButtonQuestionDlg.checkbox_is_checked">source&nbsp;code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._windows.Dialog</code></b>:
<code>Create</code>,
<code>CreateButtonSizer</code>,
<code>CreateStdDialogButtonSizer</code>,
<code>CreateTextSizer</code>,
<code>EndModal</code>,
<code>GetReturnCode</code>,
<code>IsModal</code>,
<code>SendSizeEvent</code>,
<code>SetReturnCode</code>,
<code>ShowModal</code>,
<code>__repr__</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._windows.TopLevelWindow</code></b>:
<code>CenterOnScreen</code>,
<code>CentreOnScreen</code>,
<code>GetIcon</code>,
<code>GetTitle</code>,
<code>Iconize</code>,
<code>IsActive</code>,
<code>IsFullScreen</code>,
<code>IsIconized</code>,
<code>IsMaximized</code>,
<code>MacGetMetalAppearance</code>,
<code>MacSetMetalAppearance</code>,
<code>Maximize</code>,
<code>RequestUserAttention</code>,
<code>Restore</code>,
<code>SetIcon</code>,
<code>SetIcons</code>,
<code>SetShape</code>,
<code>SetTitle</code>,
<code>ShowFullScreen</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.Window</code></b>:
<code>AcceptsFocus</code>,
<code>AcceptsFocusFromKeyboard</code>,
<code>AddChild</code>,
<code>AssociateHandle</code>,
<code>CacheBestSize</code>,
<code>CaptureMouse</code>,
<code>Center</code>,
<code>CenterOnParent</code>,
<code>Centre</code>,
<code>CentreOnParent</code>,
<code>ClearBackground</code>,
<code>ClientToScreen</code>,
<code>ClientToScreenXY</code>,
<code>Close</code>,
<code>ConvertDialogPointToPixels</code>,
<code>ConvertDialogSizeToPixels</code>,
<code>ConvertPixelPointToDialog</code>,
<code>ConvertPixelSizeToDialog</code>,
<code>DLG_PNT</code>,
<code>DLG_SZE</code>,
<code>Destroy</code>,
<code>DestroyChildren</code>,
<code>Disable</code>,
<code>DissociateHandle</code>,
<code>DragAcceptFiles</code>,
<code>Enable</code>,
<code>FindWindowById</code>,
<code>FindWindowByName</code>,
<code>Fit</code>,
<code>FitInside</code>,
<code>Freeze</code>,
<code>GetAcceleratorTable</code>,
<code>GetAdjustedBestSize</code>,
<code>GetAutoLayout</code>,
<code>GetBackgroundColour</code>,
<code>GetBackgroundStyle</code>,
<code>GetBestFittingSize</code>,
<code>GetBestSize</code>,
<code>GetBestSizeTuple</code>,
<code>GetBestVirtualSize</code>,
<code>GetBorder</code>,
<code>GetCaret</code>,
<code>GetCharHeight</code>,
<code>GetCharWidth</code>,
<code>GetChildren</code>,
<code>GetClientAreaOrigin</code>,
<code>GetClientRect</code>,
<code>GetClientSize</code>,
<code>GetClientSizeTuple</code>,
<code>GetConstraints</code>,
<code>GetContainingSizer</code>,
<code>GetCursor</code>,
<code>GetDefaultAttributes</code>,
<code>GetDefaultItem</code>,
<code>GetDropTarget</code>,
<code>GetEventHandler</code>,
<code>GetExtraStyle</code>,
<code>GetFont</code>,
<code>GetForegroundColour</code>,
<code>GetFullTextExtent</code>,
<code>GetGrandParent</code>,
<code>GetHandle</code>,
<code>GetHelpText</code>,
<code>GetId</code>,
<code>GetLabel</code>,
<code>GetMaxHeight</code>,
<code>GetMaxSize</code>,
<code>GetMaxWidth</code>,
<code>GetMinHeight</code>,
<code>GetMinSize</code>,
<code>GetMinWidth</code>,
<code>GetName</code>,
<code>GetParent</code>,
<code>GetPosition</code>,
<code>GetPositionTuple</code>,
<code>GetRect</code>,
<code>GetScrollPos</code>,
<code>GetScrollRange</code>,
<code>GetScrollThumb</code>,
<code>GetSize</code>,
<code>GetSizeTuple</code>,
<code>GetSizer</code>,
<code>GetTextExtent</code>,
<code>GetThemeEnabled</code>,
<code>GetToolTip</code>,
<code>GetUpdateClientRect</code>,
<code>GetUpdateRegion</code>,
<code>GetValidator</code>,
<code>GetVirtualSize</code>,
<code>GetVirtualSizeTuple</code>,
<code>GetWindowStyle</code>,
<code>GetWindowStyleFlag</code>,
<code>GetWindowVariant</code>,
<code>HasCapture</code>,
<code>HasFlag</code>,
<code>HasScrollbar</code>,
<code>HasTransparentBackground</code>,
<code>Hide</code>,
<code>HitTest</code>,
<code>HitTestXY</code>,
<code>InheritAttributes</code>,
<code>InheritsBackgroundColour</code>,
<code>InitDialog</code>,
<code>InvalidateBestSize</code>,
<code>IsBeingDeleted</code>,
<code>IsEnabled</code>,
<code>IsExposed</code>,
<code>IsExposedPoint</code>,
<code>IsExposedRect</code>,
<code>IsRetained</code>,
<code>IsShown</code>,
<code>IsTopLevel</code>,
<code>Layout</code>,
<code>LineDown</code>,
<code>LineUp</code>,
<code>Lower</code>,
<code>MakeModal</code>,
<code>Move</code>,
<code>MoveAfterInTabOrder</code>,
<code>MoveBeforeInTabOrder</code>,
<code>MoveXY</code>,
<code>Navigate</code>,
<code>PageDown</code>,
<code>PageUp</code>,
<code>PopEventHandler</code>,
<code>PopupMenu</code>,
<code>PopupMenuXY</code>,
<code>PostCreate</code>,
<code>PrepareDC</code>,
<code>PushEventHandler</code>,
<code>Raise</code>,
<code>Refresh</code>,
<code>RefreshRect</code>,
<code>RegisterHotKey</code>,
<code>ReleaseMouse</code>,
<code>RemoveChild</code>,
<code>RemoveEventHandler</code>,
<code>Reparent</code>,
<code>ScreenToClient</code>,
<code>ScreenToClientXY</code>,
<code>ScrollLines</code>,
<code>ScrollPages</code>,
<code>ScrollWindow</code>,
<code>SetAcceleratorTable</code>,
<code>SetAutoLayout</code>,
<code>SetBackgroundColour</code>,
<code>SetBackgroundStyle</code>,
<code>SetBestFittingSize</code>,
<code>SetCaret</code>,
<code>SetClientRect</code>,
<code>SetClientSize</code>,
<code>SetClientSizeWH</code>,
<code>SetConstraints</code>,
<code>SetContainingSizer</code>,
<code>SetCursor</code>,
<code>SetDefaultItem</code>,
<code>SetDimensions</code>,
<code>SetDropTarget</code>,
<code>SetEventHandler</code>,
<code>SetExtraStyle</code>,
<code>SetFocus</code>,
<code>SetFocusFromKbd</code>,
<code>SetFont</code>,
<code>SetForegroundColour</code>,
<code>SetHelpText</code>,
<code>SetHelpTextForId</code>,
<code>SetId</code>,
<code>SetLabel</code>,
<code>SetMaxSize</code>,
<code>SetMinSize</code>,
<code>SetName</code>,
<code>SetOwnBackgroundColour</code>,
<code>SetOwnFont</code>,
<code>SetOwnForegroundColour</code>,
<code>SetPosition</code>,
<code>SetRect</code>,
<code>SetScrollPos</code>,
<code>SetScrollbar</code>,
<code>SetSize</code>,
<code>SetSizeHints</code>,
<code>SetSizeHintsSz</code>,
<code>SetSizeWH</code>,
<code>SetSizer</code>,
<code>SetSizerAndFit</code>,
<code>SetThemeEnabled</code>,
<code>SetTmpDefaultItem</code>,
<code>SetToolTip</code>,
<code>SetToolTipString</code>,
<code>SetValidator</code>,
<code>SetVirtualSize</code>,
<code>SetVirtualSizeHints</code>,
<code>SetVirtualSizeHintsSz</code>,
<code>SetVirtualSizeWH</code>,
<code>SetWindowStyle</code>,
<code>SetWindowStyleFlag</code>,
<code>SetWindowVariant</code>,
<code>ShouldInheritColours</code>,
<code>Show</code>,
<code>Thaw</code>,
<code>TransferDataFromWindow</code>,
<code>TransferDataToWindow</code>,
<code>UnregisterHotKey</code>,
<code>Update</code>,
<code>UpdateWindowUI</code>,
<code>UseBgCol</code>,
<code>Validate</code>,
<code>WarpPointer</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.EvtHandler</code></b>:
<code>AddPendingEvent</code>,
<code>Bind</code>,
<code>Connect</code>,
<code>Disconnect</code>,
<code>GetEvtHandlerEnabled</code>,
<code>GetNextHandler</code>,
<code>GetPreviousHandler</code>,
<code>ProcessEvent</code>,
<code>ProcessPendingEvents</code>,
<code>SetEvtHandlerEnabled</code>,
<code>SetNextHandler</code>,
<code>SetPreviousHandler</code>,
<code>Unbind</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.Object</code></b>:
<code>GetClassName</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
<code>__delattr__</code>,
<code>__format__</code>,
<code>__getattribute__</code>,
<code>__hash__</code>,
<code>__new__</code>,
<code>__reduce__</code>,
<code>__reduce_ex__</code>,
<code>__setattr__</code>,
<code>__sizeof__</code>,
<code>__str__</code>,
<code>__subclasshook__</code>
</p>
</td>
</tr>
</table>
<!-- ==================== STATIC METHODS ==================== -->
<a name="section-StaticMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Static Methods</span></td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._windows.Dialog</code></b>:
<code>GetClassDefaultAttributes</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.Window</code></b>:
<code>FindFocus</code>,
<code>GetCapture</code>,
<code>NewControlId</code>,
<code>NextControlId</code>,
<code>PrevControlId</code>
</p>
</td>
</tr>
</table>
<!-- ==================== PROPERTIES ==================== -->
<a name="section-Properties"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Properties</span></td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
<code>__class__</code>
</p>
</td>
</tr>
</table>
<!-- ==================== METHOD DETAILS ==================== -->
<a name="section-MethodDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Method Details</span></td>
</tr>
</table>
<a name="__init__"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">*args</span>,
<span class="sig-arg">**kwargs</span>)</span>
<br /><em class="fname">(Constructor)</em>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-pysrc.html#c2ButtonQuestionDlg.__init__">source&nbsp;code</a></span>&nbsp;
</td>
</tr></table>
<pre class="literalblock">
__init__(self, Window parent, int id=-1, String title=EmptyString,
Point pos=DefaultPosition, Size size=DefaultSize,
long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -&gt; Dialog
</pre>
<dl class="fields">
<dt>Returns: EvtHandler</dt>
<dt>Overrides:
object.__init__
<dd><em class="note">(inherited documentation)</em></dd>
</dt>
</dl>
</td></tr></table>
</div>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="Gnumed-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Tree link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Index link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Help link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:07 2013
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Gnumed.CherryPy.gmGuiHelpersWeb.c3ButtonQuestionDlg</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="Gnumed-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Tree link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Index link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Help link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
<a href="Gnumed-module.html">Package&nbsp;Gnumed</a> ::
<a href="Gnumed.CherryPy-module.html">Package&nbsp;CherryPy</a> ::
<a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html">Module&nbsp;gmGuiHelpersWeb</a> ::
Class&nbsp;c3ButtonQuestionDlg
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>]&nbsp;|&nbsp;<a href="Gnumed.CherryPy.gmGuiHelpersWeb.c3ButtonQuestionDlg-class.html"
target="_top">no&nbsp;frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== CLASS DESCRIPTION ==================== -->
<h1 class="epydoc">Class c3ButtonQuestionDlg</h1><p class="nomargin-top"><span class="codelink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-pysrc.html#c3ButtonQuestionDlg">source&nbsp;code</a></span></p>
<pre class="base-tree">
object --+
|
wx._core.Object --+
|
wx._core.EvtHandler --+
|
wx._core.Window --+
|
wx._windows.TopLevelWindow --+
|
wx._windows.Dialog --+
|
<a href="Gnumed.wxGladeWidgets.wxg3ButtonQuestionDlg.wxg3ButtonQuestionDlg-class.html">wxGladeWidgets.wxg3ButtonQuestionDlg.wxg3ButtonQuestionDlg</a> --+
|
<strong class="uidshort">c3ButtonQuestionDlg</strong>
</pre>
<hr />
<!-- ==================== INSTANCE METHODS ==================== -->
<a name="section-InstanceMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Instance Methods</span></td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">EvtHandler</span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="Gnumed.CherryPy.gmGuiHelpersWeb.c3ButtonQuestionDlg-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">*args</span>,
<span class="summary-sig-arg">**kwargs</span>)</span><br />
__init__(self, Window parent, int id=-1, String title=EmptyString, ...</td>
<td align="right" valign="top">
<span class="codelink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-pysrc.html#c3ButtonQuestionDlg.__init__">source&nbsp;code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._windows.Dialog</code></b>:
<code>Create</code>,
<code>CreateButtonSizer</code>,
<code>CreateStdDialogButtonSizer</code>,
<code>CreateTextSizer</code>,
<code>EndModal</code>,
<code>GetReturnCode</code>,
<code>IsModal</code>,
<code>SendSizeEvent</code>,
<code>SetReturnCode</code>,
<code>ShowModal</code>,
<code>__repr__</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._windows.TopLevelWindow</code></b>:
<code>CenterOnScreen</code>,
<code>CentreOnScreen</code>,
<code>GetIcon</code>,
<code>GetTitle</code>,
<code>Iconize</code>,
<code>IsActive</code>,
<code>IsFullScreen</code>,
<code>IsIconized</code>,
<code>IsMaximized</code>,
<code>MacGetMetalAppearance</code>,
<code>MacSetMetalAppearance</code>,
<code>Maximize</code>,
<code>RequestUserAttention</code>,
<code>Restore</code>,
<code>SetIcon</code>,
<code>SetIcons</code>,
<code>SetShape</code>,
<code>SetTitle</code>,
<code>ShowFullScreen</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.Window</code></b>:
<code>AcceptsFocus</code>,
<code>AcceptsFocusFromKeyboard</code>,
<code>AddChild</code>,
<code>AssociateHandle</code>,
<code>CacheBestSize</code>,
<code>CaptureMouse</code>,
<code>Center</code>,
<code>CenterOnParent</code>,
<code>Centre</code>,
<code>CentreOnParent</code>,
<code>ClearBackground</code>,
<code>ClientToScreen</code>,
<code>ClientToScreenXY</code>,
<code>Close</code>,
<code>ConvertDialogPointToPixels</code>,
<code>ConvertDialogSizeToPixels</code>,
<code>ConvertPixelPointToDialog</code>,
<code>ConvertPixelSizeToDialog</code>,
<code>DLG_PNT</code>,
<code>DLG_SZE</code>,
<code>Destroy</code>,
<code>DestroyChildren</code>,
<code>Disable</code>,
<code>DissociateHandle</code>,
<code>DragAcceptFiles</code>,
<code>Enable</code>,
<code>FindWindowById</code>,
<code>FindWindowByName</code>,
<code>Fit</code>,
<code>FitInside</code>,
<code>Freeze</code>,
<code>GetAcceleratorTable</code>,
<code>GetAdjustedBestSize</code>,
<code>GetAutoLayout</code>,
<code>GetBackgroundColour</code>,
<code>GetBackgroundStyle</code>,
<code>GetBestFittingSize</code>,
<code>GetBestSize</code>,
<code>GetBestSizeTuple</code>,
<code>GetBestVirtualSize</code>,
<code>GetBorder</code>,
<code>GetCaret</code>,
<code>GetCharHeight</code>,
<code>GetCharWidth</code>,
<code>GetChildren</code>,
<code>GetClientAreaOrigin</code>,
<code>GetClientRect</code>,
<code>GetClientSize</code>,
<code>GetClientSizeTuple</code>,
<code>GetConstraints</code>,
<code>GetContainingSizer</code>,
<code>GetCursor</code>,
<code>GetDefaultAttributes</code>,
<code>GetDefaultItem</code>,
<code>GetDropTarget</code>,
<code>GetEventHandler</code>,
<code>GetExtraStyle</code>,
<code>GetFont</code>,
<code>GetForegroundColour</code>,
<code>GetFullTextExtent</code>,
<code>GetGrandParent</code>,
<code>GetHandle</code>,
<code>GetHelpText</code>,
<code>GetId</code>,
<code>GetLabel</code>,
<code>GetMaxHeight</code>,
<code>GetMaxSize</code>,
<code>GetMaxWidth</code>,
<code>GetMinHeight</code>,
<code>GetMinSize</code>,
<code>GetMinWidth</code>,
<code>GetName</code>,
<code>GetParent</code>,
<code>GetPosition</code>,
<code>GetPositionTuple</code>,
<code>GetRect</code>,
<code>GetScrollPos</code>,
<code>GetScrollRange</code>,
<code>GetScrollThumb</code>,
<code>GetSize</code>,
<code>GetSizeTuple</code>,
<code>GetSizer</code>,
<code>GetTextExtent</code>,
<code>GetThemeEnabled</code>,
<code>GetToolTip</code>,
<code>GetUpdateClientRect</code>,
<code>GetUpdateRegion</code>,
<code>GetValidator</code>,
<code>GetVirtualSize</code>,
<code>GetVirtualSizeTuple</code>,
<code>GetWindowStyle</code>,
<code>GetWindowStyleFlag</code>,
<code>GetWindowVariant</code>,
<code>HasCapture</code>,
<code>HasFlag</code>,
<code>HasScrollbar</code>,
<code>HasTransparentBackground</code>,
<code>Hide</code>,
<code>HitTest</code>,
<code>HitTestXY</code>,
<code>InheritAttributes</code>,
<code>InheritsBackgroundColour</code>,
<code>InitDialog</code>,
<code>InvalidateBestSize</code>,
<code>IsBeingDeleted</code>,
<code>IsEnabled</code>,
<code>IsExposed</code>,
<code>IsExposedPoint</code>,
<code>IsExposedRect</code>,
<code>IsRetained</code>,
<code>IsShown</code>,
<code>IsTopLevel</code>,
<code>Layout</code>,
<code>LineDown</code>,
<code>LineUp</code>,
<code>Lower</code>,
<code>MakeModal</code>,
<code>Move</code>,
<code>MoveAfterInTabOrder</code>,
<code>MoveBeforeInTabOrder</code>,
<code>MoveXY</code>,
<code>Navigate</code>,
<code>PageDown</code>,
<code>PageUp</code>,
<code>PopEventHandler</code>,
<code>PopupMenu</code>,
<code>PopupMenuXY</code>,
<code>PostCreate</code>,
<code>PrepareDC</code>,
<code>PushEventHandler</code>,
<code>Raise</code>,
<code>Refresh</code>,
<code>RefreshRect</code>,
<code>RegisterHotKey</code>,
<code>ReleaseMouse</code>,
<code>RemoveChild</code>,
<code>RemoveEventHandler</code>,
<code>Reparent</code>,
<code>ScreenToClient</code>,
<code>ScreenToClientXY</code>,
<code>ScrollLines</code>,
<code>ScrollPages</code>,
<code>ScrollWindow</code>,
<code>SetAcceleratorTable</code>,
<code>SetAutoLayout</code>,
<code>SetBackgroundColour</code>,
<code>SetBackgroundStyle</code>,
<code>SetBestFittingSize</code>,
<code>SetCaret</code>,
<code>SetClientRect</code>,
<code>SetClientSize</code>,
<code>SetClientSizeWH</code>,
<code>SetConstraints</code>,
<code>SetContainingSizer</code>,
<code>SetCursor</code>,
<code>SetDefaultItem</code>,
<code>SetDimensions</code>,
<code>SetDropTarget</code>,
<code>SetEventHandler</code>,
<code>SetExtraStyle</code>,
<code>SetFocus</code>,
<code>SetFocusFromKbd</code>,
<code>SetFont</code>,
<code>SetForegroundColour</code>,
<code>SetHelpText</code>,
<code>SetHelpTextForId</code>,
<code>SetId</code>,
<code>SetLabel</code>,
<code>SetMaxSize</code>,
<code>SetMinSize</code>,
<code>SetName</code>,
<code>SetOwnBackgroundColour</code>,
<code>SetOwnFont</code>,
<code>SetOwnForegroundColour</code>,
<code>SetPosition</code>,
<code>SetRect</code>,
<code>SetScrollPos</code>,
<code>SetScrollbar</code>,
<code>SetSize</code>,
<code>SetSizeHints</code>,
<code>SetSizeHintsSz</code>,
<code>SetSizeWH</code>,
<code>SetSizer</code>,
<code>SetSizerAndFit</code>,
<code>SetThemeEnabled</code>,
<code>SetTmpDefaultItem</code>,
<code>SetToolTip</code>,
<code>SetToolTipString</code>,
<code>SetValidator</code>,
<code>SetVirtualSize</code>,
<code>SetVirtualSizeHints</code>,
<code>SetVirtualSizeHintsSz</code>,
<code>SetVirtualSizeWH</code>,
<code>SetWindowStyle</code>,
<code>SetWindowStyleFlag</code>,
<code>SetWindowVariant</code>,
<code>ShouldInheritColours</code>,
<code>Show</code>,
<code>Thaw</code>,
<code>TransferDataFromWindow</code>,
<code>TransferDataToWindow</code>,
<code>UnregisterHotKey</code>,
<code>Update</code>,
<code>UpdateWindowUI</code>,
<code>UseBgCol</code>,
<code>Validate</code>,
<code>WarpPointer</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.EvtHandler</code></b>:
<code>AddPendingEvent</code>,
<code>Bind</code>,
<code>Connect</code>,
<code>Disconnect</code>,
<code>GetEvtHandlerEnabled</code>,
<code>GetNextHandler</code>,
<code>GetPreviousHandler</code>,
<code>ProcessEvent</code>,
<code>ProcessPendingEvents</code>,
<code>SetEvtHandlerEnabled</code>,
<code>SetNextHandler</code>,
<code>SetPreviousHandler</code>,
<code>Unbind</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.Object</code></b>:
<code>GetClassName</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
<code>__delattr__</code>,
<code>__format__</code>,
<code>__getattribute__</code>,
<code>__hash__</code>,
<code>__new__</code>,
<code>__reduce__</code>,
<code>__reduce_ex__</code>,
<code>__setattr__</code>,
<code>__sizeof__</code>,
<code>__str__</code>,
<code>__subclasshook__</code>
</p>
</td>
</tr>
</table>
<!-- ==================== STATIC METHODS ==================== -->
<a name="section-StaticMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Static Methods</span></td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._windows.Dialog</code></b>:
<code>GetClassDefaultAttributes</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.Window</code></b>:
<code>FindFocus</code>,
<code>GetCapture</code>,
<code>NewControlId</code>,
<code>NextControlId</code>,
<code>PrevControlId</code>
</p>
</td>
</tr>
</table>
<!-- ==================== PROPERTIES ==================== -->
<a name="section-Properties"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Properties</span></td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
<code>__class__</code>
</p>
</td>
</tr>
</table>
<!-- ==================== METHOD DETAILS ==================== -->
<a name="section-MethodDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Method Details</span></td>
</tr>
</table>
<a name="__init__"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">*args</span>,
<span class="sig-arg">**kwargs</span>)</span>
<br /><em class="fname">(Constructor)</em>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-pysrc.html#c3ButtonQuestionDlg.__init__">source&nbsp;code</a></span>&nbsp;
</td>
</tr></table>
<pre class="literalblock">
__init__(self, Window parent, int id=-1, String title=EmptyString,
Point pos=DefaultPosition, Size size=DefaultSize,
long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -&gt; Dialog
</pre>
<dl class="fields">
<dt>Returns: EvtHandler</dt>
<dt>Overrides:
object.__init__
<dd><em class="note">(inherited documentation)</em></dd>
</dt>
</dl>
</td></tr></table>
</div>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="Gnumed-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Tree link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Index link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Help link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:07 2013
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Gnumed.CherryPy.gmGuiHelpersWeb.cGreetingEditorDlg</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="Gnumed-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Tree link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Index link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Help link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
<a href="Gnumed-module.html">Package&nbsp;Gnumed</a> ::
<a href="Gnumed.CherryPy-module.html">Package&nbsp;CherryPy</a> ::
<a href="Gnumed.CherryPy.gmGuiHelpersWeb-module.html">Module&nbsp;gmGuiHelpersWeb</a> ::
Class&nbsp;cGreetingEditorDlg
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>]&nbsp;|&nbsp;<a href="Gnumed.CherryPy.gmGuiHelpersWeb.cGreetingEditorDlg-class.html"
target="_top">no&nbsp;frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== CLASS DESCRIPTION ==================== -->
<h1 class="epydoc">Class cGreetingEditorDlg</h1><p class="nomargin-top"><span class="codelink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-pysrc.html#cGreetingEditorDlg">source&nbsp;code</a></span></p>
<pre class="base-tree">
object --+
|
wx._core.Object --+
|
wx._core.EvtHandler --+
|
wx._core.Window --+
|
wx._windows.TopLevelWindow --+
|
wx._windows.Dialog --+
|
<a href="Gnumed.wxGladeWidgets.wxgGreetingEditorDlg.wxgGreetingEditorDlg-class.html">wxGladeWidgets.wxgGreetingEditorDlg.wxgGreetingEditorDlg</a> --+
|
<strong class="uidshort">cGreetingEditorDlg</strong>
</pre>
<hr />
<!-- ==================== INSTANCE METHODS ==================== -->
<a name="section-InstanceMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Instance Methods</span></td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">EvtHandler</span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="Gnumed.CherryPy.gmGuiHelpersWeb.cGreetingEditorDlg-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">*args</span>,
<span class="summary-sig-arg">**kwargs</span>)</span><br />
__init__(self, Window parent, int id=-1, String title=EmptyString, ...</td>
<td align="right" valign="top">
<span class="codelink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-pysrc.html#cGreetingEditorDlg.__init__">source&nbsp;code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._windows.Dialog</code></b>:
<code>Create</code>,
<code>CreateButtonSizer</code>,
<code>CreateStdDialogButtonSizer</code>,
<code>CreateTextSizer</code>,
<code>EndModal</code>,
<code>GetReturnCode</code>,
<code>IsModal</code>,
<code>SendSizeEvent</code>,
<code>SetReturnCode</code>,
<code>ShowModal</code>,
<code>__repr__</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._windows.TopLevelWindow</code></b>:
<code>CenterOnScreen</code>,
<code>CentreOnScreen</code>,
<code>GetIcon</code>,
<code>GetTitle</code>,
<code>Iconize</code>,
<code>IsActive</code>,
<code>IsFullScreen</code>,
<code>IsIconized</code>,
<code>IsMaximized</code>,
<code>MacGetMetalAppearance</code>,
<code>MacSetMetalAppearance</code>,
<code>Maximize</code>,
<code>RequestUserAttention</code>,
<code>Restore</code>,
<code>SetIcon</code>,
<code>SetIcons</code>,
<code>SetShape</code>,
<code>SetTitle</code>,
<code>ShowFullScreen</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.Window</code></b>:
<code>AcceptsFocus</code>,
<code>AcceptsFocusFromKeyboard</code>,
<code>AddChild</code>,
<code>AssociateHandle</code>,
<code>CacheBestSize</code>,
<code>CaptureMouse</code>,
<code>Center</code>,
<code>CenterOnParent</code>,
<code>Centre</code>,
<code>CentreOnParent</code>,
<code>ClearBackground</code>,
<code>ClientToScreen</code>,
<code>ClientToScreenXY</code>,
<code>Close</code>,
<code>ConvertDialogPointToPixels</code>,
<code>ConvertDialogSizeToPixels</code>,
<code>ConvertPixelPointToDialog</code>,
<code>ConvertPixelSizeToDialog</code>,
<code>DLG_PNT</code>,
<code>DLG_SZE</code>,
<code>Destroy</code>,
<code>DestroyChildren</code>,
<code>Disable</code>,
<code>DissociateHandle</code>,
<code>DragAcceptFiles</code>,
<code>Enable</code>,
<code>FindWindowById</code>,
<code>FindWindowByName</code>,
<code>Fit</code>,
<code>FitInside</code>,
<code>Freeze</code>,
<code>GetAcceleratorTable</code>,
<code>GetAdjustedBestSize</code>,
<code>GetAutoLayout</code>,
<code>GetBackgroundColour</code>,
<code>GetBackgroundStyle</code>,
<code>GetBestFittingSize</code>,
<code>GetBestSize</code>,
<code>GetBestSizeTuple</code>,
<code>GetBestVirtualSize</code>,
<code>GetBorder</code>,
<code>GetCaret</code>,
<code>GetCharHeight</code>,
<code>GetCharWidth</code>,
<code>GetChildren</code>,
<code>GetClientAreaOrigin</code>,
<code>GetClientRect</code>,
<code>GetClientSize</code>,
<code>GetClientSizeTuple</code>,
<code>GetConstraints</code>,
<code>GetContainingSizer</code>,
<code>GetCursor</code>,
<code>GetDefaultAttributes</code>,
<code>GetDefaultItem</code>,
<code>GetDropTarget</code>,
<code>GetEventHandler</code>,
<code>GetExtraStyle</code>,
<code>GetFont</code>,
<code>GetForegroundColour</code>,
<code>GetFullTextExtent</code>,
<code>GetGrandParent</code>,
<code>GetHandle</code>,
<code>GetHelpText</code>,
<code>GetId</code>,
<code>GetLabel</code>,
<code>GetMaxHeight</code>,
<code>GetMaxSize</code>,
<code>GetMaxWidth</code>,
<code>GetMinHeight</code>,
<code>GetMinSize</code>,
<code>GetMinWidth</code>,
<code>GetName</code>,
<code>GetParent</code>,
<code>GetPosition</code>,
<code>GetPositionTuple</code>,
<code>GetRect</code>,
<code>GetScrollPos</code>,
<code>GetScrollRange</code>,
<code>GetScrollThumb</code>,
<code>GetSize</code>,
<code>GetSizeTuple</code>,
<code>GetSizer</code>,
<code>GetTextExtent</code>,
<code>GetThemeEnabled</code>,
<code>GetToolTip</code>,
<code>GetUpdateClientRect</code>,
<code>GetUpdateRegion</code>,
<code>GetValidator</code>,
<code>GetVirtualSize</code>,
<code>GetVirtualSizeTuple</code>,
<code>GetWindowStyle</code>,
<code>GetWindowStyleFlag</code>,
<code>GetWindowVariant</code>,
<code>HasCapture</code>,
<code>HasFlag</code>,
<code>HasScrollbar</code>,
<code>HasTransparentBackground</code>,
<code>Hide</code>,
<code>HitTest</code>,
<code>HitTestXY</code>,
<code>InheritAttributes</code>,
<code>InheritsBackgroundColour</code>,
<code>InitDialog</code>,
<code>InvalidateBestSize</code>,
<code>IsBeingDeleted</code>,
<code>IsEnabled</code>,
<code>IsExposed</code>,
<code>IsExposedPoint</code>,
<code>IsExposedRect</code>,
<code>IsRetained</code>,
<code>IsShown</code>,
<code>IsTopLevel</code>,
<code>Layout</code>,
<code>LineDown</code>,
<code>LineUp</code>,
<code>Lower</code>,
<code>MakeModal</code>,
<code>Move</code>,
<code>MoveAfterInTabOrder</code>,
<code>MoveBeforeInTabOrder</code>,
<code>MoveXY</code>,
<code>Navigate</code>,
<code>PageDown</code>,
<code>PageUp</code>,
<code>PopEventHandler</code>,
<code>PopupMenu</code>,
<code>PopupMenuXY</code>,
<code>PostCreate</code>,
<code>PrepareDC</code>,
<code>PushEventHandler</code>,
<code>Raise</code>,
<code>Refresh</code>,
<code>RefreshRect</code>,
<code>RegisterHotKey</code>,
<code>ReleaseMouse</code>,
<code>RemoveChild</code>,
<code>RemoveEventHandler</code>,
<code>Reparent</code>,
<code>ScreenToClient</code>,
<code>ScreenToClientXY</code>,
<code>ScrollLines</code>,
<code>ScrollPages</code>,
<code>ScrollWindow</code>,
<code>SetAcceleratorTable</code>,
<code>SetAutoLayout</code>,
<code>SetBackgroundColour</code>,
<code>SetBackgroundStyle</code>,
<code>SetBestFittingSize</code>,
<code>SetCaret</code>,
<code>SetClientRect</code>,
<code>SetClientSize</code>,
<code>SetClientSizeWH</code>,
<code>SetConstraints</code>,
<code>SetContainingSizer</code>,
<code>SetCursor</code>,
<code>SetDefaultItem</code>,
<code>SetDimensions</code>,
<code>SetDropTarget</code>,
<code>SetEventHandler</code>,
<code>SetExtraStyle</code>,
<code>SetFocus</code>,
<code>SetFocusFromKbd</code>,
<code>SetFont</code>,
<code>SetForegroundColour</code>,
<code>SetHelpText</code>,
<code>SetHelpTextForId</code>,
<code>SetId</code>,
<code>SetLabel</code>,
<code>SetMaxSize</code>,
<code>SetMinSize</code>,
<code>SetName</code>,
<code>SetOwnBackgroundColour</code>,
<code>SetOwnFont</code>,
<code>SetOwnForegroundColour</code>,
<code>SetPosition</code>,
<code>SetRect</code>,
<code>SetScrollPos</code>,
<code>SetScrollbar</code>,
<code>SetSize</code>,
<code>SetSizeHints</code>,
<code>SetSizeHintsSz</code>,
<code>SetSizeWH</code>,
<code>SetSizer</code>,
<code>SetSizerAndFit</code>,
<code>SetThemeEnabled</code>,
<code>SetTmpDefaultItem</code>,
<code>SetToolTip</code>,
<code>SetToolTipString</code>,
<code>SetValidator</code>,
<code>SetVirtualSize</code>,
<code>SetVirtualSizeHints</code>,
<code>SetVirtualSizeHintsSz</code>,
<code>SetVirtualSizeWH</code>,
<code>SetWindowStyle</code>,
<code>SetWindowStyleFlag</code>,
<code>SetWindowVariant</code>,
<code>ShouldInheritColours</code>,
<code>Show</code>,
<code>Thaw</code>,
<code>TransferDataFromWindow</code>,
<code>TransferDataToWindow</code>,
<code>UnregisterHotKey</code>,
<code>Update</code>,
<code>UpdateWindowUI</code>,
<code>UseBgCol</code>,
<code>Validate</code>,
<code>WarpPointer</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.EvtHandler</code></b>:
<code>AddPendingEvent</code>,
<code>Bind</code>,
<code>Connect</code>,
<code>Disconnect</code>,
<code>GetEvtHandlerEnabled</code>,
<code>GetNextHandler</code>,
<code>GetPreviousHandler</code>,
<code>ProcessEvent</code>,
<code>ProcessPendingEvents</code>,
<code>SetEvtHandlerEnabled</code>,
<code>SetNextHandler</code>,
<code>SetPreviousHandler</code>,
<code>Unbind</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.Object</code></b>:
<code>GetClassName</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
<code>__delattr__</code>,
<code>__format__</code>,
<code>__getattribute__</code>,
<code>__hash__</code>,
<code>__new__</code>,
<code>__reduce__</code>,
<code>__reduce_ex__</code>,
<code>__setattr__</code>,
<code>__sizeof__</code>,
<code>__str__</code>,
<code>__subclasshook__</code>
</p>
</td>
</tr>
</table>
<!-- ==================== STATIC METHODS ==================== -->
<a name="section-StaticMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Static Methods</span></td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._windows.Dialog</code></b>:
<code>GetClassDefaultAttributes</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>wx._core.Window</code></b>:
<code>FindFocus</code>,
<code>GetCapture</code>,
<code>NewControlId</code>,
<code>NextControlId</code>,
<code>PrevControlId</code>
</p>
</td>
</tr>
</table>
<!-- ==================== PROPERTIES ==================== -->
<a name="section-Properties"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Properties</span></td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
<code>__class__</code>
</p>
</td>
</tr>
</table>
<!-- ==================== METHOD DETAILS ==================== -->
<a name="section-MethodDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Method Details</span></td>
</tr>
</table>
<a name="__init__"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">*args</span>,
<span class="sig-arg">**kwargs</span>)</span>
<br /><em class="fname">(Constructor)</em>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="Gnumed.CherryPy.gmGuiHelpersWeb-pysrc.html#cGreetingEditorDlg.__init__">source&nbsp;code</a></span>&nbsp;
</td>
</tr></table>
<pre class="literalblock">
__init__(self, Window parent, int id=-1, String title=EmptyString,
Point pos=DefaultPosition, Size size=DefaultSize,
long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -&gt; Dialog
</pre>
<dl class="fields">
<dt>Returns: EvtHandler</dt>
<dt>Overrides:
object.__init__
<dd><em class="note">(inherited documentation)</em></dd>
</dt>
</dl>
</td></tr></table>
</div>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="Gnumed-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Tree link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Index link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Help link -->
<th>&nbsp;&nbsp;&nbsp;<a
href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:07 2013
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
This diff is collapsed.
......@@ -122,7 +122,8 @@
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:03 2013
Generated by Epydoc 3.0.1
on Thu May 10 01:55:20 2018
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
......
......@@ -98,7 +98,8 @@ expandto(location.href);
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:57:16 2013
Generated by Epydoc 3.0.1
on Thu May 10 01:55:20 2018
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
......
......@@ -117,25 +117,8 @@
</td>
</tr>
</table>
<!-- ==================== VARIABLES ==================== -->
<a name="section-Variables"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Variables</span></td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">&nbsp;</span>
</td><td class="summary">
<a name="__package__"></a><span class="summary-name">__package__</span> = <code title="'Gnumed.artwork'"><code class="variable-quote">'</code><code class="variable-string">Gnumed.artwork</code><code class="variable-quote">'</code></code>
</td>
</tr>
</table>
<p class="indent-wrapped-lines"><b>Imports:</b>
<span title="wxversion">wxversion</span>,
<span title="wxPython.wx">wx</span>,
<span title="wx">wx</span>,
<span title="cStringIO">cStringIO</span>,
<span title="zlib">zlib</span>
</p><br />
......@@ -170,7 +153,8 @@
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:03 2013
Generated by Epydoc 3.0.1
on Thu May 10 01:55:20 2018
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
......
......@@ -60,37 +60,33 @@
</table>
<h1 class="epydoc">Source Code for <a href="Gnumed.artwork.checkboxOff-module.html">Module Gnumed.artwork.checkboxOff</a></h1>
<pre class="py-src">
<a name="L1"></a><tt class="py-lineno"> 1</tt> <tt class="py-line"><tt class="py-comment">#----------------------------------------------------------------------</tt> </tt>
<a name="L2"></a><tt class="py-lineno"> 2</tt> <tt class="py-line"><tt class="py-comment"># This file was generated by /usr/local/bin/img2py</tt> </tt>
<a name="L3"></a><tt class="py-lineno"> 3</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
<a name="L4"></a><tt class="py-lineno"> 4</tt> <tt class="py-line"><tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
<a name="L5"></a><tt class="py-lineno"> 5</tt> <tt class="py-line"> <tt class="py-keyword">import</tt> <tt class="py-name">wxversion</tt> </tt>
<a name="L6"></a><tt class="py-lineno"> 6</tt> <tt class="py-line"> <tt class="py-keyword">import</tt> <tt class="py-name">wx</tt> </tt>
<a name="L7"></a><tt class="py-lineno"> 7</tt> <tt class="py-line"><tt class="py-keyword">except</tt> <tt class="py-name">ImportError</tt><tt class="py-op">:</tt> </tt>
<a name="L8"></a><tt class="py-lineno"> 8</tt> <tt class="py-line"> <tt class="py-keyword">from</tt> <tt class="py-name">wxPython</tt> <tt class="py-keyword">import</tt> <tt class="py-name">wx</tt> </tt>
<a name="L9"></a><tt class="py-lineno"> 9</tt> <tt class="py-line"> <tt class="py-comment">#from wxPython.wx import wxImageFromStream, wxBitmapFromImage</tt> </tt>
<a name="L10"></a><tt class="py-lineno">10</tt> <tt class="py-line"> </tt>
<a name="L11"></a><tt class="py-lineno">11</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">cStringIO</tt><tt class="py-op">,</tt> <tt class="py-name">zlib</tt> </tt>
<a name="L12"></a><tt class="py-lineno">12</tt> <tt class="py-line"> </tt>
<a name="L13"></a><tt class="py-lineno">13</tt> <tt class="py-line"> </tt>
<a name="getCheckboxOff"></a><div id="getCheckboxOff-def"><a name="L14"></a><tt class="py-lineno">14</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOff-pysrc.html#" id="getCheckboxOff-toggle" onclick="return toggle('getCheckboxOff');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOff-module.html#getCheckboxOff">getCheckboxOff</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getCheckboxOff-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getCheckboxOff-expanded"><a name="L15"></a><tt class="py-lineno">15</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">zlib</tt><tt class="py-op">.</tt><tt class="py-name">decompress</tt><tt class="py-op">(</tt> </tt>
<a name="L16"></a><tt class="py-lineno">16</tt> <tt class="py-line"><tt class="py-string">'x\xda\xeb\x0c\xf0s\xe7\xe5\x92\xe2b``\xe0\xf5\xf4p\t\x02\xd1 \xcc\xc1\x06$\</tt> </tt>
<a name="L17"></a><tt class="py-lineno">17</tt> <tt class="py-line"><tt class="py-string">\x8b^?\xa9\x01R,\xc5N\x9e!\x1c@P\xc3\x91\xd2\x01\xe4\x87x\xba8\x86T\xccI\xbe\</tt> </tt>
<a name="L18"></a><tt class="py-lineno">18</tt> <tt class="py-line"><tt class="py-string">\xb3=\xff\xfe\xff\xdf\xdf\xdf\x1b\x0bp\x8b\x88\x8aJF\xbc\xbb\xbf\xff\xfc\x83\</tt> </tt>
<a name="L19"></a><tt class="py-lineno">19</tt> <tt class="py-line"><tt class="py-string">7o|\xa6\xb4\xc5\xef\xaf3\x94\xb1\xab\x99\xd1\xc8\xaa\xa6\xa0\xa4\xe4\x14 lnn\</tt> </tt>
<a name="L20"></a><tt class="py-lineno">20</tt> <tt class="py-line"><tt class="py-string">~\xf8\xe1\xe1v\xc9\x19\x1de\xe2B\x12W]\xca}uxx&amp;\xccx\xf6\xec\x99Z\x94\xb0\</tt> </tt>
<a name="L21"></a><tt class="py-lineno">21</tt> <tt class="py-line"><tt class="py-string">\xb2e&amp;?\x03\xdb\x16\xa9\xc7\x7f\x8eZ\xd8\x01\xcdg\xf0t\xf5sY\xe7\x94\xd0\x04\</tt> </tt>
<a name="L22"></a><tt class="py-lineno">22</tt> <tt class="py-line"><tt class="py-string">\x00\x1c\xe33\x82'</tt> <tt class="py-op">)</tt> </tt>
</div><a name="L23"></a><tt class="py-lineno">23</tt> <tt class="py-line"> </tt>
<a name="getCheckboxOffBitmap"></a><div id="getCheckboxOffBitmap-def"><a name="L24"></a><tt class="py-lineno">24</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOff-pysrc.html#" id="getCheckboxOffBitmap-toggle" onclick="return toggle('getCheckboxOffBitmap');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOff-module.html#getCheckboxOffBitmap">getCheckboxOffBitmap</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getCheckboxOffBitmap-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getCheckboxOffBitmap-expanded"><a name="L25"></a><tt class="py-lineno">25</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">wxBitmapFromImage</tt><tt class="py-op">(</tt><tt id="link-0" class="py-name" targets="Function Gnumed.artwork.checkboxOff.getImage()=Gnumed.artwork.checkboxOff-module.html#getImage,Function Gnumed.artwork.checkboxOn.getImage()=Gnumed.artwork.checkboxOn-module.html#getImage"><a title="Gnumed.artwork.checkboxOff.getImage
<a name="L1"></a><tt class="py-lineno"> 1</tt> <tt class="py-line"><tt class="py-comment"># -*- coding: utf-8 -*-</tt> </tt>
<a name="L2"></a><tt class="py-lineno"> 2</tt> <tt class="py-line"><tt class="py-comment">#----------------------------------------------------------------------</tt> </tt>
<a name="L3"></a><tt class="py-lineno"> 3</tt> <tt class="py-line"><tt class="py-comment"># This file was generated by /usr/local/bin/img2py</tt> </tt>
<a name="L4"></a><tt class="py-lineno"> 4</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
<a name="L5"></a><tt class="py-lineno"> 5</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">wx</tt> </tt>
<a name="L6"></a><tt class="py-lineno"> 6</tt> <tt class="py-line"> </tt>
<a name="L7"></a><tt class="py-lineno"> 7</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">cStringIO</tt><tt class="py-op">,</tt> <tt class="py-name">zlib</tt> </tt>
<a name="L8"></a><tt class="py-lineno"> 8</tt> <tt class="py-line"> </tt>
<a name="L9"></a><tt class="py-lineno"> 9</tt> <tt class="py-line"> </tt>
<a name="getCheckboxOff"></a><div id="getCheckboxOff-def"><a name="L10"></a><tt class="py-lineno">10</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOff-pysrc.html#" id="getCheckboxOff-toggle" onclick="return toggle('getCheckboxOff');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOff-module.html#getCheckboxOff">getCheckboxOff</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getCheckboxOff-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getCheckboxOff-expanded"><a name="L11"></a><tt class="py-lineno">11</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">zlib</tt><tt class="py-op">.</tt><tt class="py-name">decompress</tt><tt class="py-op">(</tt> </tt>
<a name="L12"></a><tt class="py-lineno">12</tt> <tt class="py-line"><tt class="py-string">'x\xda\xeb\x0c\xf0s\xe7\xe5\x92\xe2b``\xe0\xf5\xf4p\t\x02\xd1 \xcc\xc1\x06$\</tt> </tt>
<a name="L13"></a><tt class="py-lineno">13</tt> <tt class="py-line"><tt class="py-string">\x8b^?\xa9\x01R,\xc5N\x9e!\x1c@P\xc3\x91\xd2\x01\xe4\x87x\xba8\x86T\xccI\xbe\</tt> </tt>
<a name="L14"></a><tt class="py-lineno">14</tt> <tt class="py-line"><tt class="py-string">\xb3=\xff\xfe\xff\xdf\xdf\xdf\x1b\x0bp\x8b\x88\x8aJF\xbc\xbb\xbf\xff\xfc\x83\</tt> </tt>
<a name="L15"></a><tt class="py-lineno">15</tt> <tt class="py-line"><tt class="py-string">7o|\xa6\xb4\xc5\xef\xaf3\x94\xb1\xab\x99\xd1\xc8\xaa\xa6\xa0\xa4\xe4\x14 lnn\</tt> </tt>
<a name="L16"></a><tt class="py-lineno">16</tt> <tt class="py-line"><tt class="py-string">~\xf8\xe1\xe1v\xc9\x19\x1de\xe2B\x12W]\xca}uxx&amp;\xccx\xf6\xec\x99Z\x94\xb0\</tt> </tt>
<a name="L17"></a><tt class="py-lineno">17</tt> <tt class="py-line"><tt class="py-string">\xb2e&amp;?\x03\xdb\x16\xa9\xc7\x7f\x8eZ\xd8\x01\xcdg\xf0t\xf5sY\xe7\x94\xd0\x04\</tt> </tt>
<a name="L18"></a><tt class="py-lineno">18</tt> <tt class="py-line"><tt class="py-string">\x00\x1c\xe33\x82'</tt> <tt class="py-op">)</tt> </tt>
</div><a name="L19"></a><tt class="py-lineno">19</tt> <tt class="py-line"> </tt>
<a name="getCheckboxOffBitmap"></a><div id="getCheckboxOffBitmap-def"><a name="L20"></a><tt class="py-lineno">20</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOff-pysrc.html#" id="getCheckboxOffBitmap-toggle" onclick="return toggle('getCheckboxOffBitmap');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOff-module.html#getCheckboxOffBitmap">getCheckboxOffBitmap</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getCheckboxOffBitmap-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getCheckboxOffBitmap-expanded"><a name="L21"></a><tt class="py-lineno">21</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">wxBitmap</tt><tt class="py-op">(</tt><tt id="link-0" class="py-name" targets="Function Gnumed.artwork.checkboxOff.getImage()=Gnumed.artwork.checkboxOff-module.html#getImage,Function Gnumed.artwork.checkboxOn.getImage()=Gnumed.artwork.checkboxOn-module.html#getImage"><a title="Gnumed.artwork.checkboxOff.getImage
Gnumed.artwork.checkboxOn.getImage" class="py-name" href="Gnumed.artwork.checkboxOff-pysrc.html#" onclick="return doclink('link-0', 'getImage', 'link-0');">getImage</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
</div><a name="L26"></a><tt class="py-lineno">26</tt> <tt class="py-line"> </tt>
<a name="getImage"></a><div id="getImage-def"><a name="L27"></a><tt class="py-lineno">27</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOff-pysrc.html#" id="getImage-toggle" onclick="return toggle('getImage');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOff-module.html#getImage">getImage</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getImage-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getImage-expanded"><a name="L28"></a><tt class="py-lineno">28</tt> <tt class="py-line"> <tt class="py-name">stream</tt> <tt class="py-op">=</tt> <tt class="py-name">cStringIO</tt><tt class="py-op">.</tt><tt class="py-name">StringIO</tt><tt class="py-op">(</tt><tt id="link-1" class="py-name" targets="Function Gnumed.artwork.checkboxOff.getCheckboxOff()=Gnumed.artwork.checkboxOff-module.html#getCheckboxOff"><a title="Gnumed.artwork.checkboxOff.getCheckboxOff" class="py-name" href="Gnumed.artwork.checkboxOff-pysrc.html#" onclick="return doclink('link-1', 'getCheckboxOff', 'link-1');">getCheckboxOff</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
<a name="L29"></a><tt class="py-lineno">29</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">wxImageFromStream</tt><tt class="py-op">(</tt><tt class="py-name">stream</tt><tt class="py-op">)</tt> </tt>
</div><a name="L30"></a><tt class="py-lineno">30</tt> <tt class="py-line"> </tt><script type="text/javascript">
</div><a name="L22"></a><tt class="py-lineno">22</tt> <tt class="py-line"> </tt>
<a name="getImage"></a><div id="getImage-def"><a name="L23"></a><tt class="py-lineno">23</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOff-pysrc.html#" id="getImage-toggle" onclick="return toggle('getImage');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOff-module.html#getImage">getImage</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getImage-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getImage-expanded"><a name="L24"></a><tt class="py-lineno">24</tt> <tt class="py-line"> <tt class="py-name">stream</tt> <tt class="py-op">=</tt> <tt class="py-name">cStringIO</tt><tt class="py-op">.</tt><tt class="py-name">StringIO</tt><tt class="py-op">(</tt><tt id="link-1" class="py-name" targets="Function Gnumed.artwork.checkboxOff.getCheckboxOff()=Gnumed.artwork.checkboxOff-module.html#getCheckboxOff"><a title="Gnumed.artwork.checkboxOff.getCheckboxOff" class="py-name" href="Gnumed.artwork.checkboxOff-pysrc.html#" onclick="return doclink('link-1', 'getCheckboxOff', 'link-1');">getCheckboxOff</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
<a name="L25"></a><tt class="py-lineno">25</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">wxImageFromStream</tt><tt class="py-op">(</tt><tt class="py-name">stream</tt><tt class="py-op">)</tt> </tt>
</div><a name="L26"></a><tt class="py-lineno">26</tt> <tt class="py-line"> </tt><script type="text/javascript">
<!--
expandto(location.href);
// -->
......@@ -128,7 +124,8 @@ expandto(location.href);
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:57:06 2013
Generated by Epydoc 3.0.1
on Thu May 10 01:55:20 2018
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
......
......@@ -117,25 +117,8 @@
</td>
</tr>
</table>
<!-- ==================== VARIABLES ==================== -->
<a name="section-Variables"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td align="left" colspan="2" class="table-header">
<span class="table-header">Variables</span></td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">&nbsp;</span>
</td><td class="summary">
<a name="__package__"></a><span class="summary-name">__package__</span> = <code title="'Gnumed.artwork'"><code class="variable-quote">'</code><code class="variable-string">Gnumed.artwork</code><code class="variable-quote">'</code></code>
</td>
</tr>
</table>
<p class="indent-wrapped-lines"><b>Imports:</b>
<span title="wxversion">wxversion</span>,
<span title="wxPython.wx">wx</span>,
<span title="wx">wx</span>,
<span title="cStringIO">cStringIO</span>,
<span title="zlib">zlib</span>
</p><br />
......@@ -170,7 +153,8 @@
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:03 2013
Generated by Epydoc 3.0.1
on Thu May 10 01:55:20 2018
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
......
......@@ -60,43 +60,39 @@
</table>
<h1 class="epydoc">Source Code for <a href="Gnumed.artwork.checkboxOn-module.html">Module Gnumed.artwork.checkboxOn</a></h1>
<pre class="py-src">
<a name="L1"></a><tt class="py-lineno"> 1</tt> <tt class="py-line"><tt class="py-comment">#----------------------------------------------------------------------</tt> </tt>
<a name="L2"></a><tt class="py-lineno"> 2</tt> <tt class="py-line"><tt class="py-comment"># This file was generated by /usr/local/bin/img2py</tt> </tt>
<a name="L3"></a><tt class="py-lineno"> 3</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
<a name="L4"></a><tt class="py-lineno"> 4</tt> <tt class="py-line"><tt class="py-keyword">try</tt><tt class="py-op">:</tt> </tt>
<a name="L5"></a><tt class="py-lineno"> 5</tt> <tt class="py-line"> <tt class="py-keyword">import</tt> <tt class="py-name">wxversion</tt> </tt>
<a name="L6"></a><tt class="py-lineno"> 6</tt> <tt class="py-line"> <tt class="py-keyword">import</tt> <tt class="py-name">wx</tt> </tt>
<a name="L7"></a><tt class="py-lineno"> 7</tt> <tt class="py-line"><tt class="py-keyword">except</tt> <tt class="py-name">ImportError</tt><tt class="py-op">:</tt> </tt>
<a name="L8"></a><tt class="py-lineno"> 8</tt> <tt class="py-line"> <tt class="py-keyword">from</tt> <tt class="py-name">wxPython</tt> <tt class="py-keyword">import</tt> <tt class="py-name">wx</tt> </tt>
<a name="L9"></a><tt class="py-lineno"> 9</tt> <tt class="py-line"> <tt class="py-comment">#from wxPython.wx import wxImageFromStream, wxBitmapFromImage</tt> </tt>
<a name="L10"></a><tt class="py-lineno">10</tt> <tt class="py-line"> </tt>
<a name="L11"></a><tt class="py-lineno">11</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">cStringIO</tt><tt class="py-op">,</tt> <tt class="py-name">zlib</tt> </tt>
<a name="L12"></a><tt class="py-lineno">12</tt> <tt class="py-line"> </tt>
<a name="L13"></a><tt class="py-lineno">13</tt> <tt class="py-line"> </tt>
<a name="getCheckboxOn"></a><div id="getCheckboxOn-def"><a name="L14"></a><tt class="py-lineno">14</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOn-pysrc.html#" id="getCheckboxOn-toggle" onclick="return toggle('getCheckboxOn');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOn-module.html#getCheckboxOn">getCheckboxOn</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getCheckboxOn-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getCheckboxOn-expanded"><a name="L15"></a><tt class="py-lineno">15</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">zlib</tt><tt class="py-op">.</tt><tt class="py-name">decompress</tt><tt class="py-op">(</tt> </tt>
<a name="L16"></a><tt class="py-lineno">16</tt> <tt class="py-line"><tt class="py-string">"x\xda\x01D\x01\xbb\xfe\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\r\x00\</tt> </tt>
<a name="L17"></a><tt class="py-lineno">17</tt> <tt class="py-line"><tt class="py-string">\x00\x00\r\x08\x06\x00\x00\x00r\xeb\xe4|\x00\x00\x00\x04sBIT\x08\x08\x08\x08\</tt> </tt>
<a name="L18"></a><tt class="py-lineno">18</tt> <tt class="py-line"><tt class="py-string">|\x08d\x88\x00\x00\x00\xfbIDATx\x9c\x9d\x921\x8a\x83P\x10\x86\xbf,\xe9\xec$`\</tt> </tt>
<a name="L19"></a><tt class="py-lineno">19</tt> <tt class="py-line"><tt class="py-string">'Xx\x02\xc1\x03$bc\xf3\x0e`oi!D\xbbW[\xbc&amp;\xa4\x14/`\xe7\x01l&lt;\x80\x8d\xfd+\</tt> </tt>
<a name="L20"></a><tt class="py-lineno">20</tt> <tt class="py-line"><tt class="py-string">\x03\xe2\tl\xb2\xc5\xb2\x82$\x1bd\xa7\x9b\x9f\xf9f\xfe\x19\xe6\xd0u\xddSk\</tt> </tt>
<a name="L21"></a><tt class="py-lineno">21</tt> <tt class="py-line"><tt class="py-string">\xcd\xdep\x1c\x87\xa3\xd6\x9a\xcb\xe5\xb2\x0bX\x96\x85\xbe\xef9\xfe\n\xa7\</tt> </tt>
<a name="L22"></a><tt class="py-lineno">22</tt> <tt class="py-line"><tt class="py-string">\xd3\xe9#\xf0x&lt;p]\x97\xbe\xef\xf9\xda3A)E\x92$k~\xfcP\x0b\x80\x94\x92a\x18\</tt> </tt>
<a name="L23"></a><tt class="py-lineno">23</tt> <tt class="py-line"><tt class="py-string">\x90R\xee\x83\xa4\x94(\xa5h\xdb\x16\xcf\xf3V}c\xaf(\n\xaa\xaa\x02`\x1cG\x94R\</tt> </tt>
<a name="L24"></a><tt class="py-lineno">24</tt> <tt class="py-line"><tt class="py-string">dY\xc6\xf9|\xde4['\x95e\xc9\xfd~\x07~\x8eR\xd75\xb6m\x13E\xd1\x8b\x83\x15\</tt> </tt>
<a name="L25"></a><tt class="py-lineno">25</tt> <tt class="py-line"><tt class="py-string">\xca\xf3\x9ci\x9ah\x9a\x868\x8e\x01\x08\x82\x00\xdf\xf7_\xa0\x8d\xbd\xeb\xf5\</tt> </tt>
<a name="L26"></a><tt class="py-lineno">26</tt> <tt class="py-line"><tt class="py-string">\xca\xedv\xc34M\x00\xc20|\xbb\xeb\xe6\x10\x96e!\x84`\x9eg\xda\xb6E\x08\xf17\</tt> </tt>
<a name="L27"></a><tt class="py-lineno">27</tt> <tt class="py-line"><tt class="py-string">\xb4,\x0b\x86a\xacb\x9a\xa6\xa4i\xfa\x16\x008\xfc\xe7\xf7\xbe\x01\x92\xe9R\</tt> </tt>
<a name="L28"></a><tt class="py-lineno">28</tt> <tt class="py-line"><tt class="py-string">\x8b&amp;]\x902\x00\x00\x00\x00IEND\xaeB`\x82\xd6/\x8b\x02"</tt> <tt class="py-op">)</tt> </tt>
</div><a name="L29"></a><tt class="py-lineno">29</tt> <tt class="py-line"> </tt>
<a name="getCheckboxOnBitmap"></a><div id="getCheckboxOnBitmap-def"><a name="L30"></a><tt class="py-lineno">30</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOn-pysrc.html#" id="getCheckboxOnBitmap-toggle" onclick="return toggle('getCheckboxOnBitmap');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOn-module.html#getCheckboxOnBitmap">getCheckboxOnBitmap</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getCheckboxOnBitmap-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getCheckboxOnBitmap-expanded"><a name="L31"></a><tt class="py-lineno">31</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">wxBitmapFromImage</tt><tt class="py-op">(</tt><tt id="link-0" class="py-name" targets="Function Gnumed.artwork.checkboxOff.getImage()=Gnumed.artwork.checkboxOff-module.html#getImage,Function Gnumed.artwork.checkboxOn.getImage()=Gnumed.artwork.checkboxOn-module.html#getImage"><a title="Gnumed.artwork.checkboxOff.getImage
<a name="L1"></a><tt class="py-lineno"> 1</tt> <tt class="py-line"><tt class="py-comment"># -*- coding: utf-8 -*-</tt> </tt>
<a name="L2"></a><tt class="py-lineno"> 2</tt> <tt class="py-line"><tt class="py-comment">#----------------------------------------------------------------------</tt> </tt>
<a name="L3"></a><tt class="py-lineno"> 3</tt> <tt class="py-line"><tt class="py-comment"># This file was generated by /usr/local/bin/img2py</tt> </tt>
<a name="L4"></a><tt class="py-lineno"> 4</tt> <tt class="py-line"><tt class="py-comment">#</tt> </tt>
<a name="L5"></a><tt class="py-lineno"> 5</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">wx</tt> </tt>
<a name="L6"></a><tt class="py-lineno"> 6</tt> <tt class="py-line"> </tt>
<a name="L7"></a><tt class="py-lineno"> 7</tt> <tt class="py-line"><tt class="py-keyword">import</tt> <tt class="py-name">cStringIO</tt><tt class="py-op">,</tt> <tt class="py-name">zlib</tt> </tt>
<a name="L8"></a><tt class="py-lineno"> 8</tt> <tt class="py-line"> </tt>
<a name="L9"></a><tt class="py-lineno"> 9</tt> <tt class="py-line"> </tt>
<a name="getCheckboxOn"></a><div id="getCheckboxOn-def"><a name="L10"></a><tt class="py-lineno">10</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOn-pysrc.html#" id="getCheckboxOn-toggle" onclick="return toggle('getCheckboxOn');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOn-module.html#getCheckboxOn">getCheckboxOn</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getCheckboxOn-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getCheckboxOn-expanded"><a name="L11"></a><tt class="py-lineno">11</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">zlib</tt><tt class="py-op">.</tt><tt class="py-name">decompress</tt><tt class="py-op">(</tt> </tt>
<a name="L12"></a><tt class="py-lineno">12</tt> <tt class="py-line"><tt class="py-string">"x\xda\x01D\x01\xbb\xfe\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\r\x00\</tt> </tt>
<a name="L13"></a><tt class="py-lineno">13</tt> <tt class="py-line"><tt class="py-string">\x00\x00\r\x08\x06\x00\x00\x00r\xeb\xe4|\x00\x00\x00\x04sBIT\x08\x08\x08\x08\</tt> </tt>
<a name="L14"></a><tt class="py-lineno">14</tt> <tt class="py-line"><tt class="py-string">|\x08d\x88\x00\x00\x00\xfbIDATx\x9c\x9d\x921\x8a\x83P\x10\x86\xbf,\xe9\xec$`\</tt> </tt>
<a name="L15"></a><tt class="py-lineno">15</tt> <tt class="py-line"><tt class="py-string">'Xx\x02\xc1\x03$bc\xf3\x0e`oi!D\xbbW[\xbc&amp;\xa4\x14/`\xe7\x01l&lt;\x80\x8d\xfd+\</tt> </tt>
<a name="L16"></a><tt class="py-lineno">16</tt> <tt class="py-line"><tt class="py-string">\x03\xe2\tl\xb2\xc5\xb2\x82$\x1bd\xa7\x9b\x9f\xf9f\xfe\x19\xe6\xd0u\xddSk\</tt> </tt>
<a name="L17"></a><tt class="py-lineno">17</tt> <tt class="py-line"><tt class="py-string">\xcd\xdep\x1c\x87\xa3\xd6\x9a\xcb\xe5\xb2\x0bX\x96\x85\xbe\xef9\xfe\n\xa7\</tt> </tt>
<a name="L18"></a><tt class="py-lineno">18</tt> <tt class="py-line"><tt class="py-string">\xd3\xe9#\xf0x&lt;p]\x97\xbe\xef\xf9\xda3A)E\x92$k~\xfcP\x0b\x80\x94\x92a\x18\</tt> </tt>
<a name="L19"></a><tt class="py-lineno">19</tt> <tt class="py-line"><tt class="py-string">\x90R\xee\x83\xa4\x94(\xa5h\xdb\x16\xcf\xf3V}c\xaf(\n\xaa\xaa\x02`\x1cG\x94R\</tt> </tt>
<a name="L20"></a><tt class="py-lineno">20</tt> <tt class="py-line"><tt class="py-string">dY\xc6\xf9|\xde4['\x95e\xc9\xfd~\x07~\x8eR\xd75\xb6m\x13E\xd1\x8b\x83\x15\</tt> </tt>
<a name="L21"></a><tt class="py-lineno">21</tt> <tt class="py-line"><tt class="py-string">\xca\xf3\x9ci\x9ah\x9a\x868\x8e\x01\x08\x82\x00\xdf\xf7_\xa0\x8d\xbd\xeb\xf5\</tt> </tt>
<a name="L22"></a><tt class="py-lineno">22</tt> <tt class="py-line"><tt class="py-string">\xca\xedv\xc34M\x00\xc20|\xbb\xeb\xe6\x10\x96e!\x84`\x9eg\xda\xb6E\x08\xf17\</tt> </tt>
<a name="L23"></a><tt class="py-lineno">23</tt> <tt class="py-line"><tt class="py-string">\xb4,\x0b\x86a\xacb\x9a\xa6\xa4i\xfa\x16\x008\xfc\xe7\xf7\xbe\x01\x92\xe9R\</tt> </tt>
<a name="L24"></a><tt class="py-lineno">24</tt> <tt class="py-line"><tt class="py-string">\x8b&amp;]\x902\x00\x00\x00\x00IEND\xaeB`\x82\xd6/\x8b\x02"</tt> <tt class="py-op">)</tt> </tt>
</div><a name="L25"></a><tt class="py-lineno">25</tt> <tt class="py-line"> </tt>
<a name="getCheckboxOnBitmap"></a><div id="getCheckboxOnBitmap-def"><a name="L26"></a><tt class="py-lineno">26</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOn-pysrc.html#" id="getCheckboxOnBitmap-toggle" onclick="return toggle('getCheckboxOnBitmap');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOn-module.html#getCheckboxOnBitmap">getCheckboxOnBitmap</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getCheckboxOnBitmap-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getCheckboxOnBitmap-expanded"><a name="L27"></a><tt class="py-lineno">27</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">wxBitmap</tt><tt class="py-op">(</tt><tt id="link-0" class="py-name" targets="Function Gnumed.artwork.checkboxOff.getImage()=Gnumed.artwork.checkboxOff-module.html#getImage,Function Gnumed.artwork.checkboxOn.getImage()=Gnumed.artwork.checkboxOn-module.html#getImage"><a title="Gnumed.artwork.checkboxOff.getImage
Gnumed.artwork.checkboxOn.getImage" class="py-name" href="Gnumed.artwork.checkboxOn-pysrc.html#" onclick="return doclink('link-0', 'getImage', 'link-0');">getImage</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
</div><a name="L32"></a><tt class="py-lineno">32</tt> <tt class="py-line"> </tt>
<a name="getImage"></a><div id="getImage-def"><a name="L33"></a><tt class="py-lineno">33</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOn-pysrc.html#" id="getImage-toggle" onclick="return toggle('getImage');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOn-module.html#getImage">getImage</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getImage-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getImage-expanded"><a name="L34"></a><tt class="py-lineno">34</tt> <tt class="py-line"> <tt class="py-name">stream</tt> <tt class="py-op">=</tt> <tt class="py-name">cStringIO</tt><tt class="py-op">.</tt><tt class="py-name">StringIO</tt><tt class="py-op">(</tt><tt id="link-1" class="py-name" targets="Function Gnumed.artwork.checkboxOn.getCheckboxOn()=Gnumed.artwork.checkboxOn-module.html#getCheckboxOn"><a title="Gnumed.artwork.checkboxOn.getCheckboxOn" class="py-name" href="Gnumed.artwork.checkboxOn-pysrc.html#" onclick="return doclink('link-1', 'getCheckboxOn', 'link-1');">getCheckboxOn</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
<a name="L35"></a><tt class="py-lineno">35</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">wxImageFromStream</tt><tt class="py-op">(</tt><tt class="py-name">stream</tt><tt class="py-op">)</tt> </tt>
</div><a name="L36"></a><tt class="py-lineno">36</tt> <tt class="py-line"> </tt><script type="text/javascript">
</div><a name="L28"></a><tt class="py-lineno">28</tt> <tt class="py-line"> </tt>
<a name="getImage"></a><div id="getImage-def"><a name="L29"></a><tt class="py-lineno">29</tt> <a class="py-toggle" href="Gnumed.artwork.checkboxOn-pysrc.html#" id="getImage-toggle" onclick="return toggle('getImage');">-</a><tt class="py-line"><tt class="py-keyword">def</tt> <a class="py-def-name" href="Gnumed.artwork.checkboxOn-module.html#getImage">getImage</a><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
</div><div id="getImage-collapsed" style="display:none;" pad="++" indent="++++"></div><div id="getImage-expanded"><a name="L30"></a><tt class="py-lineno">30</tt> <tt class="py-line"> <tt class="py-name">stream</tt> <tt class="py-op">=</tt> <tt class="py-name">cStringIO</tt><tt class="py-op">.</tt><tt class="py-name">StringIO</tt><tt class="py-op">(</tt><tt id="link-1" class="py-name" targets="Function Gnumed.artwork.checkboxOn.getCheckboxOn()=Gnumed.artwork.checkboxOn-module.html#getCheckboxOn"><a title="Gnumed.artwork.checkboxOn.getCheckboxOn" class="py-name" href="Gnumed.artwork.checkboxOn-pysrc.html#" onclick="return doclink('link-1', 'getCheckboxOn', 'link-1');">getCheckboxOn</a></tt><tt class="py-op">(</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
<a name="L31"></a><tt class="py-lineno">31</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">wxImageFromStream</tt><tt class="py-op">(</tt><tt class="py-name">stream</tt><tt class="py-op">)</tt> </tt>
</div><a name="L32"></a><tt class="py-lineno">32</tt> <tt class="py-line"> </tt><script type="text/javascript">
<!--
expandto(location.href);
// -->
......@@ -134,7 +130,8 @@ expandto(location.href);
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:57:34 2013
Generated by Epydoc 3.0.1
on Thu May 10 01:55:20 2018
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
......
......@@ -72,24 +72,30 @@
<li> <strong class="uidlink"><a href="Gnumed.business.gmATC-module.html">Gnumed.business.gmATC</a></strong>: <em class="summary">ATC handling code.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmAllergy-module.html">Gnumed.business.gmAllergy</a></strong>: <em class="summary">GNUmed allergy related business object.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmArriba-module.html">Gnumed.business.gmArriba</a></strong>: <em class="summary">GNUmed &lt;-&gt; arriba coupling.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmAutoHints-module.html">Gnumed.business.gmAutoHints</a></strong>: <em class="summary">GNUmed auto hints middleware.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmBilling-module.html">Gnumed.business.gmBilling</a></strong>: <em class="summary">Billing code.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmCA_MSVA-module.html">Gnumed.business.gmCA_MSVA</a></strong>: <em class="summary">GNUmed to MSVA (Canada) connector classes.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmClinNarrative-module.html">Gnumed.business.gmClinNarrative</a></strong>: <em class="summary">GNUmed clinical narrative business object.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmClinicalCalculator-module.html">Gnumed.business.gmClinicalCalculator</a></strong>: <em class="summary">GNUmed clinical calculator(s)</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmClinicalRecord-module.html">Gnumed.business.gmClinicalRecord</a></strong>: <em class="summary">GNUmed clinical patient record.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmCoding-module.html">Gnumed.business.gmCoding</a></strong>: <em class="summary">GNUmed coding systems handling middleware</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmDICOM-module.html">Gnumed.business.gmDICOM</a></strong> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmDataMining-module.html">Gnumed.business.gmDataMining</a></strong>: <em class="summary">GNUmed data mining middleware.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmDemographicRecord-module.html">Gnumed.business.gmDemographicRecord</a></strong>: <em class="summary">GNUmed demographics object.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmDevices-module.html">Gnumed.business.gmDevices</a></strong> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmDocuments-module.html">Gnumed.business.gmDocuments</a></strong>: <em class="summary">This module encapsulates a document stored in a GNUmed database.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmDrugDataSources-module.html">Gnumed.business.gmDrugDataSources</a></strong>: <em class="summary">Code handling drug data sources (such as databases).</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmEMRStructItems-module.html">Gnumed.business.gmEMRStructItems</a></strong>: <em class="summary">GNUmed health related business object.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmExportTray-module.html">Gnumed.business.gmExportTray</a></strong>: <em class="summary">GNUmed export tray / filing cabinet.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmExportArea-module.html">Gnumed.business.gmExportArea</a></strong>: <em class="summary">GNUmed export area</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmExternalCare-module.html">Gnumed.business.gmExternalCare</a></strong>: <em class="summary">GNUmed external care classes.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmFamilyHistory-module.html">Gnumed.business.gmFamilyHistory</a></strong>: <em class="summary">GNUmed family history handling middleware</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmForms-module.html">Gnumed.business.gmForms</a></strong>: <em class="summary">GNUmed forms classes</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmHL7-module.html">Gnumed.business.gmHL7</a></strong>: <em class="summary">Some HL7 handling.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmIncomingData-module.html">Gnumed.business.gmIncomingData</a></strong>: <em class="summary">Handling of &lt;INCOMING&gt; area.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmKVK-module.html">Gnumed.business.gmKVK</a></strong>: <em class="summary">GNUmed German KVK/eGK objects.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmKeywordExpansion-module.html">Gnumed.business.gmKeywordExpansion</a></strong>: <em class="summary">GNUmed keyword snippet expansions</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmLOINC-module.html">Gnumed.business.gmLOINC</a></strong>: <em class="summary">LOINC handling code.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmLinuxMedNewsXML-module.html">Gnumed.business.gmLinuxMedNewsXML</a></strong>: <em class="summary">Import LinuxMedNews XML data.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmMedication-module.html">Gnumed.business.gmMedication</a></strong>: <em class="summary">Medication handling code.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmOrganization-module.html">Gnumed.business.gmOrganization</a></strong>: <em class="summary">Organization classes</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmPathLab-module.html">Gnumed.business.gmPathLab</a></strong>: <em class="summary">GNUmed measurements related business objects.</em> </li>
......@@ -99,7 +105,10 @@
<li> <strong class="uidlink"><a href="Gnumed.business.gmPraxis-module.html">Gnumed.business.gmPraxis</a></strong>: <em class="summary">GNUmed Praxis related middleware.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmProviderInbox-module.html">Gnumed.business.gmProviderInbox</a></strong>: <em class="summary">GNUmed provider inbox middleware.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmSOAPimporter-module.html">Gnumed.business.gmSOAPimporter</a></strong>: <em class="summary">GNUmed SOAP importer</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmSoapDefs-module.html">Gnumed.business.gmSoapDefs</a></strong>: <em class="summary">GNUmed SOAP related defintions</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmStaff-module.html">Gnumed.business.gmStaff</a></strong>: <em class="summary">GNUmed staff objects.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmVCard-module.html">Gnumed.business.gmVCard</a></strong>: <em class="summary">Import vCard data.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmVaccDefs-module.html">Gnumed.business.gmVaccDefs</a></strong>: <em class="summary">GNUmed vaccination related definitions (only).</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmVaccination-module.html">Gnumed.business.gmVaccination</a></strong>: <em class="summary">GNUmed vaccination related business objects.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmXdtMappings-module.html">Gnumed.business.gmXdtMappings</a></strong>: <em class="summary">GNUmed German xDT mapping data.</em> </li>
<li> <strong class="uidlink"><a href="Gnumed.business.gmXdtObjects-module.html">Gnumed.business.gmXdtObjects</a></strong>: <em class="summary">GNUmed German XDT parsing objects.</em> </li>
......@@ -126,20 +135,8 @@
</tr>
</table>
<p class="indent-wrapped-lines"><b>Imports:</b>
<a href="Gnumed.business.gmATC-module.html" title="Gnumed.business.gmATC">gmATC</a>,
<a href="Gnumed.business.gmAllergy-module.html" title="Gnumed.business.gmAllergy">gmAllergy</a>,
<a href="Gnumed.business.gmBilling-module.html" title="Gnumed.business.gmBilling">gmBilling</a>,
<a href="Gnumed.business.gmClinNarrative-module.html" title="Gnumed.business.gmClinNarrative">gmClinNarrative</a>,
<a href="Gnumed.business.gmCoding-module.html" title="Gnumed.business.gmCoding">gmCoding</a>,
<a href="Gnumed.business.gmDemographicRecord-module.html" title="Gnumed.business.gmDemographicRecord">gmDemographicRecord</a>,
<a href="Gnumed.business.gmDocuments-module.html" title="Gnumed.business.gmDocuments">gmDocuments</a>,
<a href="Gnumed.business.gmEMRStructItems-module.html" title="Gnumed.business.gmEMRStructItems">gmEMRStructItems</a>,
<a href="Gnumed.business.gmKeywordExpansion-module.html" title="Gnumed.business.gmKeywordExpansion">gmKeywordExpansion</a>,
<a href="Gnumed.business.gmLOINC-module.html" title="Gnumed.business.gmLOINC">gmLOINC</a>,
<a href="Gnumed.business.gmOrganization-module.html" title="Gnumed.business.gmOrganization">gmOrganization</a>,
<a href="Gnumed.business.gmPathLab-module.html" title="Gnumed.business.gmPathLab">gmPathLab</a>,
<a href="Gnumed.business.gmPraxis-module.html" title="Gnumed.business.gmPraxis">gmPraxis</a>,
<a href="Gnumed.business.gmStaff-module.html" title="Gnumed.business.gmStaff">gmStaff</a>
<a href="Gnumed.business.gmIncomingData-module.html" title="Gnumed.business.gmIncomingData">gmIncomingData</a>
</p><br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
......@@ -172,7 +169,8 @@
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:03 2013
Generated by Epydoc 3.0.1
on Thu May 10 01:55:20 2018
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
......
......@@ -98,7 +98,8 @@ expandto(location.href);
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:31 2013
Generated by Epydoc 3.0.1
on Thu May 10 01:55:20 2018
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
......
......@@ -64,15 +64,14 @@
<p>http://who.no</p>
<p>There is no DDD handling because DDD explicitely does not carry
clinical meaning.</p>
<p>license: GPL v2 or later</p>
<hr />
<div class="fields"> <p><strong>Version:</strong>
$Revision: 1.7 $
</p>
<p><strong>Author:</strong>
<div class="fields"> <p><strong>Author:</strong>
K.Hilbert &lt;Karsten.Hilbert@gmx.net&gt;
</p>
<p><strong>License:</strong>
GPL v2 or later
</p>
</div><!-- ==================== FUNCTIONS ==================== -->
<a name="section-Functions"></a>
<table class="summary" border="1" cellpadding="3"
......@@ -88,7 +87,8 @@
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="propagate_atc"></a><span class="summary-sig-name">propagate_atc</span>(<span class="summary-sig-arg">substance</span>=<span class="summary-sig-default">None</span>,
<span class="summary-sig-arg">atc</span>=<span class="summary-sig-default">None</span>)</span></td>
<span class="summary-sig-arg">atc</span>=<span class="summary-sig-default">None</span>,
<span class="summary-sig-arg">link_obj</span>=<span class="summary-sig-default">None</span>)</span></td>
<td align="right" valign="top">
<span class="codelink"><a href="Gnumed.business.gmATC-pysrc.html#propagate_atc">source&nbsp;code</a></span>
......@@ -105,7 +105,8 @@
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="text2atc"></a><span class="summary-sig-name">text2atc</span>(<span class="summary-sig-arg">text</span>=<span class="summary-sig-default">None</span>,
<span class="summary-sig-arg">fuzzy</span>=<span class="summary-sig-default">False</span>)</span></td>
<span class="summary-sig-arg">fuzzy</span>=<span class="summary-sig-default">False</span>,
<span class="summary-sig-arg">link_obj</span>=<span class="summary-sig-default">None</span>)</span></td>
<td align="right" valign="top">
<span class="codelink"><a href="Gnumed.business.gmATC-pysrc.html#text2atc">source&nbsp;code</a></span>
......@@ -121,7 +122,23 @@
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="get_reference_atcs"></a><span class="summary-sig-name">get_reference_atcs</span>(<span class="summary-sig-arg">order_by</span>=<span class="summary-sig-default"><code class="variable-quote">u'</code><code class="variable-string">atc, term, lang</code><code class="variable-quote">'</code></span>)</span></td>
<td><span class="summary-sig"><a name="exists_as_atc"></a><span class="summary-sig-name">exists_as_atc</span>(<span class="summary-sig-arg">substance</span>)</span></td>
<td align="right" valign="top">
<span class="codelink"><a href="Gnumed.business.gmATC-pysrc.html#exists_as_atc">source&nbsp;code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">&nbsp;</span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="get_reference_atcs"></a><span class="summary-sig-name">get_reference_atcs</span>(<span class="summary-sig-arg">order_by</span>=<span class="summary-sig-default"><code class="variable-quote">'</code><code class="variable-string">atc, term, lang</code><code class="variable-quote">'</code></span>)</span></td>
<td align="right" valign="top">
<span class="codelink"><a href="Gnumed.business.gmATC-pysrc.html#get_reference_atcs">source&nbsp;code</a></span>
......@@ -157,6 +174,20 @@
<td align="left" colspan="2" class="table-header">
<span class="table-header">Variables</span></td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">&nbsp;</span>
</td><td class="summary">
<a name="ATC_NICOTINE"></a><span class="summary-name">ATC_NICOTINE</span> = <code title="'N07BA01'"><code class="variable-quote">'</code><code class="variable-string">N07BA01</code><code class="variable-quote">'</code></code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">&nbsp;</span>
</td><td class="summary">
<a name="ATC_ETHANOL"></a><span class="summary-name">ATC_ETHANOL</span> = <code title="'V03AB16'"><code class="variable-quote">'</code><code class="variable-string">V03AB16</code><code class="variable-quote">'</code></code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type">&nbsp;</span>
......@@ -167,11 +198,11 @@
</table>
<p class="indent-wrapped-lines"><b>Imports:</b>
<span title="sys">sys</span>,
<span title="codecs">codecs</span>,
<span title="io">io</span>,
<span title="logging">logging</span>,
<span title="csv">csv</span>,
<span title="re">regex</span>,
<span title="os">os</span>,
<span title="re">regex</span>,
<a href="Gnumed.pycommon.gmPG2-module.html" title="Gnumed.pycommon.gmPG2">gmPG2</a>,
<a href="Gnumed.pycommon.gmTools-module.html" title="Gnumed.pycommon.gmTools">gmTools</a>,
<a href="Gnumed.pycommon.gmCfg2-module.html" title="Gnumed.pycommon.gmCfg2">gmCfg2</a>
......@@ -207,7 +238,8 @@
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat Oct 5 03:56:03 2013
Generated by Epydoc 3.0.1
on Thu May 10 01:55:20 2018
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
......