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 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
|
"""GNUmed GUI helper classes and functions.
This module provides some convenient wxPython GUI
helper thingies that are widely used throughout
GnuMed.
This source code is protected by the GPL licensing scheme.
Details regarding the GPL are available at http://www.gnu.org
You may use and share it as long as you don't deny this right
to anybody else.
"""
# ========================================================================
# $Source: /sources/gnumed/gnumed/gnumed/client/wxpython/gmGuiHelpers.py,v $
# $Id: gmGuiHelpers.py,v 1.76.2.1 2007/12/24 23:03:23 shilbert Exp $
__version__ = "$Revision: 1.76.2.1 $"
__author__ = "K. Hilbert <Karsten.Hilbert@gmx.net>"
__license__ = "GPL (details at http://www.gnu.org)"
import sys, os, shutil, datetime as pyDT, traceback, exceptions, re as regex, codecs
if __name__ == '__main__':
sys.exit("This is not intended to be run standalone !")
import wx
from Gnumed.business import gmSurgery
from Gnumed.pycommon import gmLog, gmGuiBroker, gmPG2, gmLoginInfo, gmDispatcher, gmSignals, gmTools, gmCfg, gmI18N
from Gnumed.wxGladeWidgets import wxg3ButtonQuestionDlg, wxg2ButtonQuestionDlg, wxgUnhandledExceptionDlg, wxgGreetingEditorDlg
_log = gmLog.gmDefLog
_log.Log(gmLog.lData, __version__)
_prev_excepthook = None
# ========================================================================
def handle_uncaught_exception_wx(t, v, tb):
_log.LogException('unhandled exception caught', (t,v,tb), verbose=True)
# careful: MSW does reference counting on Begin/End* :-(
try: wx.EndBusyCursor()
except: pass
if t == exceptions.ImportError:
gm_show_error (
aTitle = _('Missing GNUmed module'),
aMessage = _(
'GNUmed detected that parts of it are not\n'
'properly insalled. The following message\n'
'names the missing part:\n'
'\n'
' "%s"\n'
'\n'
'Please make sure to get the missing\n'
'parts installed. Otherwise some of the\n'
'functionality will not be accessible.'
) % v
)
else:
for target in _log.get_targets():
if not isinstance(target, gmLog.cLogTargetFile):
continue
original_name = target.ID
name = os.path.basename(target.ID)
name, ext = os.path.splitext(name)
new_name = os.path.expanduser(os.path.join (
'~',
'gnumed',
'logs',
'%s_%s%s' % (name, pyDT.datetime.now().strftime('%Y-%m-%d_%H-%M-%S'), ext)
))
_log.Log(gmLog.lWarn, 'syncing log file for backup to [%s]' % new_name)
_log.flush()
shutil.copy2(original_name, new_name)
dlg = cUnhandledExceptionDlg(parent = None, id = -1, exception = (t, v, tb), logfile = new_name)
dlg.ShowModal()
comment = dlg._TCTRL_comment.GetValue()
if comment is not None:
_log.Log(gmLog.lErr, u'user comment: %s' % comment.strip())
_log.flush()
dlg.Destroy()
# ------------------------------------------------------------------------
def install_wx_exception_handler():
office = gmSurgery.gmCurrentPractice()
global helpdesk
helpdesk = office.helpdesk
global _prev_excepthook
_prev_excepthook = sys.excepthook
sys.excepthook = handle_uncaught_exception_wx
return True
# ------------------------------------------------------------------------
def uninstall_wx_exception_handler():
if _prev_excepthook is None:
sys.excepthook = sys.__excepthook__
return True
sys.excepthook = _prev_excepthook
return True
# ========================================================================
class cUnhandledExceptionDlg(wxgUnhandledExceptionDlg.wxgUnhandledExceptionDlg):
def __init__(self, *args, **kwargs):
exception = kwargs['exception']
del kwargs['exception']
self.logfile = kwargs['logfile']
del kwargs['logfile']
wxgUnhandledExceptionDlg.wxgUnhandledExceptionDlg.__init__(self, *args, **kwargs)
self._TCTRL_helpdesk.SetValue(helpdesk)
self._TCTRL_logfile.SetValue(self.logfile)
t, v, tb = exception
self._TCTRL_exc_type.SetValue(str(t))
self._TCTRL_exc_value.SetValue(str(v))
self._TCTRL_traceback.SetValue(''.join(traceback.format_tb(tb)))
self.Fit()
#------------------------------------------
def _on_close_gnumed_button_pressed(self, evt):
top_win = wx.GetApp().GetTopWindow()
wx.CallAfter(top_win.Close)
evt.Skip()
#------------------------------------------
def _on_mail_button_pressed(self, evt):
receivers = regex.findall (
'[\S]+@[\S]+',
self._TCTRL_helpdesk.GetValue().strip(),
flags = regex.UNICODE | regex.LOCALE
)
if len(receivers) == 0:
receivers = [u'gnumed-devel@gnu.org']
receiver_string = wx.GetTextFromUser (
message = _(
'Edit the list of email addresses to send the\n'
'bug report to (separate addresses by spaces).\n'
'\n'
'Note that <gnumed-devel@gnu.org> refers to\n'
'the public GNUmed mailing list.'
),
caption = _('Sending bug report'),
default_value = ','.join(receivers),
parent = self
)
if receiver_string.strip() == u'':
evt.Skip()
return
receivers = regex.findall (
'[\S]+@[\S]+',
receiver_string,
flags = regex.UNICODE | regex.LOCALE
)
dlg = c2ButtonQuestionDlg (
self,
-1,
caption = _('Sending bug report'),
question = _(
'Your bug report will be sent to:\n'
'\n'
'%s\n'
'\n'
'Make sure you have reviewed the log file for potentially\n'
'sensitive information before sending out the bug report.\n'
'\n'
'Note that emailing the report may take a while depending\n'
'on the speed of your internet connection.\n'
) % u'\n'.join(receivers),
button_defs = [
{'label': _('Send report'), 'tooltip': _('Yes, send the bug report.')},
{'label': _('Cancel'), 'tooltip': _('No, do not send the bug report.')}
],
show_checkbox = True,
checkbox_msg = _('include log file in bug report')
)
dlg._CHBOX_dont_ask_again.SetValue(True)
go_ahead = dlg.ShowModal()
if go_ahead == wx.ID_NO:
dlg.Destroy()
evt.Skip()
return
comment = self._TCTRL_comment.GetValue().strip()
if comment == u'':
comment = wx.GetTextFromUser (
message = _(
'Please enter a short note on what you\n'
'were about to do in GNUmed:'
),
caption = _('Sending bug report'),
parent = self
)
if comment.strip() == u'':
dlg.Destroy()
evt.Skip()
return
msg = u"Report sent via GNUmed's handler for unexpected exceptions:\n\n %s\n\n" % comment
if dlg._CHBOX_dont_ask_again.GetValue():
for line in codecs.open(self.logfile, 'rU', 'latin1', 'replace'):
msg = msg + line
dlg.Destroy()
wx.BeginBusyCursor()
gmTools.send_mail (
sender = gmTools.default_mail_sender,
receiver = receivers,
subject = u'<bug>: %s' % comment,
message = msg,
encoding = gmI18N.get_encoding(),
server = gmTools.default_mail_server,
auth = {'user': gmTools.default_mail_sender, 'password': u'gnumed-at-gmx-net'}
)
wx.EndBusyCursor()
evt.Skip()
#------------------------------------------
def _on_view_log_button_pressed(self, evt):
from Gnumed.pycommon import gmMimeLib
gmMimeLib.call_viewer_on_file(self.logfile, block = False)
evt.Skip()
# ========================================================================
def configure_string_option(parent=None, message=None, option=None, bias=u'user', default_value=u'', validator=None):
dbcfg = gmCfg.cCfgSQL()
current_value = dbcfg.get2 (
option = option,
workplace = gmSurgery.gmCurrentPractice().active_workplace,
bias = bias,
default = default_value
)
if parent is None:
parent = wx.GetApp().GetTopWindow()
while True:
dlg = wx.TextEntryDialog (
parent = parent,
message = message,
caption = _('Configuration'),
defaultValue = u'%s' % current_value,
style = wx.OK | wx.CANCEL | wx.CENTRE
)
result = dlg.ShowModal()
if result == wx.ID_CANCEL:
dlg.Destroy()
return
user_val = dlg.GetValue().strip()
dlg.Destroy()
if user_val == current_value:
return
validated, user_val = validator(user_val)
if validated:
break
gmDispatcher.send (
signal = u'statustext',
msg = _('Value [%s] not valid for option <%s>.') % (user_val, option),
beep = True
)
dbcfg = gmCfg.cCfgSQL()
dbcfg.set (
workplace = gmSurgery.gmCurrentPractice().active_workplace,
option = option,
value = user_val
)
return
# ========================================================================
def configure_boolean_option(parent=None, question=None, option=None, button_tooltips=None):
if parent is None:
parent = wx.GetApp().GetTopWindow()
tooltips = [
_('Set "%s" to <True>.') % option,
_('Set "%s" to <False>.') % option,
_('Abort the dialog and do not change the current setting.')
]
if button_tooltips is not None:
for idx in range(len(button_tooltips)):
tooltips[idx] = button_tooltips[idx]
dlg = c3ButtonQuestionDlg (
parent,
-1,
caption = _('Configuration'),
question = question,
button_defs = [
{'label': _('Yes'), 'tooltip': tooltips[0]},
{'label': _('No'), 'tooltip': tooltips[1]},
{'label': _('Cancel'), 'tooltip': tooltips[2], 'default': True}
]
)
decision = dlg.ShowModal()
dbcfg = gmCfg.cCfgSQL()
if decision == wx.ID_YES:
dbcfg.set (
workplace = gmSurgery.gmCurrentPractice().active_workplace,
option = option,
value = True
)
elif decision == wx.ID_NO:
dbcfg.set (
workplace = gmSurgery.gmCurrentPractice().active_workplace,
option = option,
value = False
)
return
# ========================================================================
class c2ButtonQuestionDlg(wxg2ButtonQuestionDlg.wxg2ButtonQuestionDlg):
def __init__(self, *args, **kwargs):
caption = kwargs['caption']
question = kwargs['question']
button_defs = kwargs['button_defs'][:2]
try:
show_checkbox = kwargs['show_checkbox']
del kwargs['show_checkbox']
except KeyError:
show_checkbox = False
try:
checkbox_msg = kwargs['checkbox_msg']
del kwargs['checkbox_msg']
except KeyError:
checkbox_msg = None
del kwargs['caption']
del kwargs['question']
del kwargs['button_defs']
wxg2ButtonQuestionDlg.wxg2ButtonQuestionDlg.__init__(self, *args, **kwargs)
self.SetTitle(title = caption)
self._LBL_question.SetLabel(label = question)
if not show_checkbox:
self._CHBOX_dont_ask_again.Hide()
else:
if checkbox_msg is not None:
self._CHBOX_dont_ask_again.SetLabel(checkbox_msg)
buttons = [self._BTN_1, self._BTN_2]
for idx in range(len(button_defs)):
buttons[idx].SetLabel(label = button_defs[idx]['label'])
buttons[idx].SetToolTipString(button_defs[idx]['tooltip'])
try:
if button_defs[idx]['default']:
buttons[idx].SetDefault()
except KeyError:
pass
self.Fit()
#--------------------------------------------------------
# event handlers
#--------------------------------------------------------
def _on_BTN_1_pressed(self, evt):
if self.IsModal():
self.EndModal(wx.ID_YES)
else:
self.Close()
#--------------------------------------------------------
def _on_BTN_2_pressed(self, evt):
if self.IsModal():
self.EndModal(wx.ID_NO)
else:
self.Close()
# ========================================================================
class c3ButtonQuestionDlg(wxg3ButtonQuestionDlg.wxg3ButtonQuestionDlg):
def __init__(self, *args, **kwargs):
caption = kwargs['caption']
question = kwargs['question']
button_defs = kwargs['button_defs'][:3]
del kwargs['caption']
del kwargs['question']
del kwargs['button_defs']
wxg3ButtonQuestionDlg.wxg3ButtonQuestionDlg.__init__(self, *args, **kwargs)
self.SetTitle(title = caption)
self._LBL_question.SetLabel(label = question)
buttons = [self._BTN_1, self._BTN_2, self._BTN_3]
for idx in range(len(button_defs)):
buttons[idx].SetLabel(label = button_defs[idx]['label'])
buttons[idx].SetToolTipString(button_defs[idx]['tooltip'])
try:
if button_defs[idx]['default']:
buttons[idx].SetDefault()
except KeyError:
pass
self.Fit()
#--------------------------------------------------------
# event handlers
#--------------------------------------------------------
def _on_BTN_1_pressed(self, evt):
if self.IsModal():
self.EndModal(wx.ID_YES)
else:
self.Close()
#--------------------------------------------------------
def _on_BTN_2_pressed(self, evt):
if self.IsModal():
self.EndModal(wx.ID_NO)
else:
self.Close()
# ========================================================================
class cStartupProgressBar(wx.ProgressDialog):
def __init__(self, nr_actions):
wx.ProgressDialog.__init__(
self,
parent = None,
title = _('GNUmed: Starting up ...'),
message = u' ' * 80 + u'\n\n\n',
maximum = nr_actions,
style = wx.PD_ELAPSED_TIME | wx.PD_CAN_ABORT
)
# set window icon
paths = gmTools.gmPaths(app_name = u'gnumed', wx = wx)
png_fname = os.path.join(paths.system_app_data_dir, 'bitmaps', 'serpent.png')
icon = wx.EmptyIcon()
try:
icon.LoadFile(png_fname, wx.BITMAP_TYPE_PNG)
except:
_log.Log(gmLog.lWarn, 'wx.Icon.LoadFile() not supported')
self.SetIcon(icon)
self.idx = 0
# self.nr_plugins = nr_plugins
# self.prev_plugin = ""
#----------------------------------------------------------
def Update (self, msg = None):
# if result == -1:
# result = ""
# elif result == 0:
# result = _("failed")
# else:
# result = _("success")
#_("GNUmed: configuring [%s] (%s plugins)") % (gmSurgery.gmCurrentPractice().active_workplace, nr_plugins),
#_("loading list of plugins "),
wx.ProgressDialog.Update(self, self.idx, msg)
# self.prev_plugin = plugin
self.idx += 1
# _("previous: %s (%s)\ncurrent (%s/%s): %s") % (
# self.prev_plugin,
# result,
# (self.idx+1),
# self.nr_plugins,
# plugin
# )
# ========================================================================
class cGreetingEditorDlg(wxgGreetingEditorDlg.wxgGreetingEditorDlg):
def __init__(self, *args, **kwargs):
wxgGreetingEditorDlg.wxgGreetingEditorDlg.__init__(self, *args, **kwargs)
self.surgery = gmSurgery.gmCurrentPractice()
self._TCTRL_message.SetValue(self.surgery.db_logon_banner)
#--------------------------------------------------------
# event handlers
#--------------------------------------------------------
def _on_save_button_pressed(self, evt):
self.surgery.db_logon_banner = self._TCTRL_message.GetValue().strip()
if self.IsModal():
self.EndModal(wx.ID_SAVE)
else:
self.Close()
# ========================================================================
class cTreeExpansionHistoryMixin:
"""TreeCtrl mixin class to record expansion history."""
def __init__(self):
if not isinstance(self, wx.TreeCtrl):
raise TypeError('[%s]: mixin can only be applied to wx.TreeCtrl, not [%s]' % (cTreeExpansionHistoryMixin, self.__class__.__name__))
self.expansion_state = {}
#--------------------------------------------------------
# public API
#--------------------------------------------------------
def snapshot_expansion(self):
self.__record_subtree_expansion(start_node_id = self.GetRootItem())
#--------------------------------------------------------
def restore_expansion(self):
if len(self.expansion_state) == 0:
return True
self.__restore_subtree_expansion(start_node_id = self.GetRootItem())
#--------------------------------------------------------
def print_expansion(self):
if len(self.expansion_state) == 0:
print "currently no expansion snapshot available"
return True
print "last snapshot of state of expansion"
print "-----------------------------------"
print "listing expanded nodes:"
for node_id in self.expansion_state.keys():
print "node ID:", node_id
print " selected:", self.expansion_state[node_id]
#--------------------------------------------------------
# internal API
#--------------------------------------------------------
def __record_subtree_expansion(self, start_node_id=None):
"""This records node expansion states based on the item label.
A side effect of this is that identically named items can
become unduly synchronized in their expand state after a
snapshot/restore cycle.
Better choices might be
id(item.GetPyData()) or
item.GetPyData().get_tree_uid()
where get_tree_uid():
'[%s:%s]' % (self.__class__.__name__, id(self))
or some such. This would survive renaming of the item.
For database items it may be useful to include the
primary key which would - contrary to id() - survive
reloads from the database.
"""
# protect against empty tree where not even
# a root node exists
if not start_node_id.IsOk():
return True
if not self.IsExpanded(start_node_id):
return True
self.expansion_state[self.GetItemText(start_node_id)] = self.IsSelected(start_node_id)
child_id, cookie = self.GetFirstChild(start_node_id)
while child_id.IsOk():
self.__record_subtree_expansion(start_node_id = child_id)
child_id, cookie = self.GetNextChild(start_node_id, cookie)
return
#--------------------------------------------------------
def __restore_subtree_expansion(self, start_node_id=None):
start_node_label = self.GetItemText(start_node_id)
try:
node_selected = self.expansion_state[start_node_label]
except KeyError:
return
self.Expand(start_node_id)
if node_selected:
self.SelectItem(start_node_id)
child_id, cookie = self.GetFirstChild(start_node_id)
while child_id.IsOk():
self.__restore_subtree_expansion(start_node_id = child_id)
child_id, cookie = self.GetNextChild(start_node_id, cookie)
return
# ========================================================================
class cFileDropTarget(wx.FileDropTarget):
"""Generic file drop target class.
Protocol:
Widgets being declared file drop targets
must provide the method:
add_filenames(filenames)
"""
#-----------------------------------------------
def __init__(self, target):
wx.FileDropTarget.__init__(self)
self.target = target
#-----------------------------------------------
def OnDropFiles(self, x, y, filenames):
self.target.add_filenames(filenames)
# ========================================================================
def gm_show_error(aMessage = None, aTitle = None, aLogLevel = None):
if aMessage is None:
aMessage = _('programmer forgot to specify error message')
if aLogLevel is not None:
log_msg = aMessage.replace('\015', ' ').replace('\012', ' ')
_log.Log(aLogLevel, log_msg)
aMessage += _("\n\nPlease consult the error log for all the gory details !")
if aTitle is None:
aTitle = _('generic error message')
dlg = wx.MessageDialog (
parent = None,
message = aMessage,
caption = aTitle,
style = wx.OK | wx.ICON_ERROR | wx.STAY_ON_TOP
)
dlg.ShowModal()
dlg.Destroy()
return True
#-------------------------------------------------------------------------
def gm_show_info(aMessage = None, aTitle = None, aLogLevel = None):
if aMessage is None:
aMessage = _('programmer forgot to specify info message')
if aLogLevel is not None:
log_msg = aMessage.replace('\015', ' ').replace('\012', ' ')
_log.Log(aLogLevel, log_msg)
if aTitle is None:
aTitle = _('generic info message')
dlg = wx.MessageDialog (
parent = None,
message = aMessage,
caption = aTitle,
style = wx.OK | wx.ICON_INFORMATION | wx.STAY_ON_TOP
)
dlg.ShowModal()
dlg.Destroy()
return True
#-------------------------------------------------------------------------
def gm_show_warning(aMessage = None, aTitle = None, aLogLevel = None):
if aMessage is None:
aMessage = _('programmer forgot to specify warning')
if aLogLevel is not None:
log_msg = aMessage.replace('\015', ' ').replace('\012', ' ')
_log.Log(aLogLevel, log_msg)
if aTitle is None:
aTitle = _('generic warning message')
dlg = wx.MessageDialog (
parent = None,
message = aMessage,
caption = aTitle,
style = wx.OK | wx.ICON_EXCLAMATION | wx.STAY_ON_TOP
)
dlg.ShowModal()
dlg.Destroy()
return True
#-------------------------------------------------------------------------
def gm_show_question(aMessage = 'programmer forgot to specify question', aTitle = 'generic user question dialog', cancel_button=False):
if cancel_button:
style = wx.YES_NO | wx.CANCEL | wx.ICON_QUESTION | wx.STAY_ON_TOP
else:
style = wx.YES_NO | wx.ICON_QUESTION | wx.STAY_ON_TOP
dlg = wx.MessageDialog (
None,
aMessage,
aTitle,
style
)
btn_pressed = dlg.ShowModal()
dlg.Destroy()
if btn_pressed == wx.ID_YES:
return True
elif btn_pressed == wx.ID_NO:
return False
else:
return None
#----------------------------------------------------------------------
def makePageTitle(wizPg, title):
"""
Utility function to create the main sizer of a wizard's page.
@param wizPg The wizard page widget
@type wizPg A wx.WizardPageSimple instance
@param title The wizard page's descriptive title
@type title A StringType instance
"""
sizer = wx.BoxSizer(wx.VERTICAL)
wizPg.SetSizer(sizer)
title = wx.StaticText(wizPg, -1, title)
title.SetFont(wx.Font(10, wx.SWISS, wx.NORMAL, wx.BOLD))
sizer.Add(title, 0, wx.ALIGN_CENTRE|wx.ALL, 2)
sizer.Add(wx.StaticLine(wizPg, -1), 0, wx.EXPAND|wx.ALL, 2)
return sizer
#============================================================
import string # remove !
class cTextWidgetValidator(wx.PyValidator):
"""
This validator is used to ensure that the user has entered any value
into the input object (wx.TextControl, gmPhraseWheel, gmDateInput,
wx.Combo). Any wx.Window control with a GetValue method returning
a StringType.
"""
#--------------------------------------------------------
def __init__(self, message=None, non_empty=True, only_digits=False):
"""
Standard constructor, defining the behaviour of the validator.
@param non_empty - When true, the input text control must be filled
@type non_empty - BooleanType
@param only_digits - When true, only digits are valid entries
@type only_digits - BooleanType
"""
wx.PyValidator.__init__(self)
self.__non_empty = non_empty
self.__only_digits = only_digits
if message is None:
if self.__only_digits:
self.__msg = _('This field can only contain digits.')
else:
self.__msg = _('This field cannot be empty.')
else:
self.__msg = message
if self.__only_digits:
wx.EVT_CHAR(self, self.OnChar)
#--------------------------------------------------------
def Clone(self):
"""
Standard cloner.
Note that every validator must implement the Clone() method.
"""
return cTextWidgetValidator(self.__non_empty, self.__only_digits)
#--------------------------------------------------------
def Validate(self, parent = None):
"""Validate the contents of the given text control."""
ctrl = self.GetWindow()
val = ctrl.GetValue()
if self.__non_empty and val.strip() == '':
print self.__msg
ctrl.SetBackgroundColour('pink')
ctrl.SetFocus()
ctrl.Refresh()
return False
elif self.__only_digits:
for char in val:
if not char in string.digits:
print self.__msg
ctrl.SetBackgroundColour('pink')
ctrl.SetFocus()
ctrl.Refresh()
return False
else:
ctrl.SetBackgroundColour(wx.SystemSettings_GetColour(wx.SYS_COLOUR_WINDOW))
ctrl.Refresh()
return True
#--------------------------------------------------------
def TransferToWindow(self):
""" Transfer data from validator to window.
The default implementation returns False, indicating that an error
occurred. We simply return True, as we don't do any data transfer.
"""
return True # Prevent wxDialog from complaining.
#--------------------------------------------------------
def TransferFromWindow(self):
""" Transfer data from window to validator.
The default implementation returns False, indicating that an error
occurred. We simply return True, as we don't do any data transfer.
"""
# FIXME: workaround for Validate to be called when clicking a wizard's
# Finish button
return self.Validate()
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def OnChar(self, event):
"""
Callback function invoked on key press.
@param event - The event object containing context information
@type event - wx.Event
"""
key = event.GetKeyCode()
if key < wx.WXK_SPACE or key == wx.WXK_DELETE or key > 255:
event.Skip()
return
if self.__only_digits and chr(key) in string.digits:
event.Skip()
return
if not wx.Validator_IsSilent():
wx.Bell()
# Returning without calling event.Skip eats the event
# before it gets to the text control
return
# ========================================================================
# $Log: gmGuiHelpers.py,v $
# Revision 1.76.2.1 2007/12/24 23:03:23 shilbert
# - removed the dlg.setfocus stuff
#
# Revision 1.76 2007/12/04 17:32:33 ncq
# - improved wording
#
# Revision 1.75 2007/12/04 17:08:14 ncq
# - allow editing bug report targets before sending
#
# Revision 1.74 2007/12/04 16:15:28 ncq
# - remove get_dbowner_connection()
#
# Revision 1.73 2007/12/04 15:17:39 ncq
# - start general purpose progress bar
#
# Revision 1.72 2007/11/21 13:31:53 ncq
# - use send_mail() in exception handling dialog
#
# Revision 1.71 2007/10/21 20:18:32 ncq
# - configure_string_option()
#
# Revision 1.70 2007/10/19 12:50:31 ncq
# - add configure_boolean_option()
#
# Revision 1.69 2007/10/11 12:01:51 ncq
# - make c3ButtonQuestionDlg() more robust in the face of no-default button def
#
# Revision 1.68 2007/09/25 20:44:23 ncq
# - support saving user comment in log file rescued on error
#
# Revision 1.67 2007/09/20 21:30:06 ncq
# - cGreetingEditorDlg
#
# Revision 1.66 2007/09/03 11:03:20 ncq
# - teach top level wx exception handler about ImportError
#
# Revision 1.65 2007/08/20 14:25:16 ncq
# - factor out bits of code out of the actual top level
# exception handler in a bid to make it more resilient
#
# Revision 1.64 2007/07/18 14:43:01 ncq
# - do away with accessing console as it often breaks
#
# Revision 1.63 2007/06/18 20:31:58 ncq
# - gm_Multi/SingleChoiceDlg moved to gmListWidgets
#
# Revision 1.62 2007/06/11 20:35:06 ncq
# - MSW does ref counting in Begin/EndBusyCursor
# - add gmMultiChoiceDialog
#
# Revision 1.61 2007/05/14 10:34:07 ncq
# - no more gm_statustext()
#
# Revision 1.60 2007/05/14 10:05:33 ncq
# - make "default" button definition optional
#
# Revision 1.59 2007/05/14 08:36:13 ncq
# - in c2ButtonQuestionDlg make keyword show_checkbox option defaulting to False
#
# Revision 1.58 2007/05/11 14:15:59 ncq
# - display help desk in exception handler
# - properly handle keep running/close client buttons
#
# Revision 1.57 2007/05/08 16:04:40 ncq
# - add wxPython based exception display handler
#
# Revision 1.56 2007/04/27 13:28:48 ncq
# - implement c2ButtonQuestionDlg
#
# Revision 1.55 2007/04/23 01:06:42 ncq
# - add password argument to get_dbowner_connection()
#
# Revision 1.54 2007/04/11 20:41:58 ncq
# - remove gm_icon()
#
# Revision 1.53 2007/04/09 22:02:40 ncq
# - fix docstring
#
# Revision 1.52 2007/03/18 14:07:14 ncq
# - factor out hook script running
#
# Revision 1.51 2007/03/02 15:32:56 ncq
# - turn gm_statustext() into signal sender with depreciation
# warning (should used gmDispatcher.send() now)
#
# Revision 1.50 2007/02/19 16:13:36 ncq
# - add run_hook_script()
#
# Revision 1.49 2007/02/18 16:57:38 ncq
# - make sure gm-dbo connections aren't returned from the pool
#
# Revision 1.48 2007/01/20 22:52:27 ncq
# - .KeyCode -> GetKeyCode()
#
# Revision 1.47 2007/01/16 13:59:51 ncq
# - protect against empty trees in expansion history mixin
#
# Revision 1.46 2007/01/15 13:04:25 ncq
# - c3ButtonQuestionDlg
# - remove cReturnTraversalTextCtrl
#
# Revision 1.45 2007/01/13 22:43:41 ncq
# - remove str() raising Unicode exceptions
#
# Revision 1.44 2007/01/13 22:19:37 ncq
# - cTreeExpansionHistoryMixin
#
# Revision 1.43 2007/01/12 13:09:46 ncq
# - cFileDropTarget
#
# Revision 1.42 2006/12/15 15:24:06 ncq
# - cleanup
#
# Revision 1.41 2006/11/24 09:53:24 ncq
# - gm_beep_statustext() -> gm_statustext(beep=True)
#
# Revision 1.40 2006/11/05 14:18:57 ncq
# - missing "style ="
#
# Revision 1.39 2006/10/24 13:23:31 ncq
# - use gmPG2.get_default_login() in get_dbowner_connection()
#
# Revision 1.38 2006/10/08 11:03:09 ncq
# - convert to gmPG2
#
# Revision 1.37 2006/09/03 11:29:30 ncq
# - add cancel_button argument to show_question
#
# Revision 1.36 2006/08/01 22:03:49 ncq
# - cleanup
#
# Revision 1.35 2006/06/20 09:42:42 ncq
# - cTextObjectValidator -> cTextWidgetValidator
# - add custom invalid message to text widget validator
# - variable renaming, cleanup
# - fix demographics validation
#
# Revision 1.34 2006/06/17 16:42:48 ncq
# - add get_dbowner_connection()
#
# Revision 1.33 2006/05/01 18:47:32 ncq
# - cleanup
#
# Revision 1.32 2006/01/15 13:19:16 shilbert
# - gm_SingleChoiceDialog was added
# - wxpython 2.6 does not support client data associated with item
#
# Revision 1.31 2005/10/27 21:37:29 shilbert
# fixed wxYES|NO into wx.YES|NO
#
# Revision 1.30 2005/10/11 21:14:10 ncq
# - remove out-of-place LogException() call
#
# Revision 1.29 2005/10/09 08:07:56 ihaywood
# a textctrl that uses return for navigation wx 2.6 only
#
# Revision 1.28 2005/10/04 13:09:49 sjtan
# correct syntax errors; get soap entry working again.
#
# Revision 1.27 2005/10/04 00:04:45 sjtan
# convert to wx.; catch some transitional errors temporarily
#
# Revision 1.26 2005/09/28 21:27:30 ncq
# - a lot of wx2.6-ification
#
# Revision 1.25 2005/09/28 15:57:48 ncq
# - a whole bunch of wx.Foo -> wx.Foo
#
# Revision 1.24 2005/09/26 18:01:50 ncq
# - use proper way to import wx26 vs wx2.4
# - note: THIS WILL BREAK RUNNING THE CLIENT IN SOME PLACES
# - time for fixup
#
# Revision 1.23 2005/09/12 15:09:42 ncq
# - cleanup
#
# Revision 1.22 2005/06/10 16:11:14 shilbert
# szr.AddWindow() -> Add() such that wx2.5 works
#
# Revision 1.21 2005/06/08 01:27:50 cfmoro
# Validator fix
#
# Revision 1.20 2005/05/05 06:27:52 ncq
# - add wx.STAY_ON_TOP in an effort to keep popups up front
#
# Revision 1.19 2005/04/24 14:48:57 ncq
# - improved wording
#
# Revision 1.18 2005/04/10 12:09:16 cfmoro
# GUI implementation of the first-basic (wizard) page for patient details input
#
# Revision 1.17 2005/03/06 09:21:08 ihaywood
# stole a couple of icons from Richard's demo code
#
# Revision 1.16 2004/12/21 21:00:35 ncq
# - if no status text handler available, dump to stdout
#
# Revision 1.15 2004/12/21 19:40:56 ncq
# - fix faulty LogException() usage
#
# Revision 1.14 2004/09/25 13:10:40 ncq
# - in gm_beep_statustext() make aMessage a defaulted keyword argument
#
# Revision 1.13 2004/08/19 13:56:51 ncq
# - added gm_show_warning()
#
# Revision 1.12 2004/08/18 10:18:42 ncq
# - added gm_show_info()
#
# Revision 1.11 2004/05/28 13:30:27 ncq
# - set_status_text -> _set_status_text so nobody
# gets the idea to use it directly
#
# Revision 1.10 2004/05/26 23:23:35 shilbert
# - import statement fixed
#
# Revision 1.9 2004/04/11 10:10:56 ncq
# - cleanup
#
# Revision 1.8 2004/04/10 01:48:31 ihaywood
# can generate referral letters, output to xdvi at present
#
# Revision 1.7 2004/03/04 19:46:54 ncq
# - switch to package based import: from Gnumed.foo import bar
#
# Revision 1.6 2003/12/29 16:49:18 uid66147
# - cleanup, gm_beep_statustext()
#
# Revision 1.5 2003/11/17 10:56:38 sjtan
#
# synced and commiting.
#
# Revision 1.1 2003/10/23 06:02:39 sjtan
#
# manual edit areas modelled after r.terry's specs.
#
# Revision 1.4 2003/08/26 12:35:52 ncq
# - properly replace \n\r
#
# Revision 1.3 2003/08/24 09:15:20 ncq
# - remove spurious self's
#
# Revision 1.2 2003/08/24 08:58:07 ncq
# - use gm_show_*
#
# Revision 1.1 2003/08/21 00:11:48 ncq
# - adds some widely used wxPython GUI helper functions
#
|