1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
|
# -*- coding: utf-8 -*-
"""GNUmed keyword expansion widgets."""
#================================================================
__author__ = "Karsten Hilbert <Karsten.Hilbert@gmx.net>"
__license__ = "GPL v2 or later"
import logging
import sys
import re as regex
import os.path
import wx
if __name__ == '__main__':
sys.path.insert(0, '../../')
from Gnumed.pycommon import gmDispatcher
from Gnumed.pycommon import gmPG2
from Gnumed.pycommon import gmTools
from Gnumed.business import gmKeywordExpansion
from Gnumed.wxpython import gmEditArea
from Gnumed.wxpython import gmListWidgets
_log = logging.getLogger('gm.ui')
_text_expansion_fillin_regex = r'\$\[.*\]\$'
#============================================================
class cKeywordExpansion_TextCtrlMixin():
def __init__(self):
if not isinstance(self, (wx.TextCtrl, wx.stc.StyledTextCtrl)):
raise TypeError('[%s]: can only be applied to wx.TextCtrl or wx.stc.StyledTextCtrl, not [%s]' % (cKeywordExpansion_TextCtrlMixin, self.__class__.__name__))
#--------------------------------------------------------
def enable_keyword_expansions(self):
self.__keyword_separators = regex.compile("[!?'\".,:;)}\]\r\n\s\t]+")
self.Bind(wx.EVT_CHAR, self.__on_char_in_keyword_expansion_mixin)
#--------------------------------------------------------
def disable_keyword_expansions(self):
self.Unbind(wx.EVT_CHAR)
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def __on_char_in_keyword_expansion_mixin(self, evt):
evt.Skip()
# empty ?
if self.LastPosition == 1:
return
char = unichr(evt.GetUnicodeKey())
explicit_expansion = False
if evt.GetModifiers() == (wx.MOD_CMD | wx.MOD_ALT): # portable CTRL-ALT-...
if evt.GetKeyCode() == wx.WXK_RETURN: # CTRL-ALT-ENTER
explicit_expansion = True
elif evt.GetKeyCode() == 20: # CTRL-ALT-T
explicit_expansion = True
else:
return
if not explicit_expansion:
# user did not press CTRL-ALT-ENTER,
# however, did they last enter a
# "keyword separator", active character ?
if self.__keyword_separators.match(char) is None:
return
caret_pos_in_document = self.InsertionPoint
if isinstance(self, wx.stc.StyledTextCtrl):
caret_pos_in_line = self.GetCurrentPos()
line_no = self.GetCurrentLine()
# reimplement PositionToXY() as LineFromPos()/GetColumn(GetCurrentPos)
else:
caret_pos_in_line, line_no = self.PositionToXY(caret_pos_in_document)
line = self.GetLineText(line_no)
keyword = self.__keyword_separators.split(line[:caret_pos_in_line])[-1]
if (
(not explicit_expansion)
and
(keyword != u'$$steffi') # Easter Egg ;-)
and
(keyword not in [ r[0] for r in gmKeywordExpansion.get_textual_expansion_keywords() ])
):
return
# why does this work despite the wx.TextCtrl docs saying that
# InsertionPoint values cannot be used as indices into strings ?
# because we never cross an EOL which is the only documented
# reason for insertion point to be off the string index
start = self.InsertionPoint - len(keyword)
wx.CallAfter(self.__replace_keyword_with_expansion, keyword, start, explicit_expansion)
return
#--------------------------------------------------------
# internal helpers
#--------------------------------------------------------
def __replace_keyword_with_expansion(self, keyword=None, position=None, show_list=False):
expansion = expand_keyword(parent = self, keyword = keyword, show_list = show_list)
if expansion is None:
return
if expansion == u'':
return
if not self.IsMultiLine():
expansion_lines = gmTools.strip_leading_empty_lines (
lines = gmTools.strip_trailing_empty_lines (
text = expansion,
return_list = True
),
return_list = True
)
if len(expansion_lines) == 0:
return
if len(expansion_lines) == 1:
expansion = expansion_lines[0]
else:
msg = _(
'The fragment <%s> expands to multiple lines !\n'
'\n'
'This text field can hold one line only, hwoever.\n'
'\n'
'Please select the line you want to insert:'
) % keyword
expansion = gmListWidgets.get_choices_from_list (
parent = self,
msg = msg,
caption = _('Adapting multi-line expansion to single-line text field'),
choices = expansion_lines,
selections = [0],
columns = [_('Keyword expansion lines')],
single_selection = True,
can_return_empty = False
)
if expansion is None:
return
self.Replace (
position,
position + len(keyword),
expansion
)
self.SetInsertionPoint(position + len(expansion) + 1)
self.ShowPosition(position + len(expansion) + 1)
return
#============================================================
from Gnumed.wxGladeWidgets import wxgTextExpansionEditAreaPnl
class cTextExpansionEditAreaPnl(wxgTextExpansionEditAreaPnl.wxgTextExpansionEditAreaPnl, gmEditArea.cGenericEditAreaMixin):
def __init__(self, *args, **kwds):
try:
data = kwds['expansion']
del kwds['expansion']
except KeyError:
data = None
wxgTextExpansionEditAreaPnl.wxgTextExpansionEditAreaPnl.__init__(self, *args, **kwds)
gmEditArea.cGenericEditAreaMixin.__init__(self)
self.mode = 'new'
self.data = data
if data is not None:
self.mode = 'edit'
# self.__init_ui()
self.__register_interests()
self.__data_filename = None
#--------------------------------------------------------
# def __init_ui(self, expansion=None):
# self._BTN_select_data_file.Enable(False)
#----------------------------------------------------------------
# generic Edit Area mixin API
#----------------------------------------------------------------
def _valid_for_save(self):
validity = True
has_expansion = (
(self._TCTRL_expansion.GetValue().strip() != u'')
or
(self.__data_filename is not None)
or
((self.data is not None) and (self.data['is_textual'] is False))
)
if has_expansion:
self.display_tctrl_as_valid(tctrl = self._TCTRL_expansion, valid = True)
self.display_tctrl_as_valid(tctrl = self._TCTRL_data_file, valid = True)
else:
validity = False
gmDispatcher.send(signal = 'statustext', msg = _('Cannot save keyword expansion without text or data expansion.'), beep = True)
self.display_tctrl_as_valid(tctrl = self._TCTRL_expansion, valid = False)
self.display_tctrl_as_valid(tctrl = self._TCTRL_data_file, valid = False)
if self.data is None:
self._TCTRL_expansion.SetFocus()
else:
if self.data['is_textual']:
self._TCTRL_expansion.SetFocus()
else:
self._BTN_select_data_file.SetFocus()
if self._TCTRL_keyword.GetValue().strip() == u'':
validity = False
self.display_tctrl_as_valid(tctrl = self._TCTRL_keyword, valid = False)
gmDispatcher.send(signal = 'statustext', msg = _('Cannot save keyword expansion without keyword.'), beep = True)
self._TCTRL_keyword.SetFocus()
else:
self.display_tctrl_as_valid(tctrl = self._TCTRL_keyword, valid = True)
return validity
#----------------------------------------------------------------
def _save_as_new(self):
expansion = gmKeywordExpansion.create_keyword_expansion (
keyword = self._TCTRL_keyword.GetValue().strip(),
text = self._TCTRL_expansion.GetValue(),
data_file = self.__data_filename,
public = self._RBTN_public.GetValue()
)
if expansion is None:
return False
expansion['is_encrypted'] = self._CHBOX_is_encrypted.IsChecked()
expansion.save()
self.data = expansion
return True
#----------------------------------------------------------------
def _save_as_update(self):
self.data['expansion'] = self._TCTRL_expansion.GetValue().strip()
self.data['is_encrypted'] = self._CHBOX_is_encrypted.IsChecked()
self.data.save()
if self.__data_filename is not None:
self.data.update_data_from_file(filename = self.__data_filename)
return True
#----------------------------------------------------------------
#----------------------------------------------------------------
def _refresh_as_new(self):
self.__data_filename = None
self._TCTRL_keyword.SetValue(u'')
self._TCTRL_keyword.Enable(True)
self._LBL_data.Enable(False)
self._BTN_select_data_file.Enable(False)
self._TCTRL_data_file.SetValue(u'')
self._CHBOX_is_encrypted.SetValue(False)
self._CHBOX_is_encrypted.Enable(False)
self._LBL_text.Enable(False)
self._TCTRL_expansion.SetValue(u'')
self._TCTRL_expansion.Enable(False)
self._RBTN_public.Enable(False)
self._RBTN_private.Enable(False)
self._RBTN_public.SetValue(1)
self._TCTRL_keyword.SetFocus()
#----------------------------------------------------------------
def _refresh_as_new_from_existing(self):
self._refresh_from_existing()
self._TCTRL_keyword.SetValue(u'%s%s' % (self.data, _(u'___copy')))
self._TCTRL_keyword.Enable(True)
self._RBTN_public.Enable(True)
self._RBTN_private.Enable(True)
self._TCTRL_keyword.SetFocus()
#----------------------------------------------------------------
def _refresh_from_existing(self):
self.__data_filename = None
self._TCTRL_keyword.SetValue(self.data['keyword'])
self._TCTRL_keyword.Enable(False)
if self.data['is_textual']:
self._LBL_text.Enable(True)
self._TCTRL_expansion.SetValue(gmTools.coalesce(self.data['expansion'], u''))
self._LBL_data.Enable(False)
self._BTN_select_data_file.Enable(False)
self._TCTRL_data_file.SetValue(u'')
self._CHBOX_is_encrypted.SetValue(False)
self._CHBOX_is_encrypted.Enable(False)
else:
self._LBL_text.Enable(False)
self._TCTRL_expansion.SetValue(u'')
self._LBL_data.Enable(True)
self._BTN_select_data_file.Enable(True)
self._TCTRL_data_file.SetValue(_('Size: %s') % gmTools.size2str(self.data['data_size']))
self._CHBOX_is_encrypted.SetValue(self.data['is_encrypted'])
self._CHBOX_is_encrypted.Enable(True)
self._RBTN_public.Enable(False)
self._RBTN_private.Enable(False)
if self.data['public_expansion']:
self._RBTN_public.SetValue(1)
else:
self._RBTN_private.SetValue(1)
if self.data['is_textual']:
self._TCTRL_expansion.SetFocus()
else:
self._BTN_select_data_file.SetFocus()
#----------------------------------------------------------------
# event handling
#----------------------------------------------------------------
def __register_interests(self):
self._TCTRL_keyword.Bind(wx.EVT_TEXT, self._on_keyword_modified)
self._TCTRL_expansion.Bind(wx.EVT_TEXT, self._on_expansion_modified)
#----------------------------------------------------------------
def _on_keyword_modified(self, evt):
if self._TCTRL_keyword.GetValue().strip() == u'':
self._LBL_text.Enable(False)
self._TCTRL_expansion.Enable(False)
self._LBL_data.Enable(False)
self._BTN_select_data_file.Enable(False)
self._CHBOX_is_encrypted.Enable(False)
self._RBTN_public.Enable(False)
self._RBTN_private.Enable(False)
return
# keyword is not empty
# mode must be new(_from_existing) or else
# we cannot modify the keyword in the first place
self._LBL_text.Enable(True)
self._TCTRL_expansion.Enable(True)
self._LBL_data.Enable(True)
self._BTN_select_data_file.Enable(True)
self._RBTN_public.Enable(True)
self._RBTN_private.Enable(True)
#----------------------------------------------------------------
def _on_expansion_modified(self, evt):
if self._TCTRL_expansion.GetValue().strip() == u'':
self._LBL_data.Enable(True)
self._BTN_select_data_file.Enable(True)
return
self.__data_filename = None
self._LBL_data.Enable(False)
self._BTN_select_data_file.Enable(False)
self._TCTRL_data_file.SetValue(u'')
self._CHBOX_is_encrypted.Enable(False)
#----------------------------------------------------------------
def _on_select_data_file_button_pressed(self, event):
wildcards = [
u"%s (*)|*" % _('all files'),
u"%s (*.*)|*.*" % _('all files (Windows)')
]
dlg = wx.FileDialog (
parent = self,
message = _('Choose the file containing the data snippet'),
wildcard = '|'.join(wildcards),
style = wx.OPEN | wx.HIDE_READONLY | wx.FILE_MUST_EXIST
)
result = dlg.ShowModal()
if result != wx.ID_CANCEL:
self.__data_filename = dlg.GetPath()
self._TCTRL_data_file.SetValue(self.__data_filename)
self._CHBOX_is_encrypted.SetValue(False)
self._CHBOX_is_encrypted.Enable(True)
dlg.Destroy()
#============================================================
def configure_keyword_text_expansion(parent=None):
if parent is None:
parent = wx.GetApp().GetTopWindow()
#----------------------
def delete(expansion=None):
gmKeywordExpansion.delete_keyword_expansion(pk = expansion['pk_expansion'])
return True
#----------------------
def edit(expansion=None):
ea = cTextExpansionEditAreaPnl(parent, -1, expansion = expansion)
dlg = gmEditArea.cGenericEditAreaDlg2(parent, -1, edit_area = ea)
if expansion is None:
title = _('Adding keyword expansion')
else:
title = _('Editing keyword expansion "%s"') % expansion['keyword']
dlg.SetTitle(title)
if dlg.ShowModal() == wx.ID_OK:
return True
return False
#----------------------
def tooltip(expansion):
return expansion.format()
#----------------------
def refresh(lctrl=None):
expansions = gmKeywordExpansion.get_keyword_expansions(order_by = u'is_textual DESC, keyword, public_expansion', force_reload = True)
items = [[
e['keyword'],
gmTools.bool2subst(e['is_textual'], _('text'), _('data')),
gmTools.bool2subst(e['public_expansion'], _('public'), _('private'))
] for e in expansions
]
lctrl.set_string_items(items)
lctrl.set_data(expansions)
#----------------------
gmListWidgets.get_choices_from_list (
parent = parent,
msg = _('\nSelect the keyword you want to edit !\n'),
caption = _('Editing keyword-based expansions ...'),
columns = [_('Keyword'), _('Type'), _('Scope')],
single_selection = True,
edit_callback = edit,
new_callback = edit,
delete_callback = delete,
refresh_callback = refresh,
list_tooltip_callback = tooltip
)
#============================================================
from Gnumed.wxGladeWidgets import wxgTextExpansionFillInDlg
class cTextExpansionFillInDlg(wxgTextExpansionFillInDlg.wxgTextExpansionFillInDlg):
def __init__(self, *args, **kwds):
wxgTextExpansionFillInDlg.wxgTextExpansionFillInDlg.__init__(self, *args, **kwds)
self.__expansion = None
self.__init_ui()
#---------------------------------------------
def __init_ui(self):
self._LBL_top_part.SetLabel(u'')
font = self._LBL_left_part.GetFont()
font.SetPointSize(pointSize = font.GetPointSize() + 1)
self._LBL_left_part.SetFont(font)
self._LBL_left_part.SetLabel(u'')
self._LBL_left_part.Hide()
font = self._TCTRL_fillin.GetFont()
font.SetPointSize(pointSize = font.GetPointSize() + 1)
self._TCTRL_fillin.SetFont(font)
self._TCTRL_fillin.SetValue(u'')
self._TCTRL_fillin.SetBackgroundColour('yellow')
self._TCTRL_fillin.Disable()
self._TCTRL_fillin.Hide()
font = self._LBL_right_part.GetFont()
font.SetPointSize(pointSize = font.GetPointSize() + 1)
self._LBL_right_part.SetFont(font)
self._LBL_right_part.SetLabel(u'')
self._LBL_right_part.Hide()
self._LBL_bottom_part.SetLabel(u'')
self._BTN_OK.Disable()
self._BTN_forward.Disable()
self._BTN_cancel.SetFocus()
self._LBL_hint.SetLabel(u'')
#---------------------------------------------
def __goto_next_fillin(self):
if self.__expansion is None:
return
if self.__new_expansion:
self.__filled_in = self.__expansion
self.__new_expansion = False
else:
self.__filled_in = (
self._LBL_top_part.GetLabel() +
self.__left_splitter +
self._LBL_left_part.GetLabel() +
self._TCTRL_fillin.GetValue().strip() +
self._LBL_right_part.GetLabel() +
self.__right_splitter +
self._LBL_bottom_part.GetLabel()
)
# anything to fill in ?
if regex.search(_text_expansion_fillin_regex, self.__filled_in) is None:
# no
self._LBL_top_part.SetLabel(self.__filled_in)
self._LBL_left_part.SetLabel(u'')
self._LBL_left_part.Hide()
self._TCTRL_fillin.SetValue(u'')
self._TCTRL_fillin.Disable()
self._TCTRL_fillin.Hide()
self._LBL_right_part.SetLabel(u'')
self._LBL_right_part.Hide()
self._LBL_bottom_part.SetLabel(u'')
self._BTN_OK.Enable()
self._BTN_forward.Disable()
self._BTN_OK.SetDefault()
return
# yes
top, fillin, bottom = regex.split(r'(' + _text_expansion_fillin_regex + r')', self.__filled_in, maxsplit = 1)
top_parts = top.rsplit(u'\n', 1)
top_part = top_parts[0]
if len(top_parts) == 1:
self.__left_splitter = u''
left_part = u''
else:
self.__left_splitter = u'\n'
left_part = top_parts[1]
bottom_parts = bottom.split(u'\n', 1)
if len(bottom_parts) == 1:
parts = bottom_parts[0].split(u' ', 1)
right_part = parts[0]
if len(parts) == 1:
self.__right_splitter = u''
bottom_part = u''
else:
self.__right_splitter = u' '
bottom_part = parts[1]
else:
self.__right_splitter = u'\n'
right_part = bottom_parts[0]
bottom_part = bottom_parts[1]
hint = fillin.strip('$').strip('[').strip(']').strip()
self._LBL_top_part.SetLabel(top_part)
self._LBL_left_part.SetLabel(left_part)
self._LBL_left_part.Show()
self._TCTRL_fillin.Enable()
self._TCTRL_fillin.SetValue(u'')
self._TCTRL_fillin.Show()
self._LBL_right_part.SetLabel(right_part)
self._LBL_right_part.Show()
self._LBL_bottom_part.SetLabel(bottom_part)
self._BTN_OK.Disable()
self._BTN_forward.Enable()
self._BTN_forward.SetDefault()
self._LBL_hint.SetLabel(hint)
self._TCTRL_fillin.SetFocus()
self.Layout()
self.Fit()
#---------------------------------------------
# properties
#---------------------------------------------
def _get_expansion(self):
return self.__expansion
def _set_expansion(self, expansion):
self.__expansion = expansion
self.__new_expansion = True
self.__goto_next_fillin()
return
expansion = property(_get_expansion, _set_expansion)
#---------------------------------------------
def _get_filled_in(self):
return self.__filled_in
filled_in_expansion = property(_get_filled_in, lambda x:x)
#---------------------------------------------
def _set_keyword(self, keyword):
self.SetTitle(_('Expanding <%s>') % keyword)
keyword = property(lambda x:x, _set_keyword)
#---------------------------------------------
# event handlers
#---------------------------------------------
def _on_forward_button_pressed(self, event):
self.__goto_next_fillin()
#============================================================
def expand_keyword(parent=None, keyword=None, show_list=False):
"""Expand keyword and replace inside it.
Returns:
None: aborted or no expansion available
u'': empty expansion
u'<text>' the expansion
"""
if keyword is None:
return None
if parent is None:
parent = wx.GetApp().GetTopWindow()
if show_list:
candidates = gmKeywordExpansion.get_matching_textual_keywords(fragment = keyword)
if len(candidates) == 0:
return None
if len(candidates) == 1:
keyword = candidates[0]
else:
keyword = gmListWidgets.get_choices_from_list (
parent = parent,
msg = _(
'Several macro keywords match the fragment [%s].\n'
'\n'
'Please select the expansion you want to happen.'
) % keyword,
caption = _('Selecting text macro'),
choices = candidates,
columns = [_('Keyword')],
single_selection = True,
can_return_empty = False
)
if keyword is None:
return None
expansion = gmKeywordExpansion.expand_keyword(keyword = keyword)
# not found
if expansion is None:
return None
# no replacement necessary:
if expansion.strip() == u'':
return expansion
if regex.search(_text_expansion_fillin_regex, expansion) is not None:
dlg = cTextExpansionFillInDlg(None, -1)
dlg.keyword = keyword
dlg.expansion = expansion
button = dlg.ShowModal()
if button == wx.ID_OK:
expansion = dlg.filled_in_expansion
dlg.Destroy()
return expansion
#============================================================
# main
#------------------------------------------------------------
if __name__ == '__main__':
if len(sys.argv) < 2:
sys.exit()
if sys.argv[1] != 'test':
sys.exit()
from Gnumed.pycommon import gmI18N
gmI18N.activate_locale()
gmI18N.install_domain(domain = 'gnumed')
#----------------------------------------
def test_fillin():
expansion = u"""HEMORR²HAGES: Blutungsrisiko unter OAK
--------------------------------------
Am Heart J. 2006 Mar;151(3):713-9.
$[1 oder 0 eingeben]$ H epatische oder Nierenerkrankung
$[1 oder 0 eingeben]$ E thanolabusus
$[1 oder 0 eingeben]$ M alignom
$[1 oder 0 eingeben]$ O ld patient (> 75 Jahre)
$[1 oder 0 eingeben]$ R eduzierte Thrombozytenzahl/-funktion
$[2 oder 0 eingeben]$ R²ekurrente (frühere) große Blutung
$[1 oder 0 eingeben]$ H ypertonie (unkontrolliert)
$[1 oder 0 eingeben]$ A nämie
$[1 oder 0 eingeben]$ G enetische Faktoren
$[1 oder 0 eingeben]$ E xzessives Sturzrisiko
$[1 oder 0 eingeben]$ S Schlaganfall in der Anamnese
--------------------------------------
Summe Rate großer Blutungen
pro 100 Patientenjahre
0 1.9
1 2.5
2 5.3
3 8.4
4 10.4
>4 12.3
Bewertung: Summe = $[Summe ausrechnen und bewerten]$"""
app = wx.PyWidgetTester(size = (600, 600))
dlg = cTextExpansionFillInDlg(None, -1)
dlg.expansion = expansion
dlg.ShowModal()
#app.MainLoop()
#----------------------------------------
test_fillin()
|