2007-01-09 Zsolt Foldvari <zfoldvar@users.sourceforge.net>
* src/GrampsWidget.py: set_completion_mode() added, exact_completion fixed, cleanup * src/GrampsLogger/_ErrorView.py: missing help_clicked method added * src/Editors/_EditEventRef.py: reminder about missing help handle svn: r7887
This commit is contained in:
parent
f4fe910312
commit
ecbfe5bf78
@ -1,3 +1,9 @@
|
|||||||
|
2007-01-09 Zsolt Foldvari <zfoldvar@users.sourceforge.net>
|
||||||
|
* src/GrampsWidget.py: set_completion_mode() added, exact_completion
|
||||||
|
fixed, cleanup
|
||||||
|
* src/GrampsLogger/_ErrorView.py: missing help_clicked method added
|
||||||
|
* src/Editors/_EditEventRef.py: reminder about missing help handle
|
||||||
|
|
||||||
2007-01-08 Don Allingham <don@gramps-project.org>
|
2007-01-08 Don Allingham <don@gramps-project.org>
|
||||||
|
|
||||||
* src/DataViews/_MediaView.py: pylint
|
* src/DataViews/_MediaView.py: pylint
|
||||||
|
@ -89,6 +89,8 @@ class EditEventRef(EditReference):
|
|||||||
def _connect_signals(self):
|
def _connect_signals(self):
|
||||||
self.define_ok_button(self.top.get_widget('ok'),self.ok_clicked)
|
self.define_ok_button(self.top.get_widget('ok'),self.ok_clicked)
|
||||||
self.define_cancel_button(self.top.get_widget('cancel'))
|
self.define_cancel_button(self.top.get_widget('cancel'))
|
||||||
|
# FIXME: activate when help page is available
|
||||||
|
#self.define_help_button(self.top.get_widget('help'), 'tag')
|
||||||
|
|
||||||
def _setup_fields(self):
|
def _setup_fields(self):
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@ from gettext import gettext as _
|
|||||||
import gtk
|
import gtk
|
||||||
|
|
||||||
from _ErrorReportAssistant import ErrorReportAssistant
|
from _ErrorReportAssistant import ErrorReportAssistant
|
||||||
|
import GrampsDisplay
|
||||||
|
|
||||||
class ErrorView(object):
|
class ErrorView(object):
|
||||||
"""
|
"""
|
||||||
@ -21,14 +22,21 @@ class ErrorView(object):
|
|||||||
self.run()
|
self.run()
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
self.response = self.top.run()
|
response = gtk.RESPONSE_HELP
|
||||||
if self.response == gtk.RESPONSE_HELP:
|
while response == gtk.RESPONSE_HELP:
|
||||||
self.help_clicked()
|
response = self.top.run()
|
||||||
elif self.response == gtk.RESPONSE_YES:
|
if response == gtk.RESPONSE_HELP:
|
||||||
ErrorReportAssistant(error_detail = self._error_detail,
|
self.help_clicked()
|
||||||
rotate_handler = self._rotate_handler)
|
elif response == gtk.RESPONSE_YES:
|
||||||
|
ErrorReportAssistant(error_detail = self._error_detail,
|
||||||
|
rotate_handler = self._rotate_handler)
|
||||||
self.top.destroy()
|
self.top.destroy()
|
||||||
|
|
||||||
|
def help_clicked(self):
|
||||||
|
"""Display the relevant portion of GRAMPS manual"""
|
||||||
|
# FIXME: replace tag when relevant help page is available
|
||||||
|
GrampsDisplay.help('faq')
|
||||||
|
|
||||||
def draw_window(self):
|
def draw_window(self):
|
||||||
title = "%s - GRAMPS" % _("Error Report")
|
title = "%s - GRAMPS" % _("Error Report")
|
||||||
self.top = gtk.Dialog(title)
|
self.top = gtk.Dialog(title)
|
||||||
|
@ -20,12 +20,25 @@
|
|||||||
|
|
||||||
# $Id$
|
# $Id$
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Standard python modules
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
import cgi
|
import cgi
|
||||||
import os
|
import os
|
||||||
import cPickle as pickle
|
import cPickle as pickle
|
||||||
from gettext import gettext as _
|
from gettext import gettext as _
|
||||||
import string
|
import string
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# set up logging
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
import logging
|
||||||
|
log = logging.getLogger(".GrampsWidget")
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# GTK/Gnome modules
|
# GTK/Gnome modules
|
||||||
@ -35,20 +48,28 @@ import gobject
|
|||||||
import gtk
|
import gtk
|
||||||
import pango
|
import pango
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Gramps modules
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
import AutoComp
|
import AutoComp
|
||||||
import DateHandler
|
import DateHandler
|
||||||
import DateEdit
|
import DateEdit
|
||||||
import const
|
import const
|
||||||
import Errors
|
|
||||||
import Config
|
import Config
|
||||||
|
from Errors import MaskError, ValidationError, WindowActiveError
|
||||||
from Errors import MaskError, ValidationError
|
|
||||||
|
|
||||||
from DdTargets import DdTargets
|
from DdTargets import DdTargets
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Constants
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
_lock_path = os.path.join(const.image_dir, 'stock_lock.png')
|
_lock_path = os.path.join(const.image_dir, 'stock_lock.png')
|
||||||
_lock_open_path = os.path.join(const.image_dir, 'stock_lock-open.png')
|
_lock_open_path = os.path.join(const.image_dir, 'stock_lock-open.png')
|
||||||
|
|
||||||
|
|
||||||
hand_cursor = gtk.gdk.Cursor(gtk.gdk.HAND2)
|
hand_cursor = gtk.gdk.Cursor(gtk.gdk.HAND2)
|
||||||
def realize_cb(widget):
|
def realize_cb(widget):
|
||||||
widget.window.set_cursor(hand_cursor)
|
widget.window.set_cursor(hand_cursor)
|
||||||
@ -689,7 +710,6 @@ class FadeOut(gobject.GObject):
|
|||||||
self._start_color = None
|
self._start_color = None
|
||||||
self._background_timeout_id = -1
|
self._background_timeout_id = -1
|
||||||
self._countdown_timeout_id = -1
|
self._countdown_timeout_id = -1
|
||||||
##self._log = Logger('fade')
|
|
||||||
self._done = False
|
self._done = False
|
||||||
|
|
||||||
def _merge_colors(self, src_color, dst_color, steps=10):
|
def _merge_colors(self, src_color, dst_color, steps=10):
|
||||||
@ -697,8 +717,7 @@ class FadeOut(gobject.GObject):
|
|||||||
Change the background of widget from src_color to dst_color
|
Change the background of widget from src_color to dst_color
|
||||||
in the number of steps specified
|
in the number of steps specified
|
||||||
"""
|
"""
|
||||||
|
##log.debug('_merge_colors: %s -> %s' % (src_color, dst_color))
|
||||||
##self._log.debug('_merge_colors: %s -> %s' % (src_color, dst_color))
|
|
||||||
|
|
||||||
rs, gs, bs = src_color.red, src_color.green, src_color.blue
|
rs, gs, bs = src_color.red, src_color.green, src_color.blue
|
||||||
rd, gd, bd = dst_color.red, dst_color.green, dst_color.blue
|
rd, gd, bd = dst_color.red, dst_color.green, dst_color.blue
|
||||||
@ -723,10 +742,10 @@ class FadeOut(gobject.GObject):
|
|||||||
def _start_merging(self):
|
def _start_merging(self):
|
||||||
# If we changed during the delay
|
# If we changed during the delay
|
||||||
if self._background_timeout_id != -1:
|
if self._background_timeout_id != -1:
|
||||||
##self._log.debug('_start_merging: Already running')
|
##log.debug('_start_merging: Already running')
|
||||||
return
|
return
|
||||||
|
|
||||||
##self._log.debug('_start_merging: Starting')
|
##log.debug('_start_merging: Starting')
|
||||||
func = self._merge_colors(self._start_color,
|
func = self._merge_colors(self._start_color,
|
||||||
gtk.gdk.color_parse(self.ERROR_COLOR)).next
|
gtk.gdk.color_parse(self.ERROR_COLOR)).next
|
||||||
self._background_timeout_id = (
|
self._background_timeout_id = (
|
||||||
@ -739,17 +758,17 @@ class FadeOut(gobject.GObject):
|
|||||||
@returns: True if we could start, False if was already in progress
|
@returns: True if we could start, False if was already in progress
|
||||||
"""
|
"""
|
||||||
if self._background_timeout_id != -1:
|
if self._background_timeout_id != -1:
|
||||||
##self._log.debug('start: Background change already running')
|
##log.debug('start: Background change already running')
|
||||||
return False
|
return False
|
||||||
if self._countdown_timeout_id != -1:
|
if self._countdown_timeout_id != -1:
|
||||||
##self._log.debug('start: Countdown already running')
|
##log.debug('start: Countdown already running')
|
||||||
return False
|
return False
|
||||||
if self._done:
|
if self._done:
|
||||||
##self._log.debug('start: Not running, already set')
|
##log.debug('start: Not running, already set')
|
||||||
return False
|
return False
|
||||||
|
|
||||||
self._start_color = color
|
self._start_color = color
|
||||||
##self._log.debug('start: Scheduling')
|
##log.debug('start: Scheduling')
|
||||||
self._countdown_timeout_id = gobject.timeout_add(
|
self._countdown_timeout_id = gobject.timeout_add(
|
||||||
FadeOut.COMPLAIN_DELAY, self._start_merging)
|
FadeOut.COMPLAIN_DELAY, self._start_merging)
|
||||||
|
|
||||||
@ -757,7 +776,7 @@ class FadeOut(gobject.GObject):
|
|||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
"""Stops the fadeout and restores the background color"""
|
"""Stops the fadeout and restores the background color"""
|
||||||
##self._log.debug('Stopping')
|
##log.debug('Stopping')
|
||||||
if self._background_timeout_id != -1:
|
if self._background_timeout_id != -1:
|
||||||
gobject.source_remove(self._background_timeout_id)
|
gobject.source_remove(self._background_timeout_id)
|
||||||
self._background_timeout_id = -1
|
self._background_timeout_id = -1
|
||||||
@ -1145,10 +1164,12 @@ INPUT_CHAR_MAP = {
|
|||||||
|
|
||||||
class MaskedEntry(gtk.Entry):
|
class MaskedEntry(gtk.Entry):
|
||||||
"""
|
"""
|
||||||
The MaskedEntry is a Entry subclass with the following additions:
|
The MaskedEntry is an Entry subclass with additional features.
|
||||||
|
|
||||||
|
Additional features:
|
||||||
- Mask, force the input to meet certain requirements
|
- Mask, force the input to meet certain requirements
|
||||||
- IconEntry, allows you to have an icon inside the entry
|
- IconEntry, allows you to have an icon inside the entry
|
||||||
|
- convenience functions for completion
|
||||||
"""
|
"""
|
||||||
__gtype_name__ = 'MaskedEntry'
|
__gtype_name__ = 'MaskedEntry'
|
||||||
|
|
||||||
@ -1227,6 +1248,7 @@ class MaskedEntry(gtk.Entry):
|
|||||||
def set_mask(self, mask):
|
def set_mask(self, mask):
|
||||||
"""
|
"""
|
||||||
Sets the mask of the Entry.
|
Sets the mask of the Entry.
|
||||||
|
|
||||||
Supported format characters are:
|
Supported format characters are:
|
||||||
- '0' digit
|
- '0' digit
|
||||||
- 'L' ascii letter (a-z and A-Z)
|
- 'L' ascii letter (a-z and A-Z)
|
||||||
@ -1242,7 +1264,6 @@ class MaskedEntry(gtk.Entry):
|
|||||||
|
|
||||||
@param mask: the mask to set
|
@param mask: the mask to set
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if not mask:
|
if not mask:
|
||||||
self.modify_font(pango.FontDescription("sans"))
|
self.modify_font(pango.FontDescription("sans"))
|
||||||
self._mask = mask
|
self._mask = mask
|
||||||
@ -1393,7 +1414,7 @@ class MaskedEntry(gtk.Entry):
|
|||||||
|
|
||||||
@param start:
|
@param start:
|
||||||
@param end:
|
@param end:
|
||||||
@param direction: see L{kiwi.enums.Direction}
|
@param direction: DIRECTION_LEFT or DIRECTION_RIGHT
|
||||||
@param positions: the number of positions to shift.
|
@param positions: the number of positions to shift.
|
||||||
|
|
||||||
@return: returns the text between start and end, shifted to
|
@return: returns the text between start and end, shifted to
|
||||||
@ -1484,6 +1505,7 @@ class MaskedEntry(gtk.Entry):
|
|||||||
@type value: boolean
|
@type value: boolean
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
self._exact_completion = value
|
||||||
if value:
|
if value:
|
||||||
match_func = self._completion_exact_match_func
|
match_func = self._completion_exact_match_func
|
||||||
else:
|
else:
|
||||||
@ -1555,17 +1577,35 @@ class MaskedEntry(gtk.Entry):
|
|||||||
#completion.set_model(gtk.ListStore(str, object))
|
#completion.set_model(gtk.ListStore(str, object))
|
||||||
completion.set_model(gtk.ListStore(str))
|
completion.set_model(gtk.ListStore(str))
|
||||||
completion.set_text_column(0)
|
completion.set_text_column(0)
|
||||||
|
#completion.connect("match-selected",
|
||||||
|
#self._on_completion__match_selected)
|
||||||
|
|
||||||
self._completion = gtk.Entry.get_completion(self)
|
self._completion = gtk.Entry.get_completion(self)
|
||||||
self.set_exact_completion(self._exact_completion)
|
self.set_exact_completion(self._exact_completion)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
def set_completion_mode(self, popup=None, inline=None):
|
||||||
|
'''
|
||||||
|
Set the way how completion is presented.
|
||||||
|
|
||||||
|
@param popup: enable completion in popup window
|
||||||
|
@type popup: boolean
|
||||||
|
@param inline: enable inline completion
|
||||||
|
@type inline: boolean
|
||||||
|
'''
|
||||||
|
completion = self._get_completion()
|
||||||
|
if popup is not None:
|
||||||
|
completion.set_popup_completion(popup)
|
||||||
|
if inline is not None:
|
||||||
|
completion.set_inline_completion(inline)
|
||||||
|
|
||||||
def _completion_exact_match_func(self, completion, key, iter):
|
def _completion_exact_match_func(self, completion, key, iter):
|
||||||
model = completion.get_model()
|
model = completion.get_model()
|
||||||
if not len(model):
|
if not len(model):
|
||||||
return
|
return
|
||||||
|
|
||||||
content = model[iter][COL_TEXT]
|
content = model[iter][COL_TEXT]
|
||||||
return key.startswith(content)
|
return content.startswith(self.get_text())
|
||||||
|
|
||||||
def _completion_normal_match_func(self, completion, key, iter):
|
def _completion_normal_match_func(self, completion, key, iter):
|
||||||
model = completion.get_model()
|
model = completion.get_model()
|
||||||
@ -1575,6 +1615,16 @@ class MaskedEntry(gtk.Entry):
|
|||||||
content = model[iter][COL_TEXT].lower()
|
content = model[iter][COL_TEXT].lower()
|
||||||
return key.lower() in content
|
return key.lower() in content
|
||||||
|
|
||||||
|
def _on_completion__match_selected(self, completion, model, iter):
|
||||||
|
if not len(model):
|
||||||
|
return
|
||||||
|
|
||||||
|
# this updates current_object and triggers content-changed
|
||||||
|
self.set_text(model[iter][COL_TEXT])
|
||||||
|
self.set_position(-1)
|
||||||
|
# FIXME: Enable this at some point
|
||||||
|
#self.activate()
|
||||||
|
|
||||||
def _appers_later(self, char, start):
|
def _appers_later(self, char, start):
|
||||||
"""
|
"""
|
||||||
Check if a char appers later on the mask. If it does, return
|
Check if a char appers later on the mask. If it does, return
|
||||||
@ -1927,7 +1977,7 @@ class MaskedEntry(gtk.Entry):
|
|||||||
def get_icon_window(self):
|
def get_icon_window(self):
|
||||||
return self._icon.get_icon_window()
|
return self._icon.get_icon_window()
|
||||||
|
|
||||||
# Combo
|
# gtk.EntryCompletion convenience function
|
||||||
|
|
||||||
def prefill(self, itemdata, sort=False):
|
def prefill(self, itemdata, sort=False):
|
||||||
if not isinstance(itemdata, (list, tuple)):
|
if not isinstance(itemdata, (list, tuple)):
|
||||||
@ -1953,7 +2003,7 @@ class MaskedEntry(gtk.Entry):
|
|||||||
values[item] = None
|
values[item] = None
|
||||||
|
|
||||||
model.append((item,))
|
model.append((item,))
|
||||||
|
|
||||||
if gtk.pygtk_version < (2,8,0):
|
if gtk.pygtk_version < (2,8,0):
|
||||||
gobject.type_register(MaskedEntry)
|
gobject.type_register(MaskedEntry)
|
||||||
|
|
||||||
@ -1966,7 +2016,9 @@ ERROR_ICON = gtk.STOCK_STOP
|
|||||||
class ValidatableMaskedEntry(MaskedEntry):
|
class ValidatableMaskedEntry(MaskedEntry):
|
||||||
"""It extends the MaskedEntry with validation feature.
|
"""It extends the MaskedEntry with validation feature.
|
||||||
|
|
||||||
Merged from Kiwi's ValidatableProxyWidgetMixin and ProxyEntry
|
Merged from Kiwi's ValidatableProxyWidgetMixin and ProxyEntry.
|
||||||
|
To provide custom validation connect to the 'validate' signal
|
||||||
|
of the instance.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__gtype_name__ = 'ValidatableMaskedEntry'
|
__gtype_name__ = 'ValidatableMaskedEntry'
|
||||||
@ -2237,7 +2289,9 @@ def main(args):
|
|||||||
vbox.pack_start(label)
|
vbox.pack_start(label)
|
||||||
|
|
||||||
widget1 = ValidatableMaskedEntry(str)
|
widget1 = ValidatableMaskedEntry(str)
|
||||||
|
widget1.set_completion_mode(inline=True, popup=False)
|
||||||
widget1.prefill(('Birth', 'Death', 'Conseption'))
|
widget1.prefill(('Birth', 'Death', 'Conseption'))
|
||||||
|
#widget1.set_exact_completion(True)
|
||||||
vbox.pack_start(widget1, fill=False)
|
vbox.pack_start(widget1, fill=False)
|
||||||
|
|
||||||
label = gtk.Label('Mandatory masked entry validated against user function:')
|
label = gtk.Label('Mandatory masked entry validated against user function:')
|
||||||
|
Loading…
Reference in New Issue
Block a user