2007-02-13 23:26:31 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
2007-03-28 03:17:18 +05:30
|
|
|
# $Id$
|
2007-02-13 23:26:31 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import time
|
|
|
|
import logging
|
2007-03-04 08:25:43 +05:30
|
|
|
import re
|
2007-02-13 23:26:31 +05:30
|
|
|
log = logging.getLogger(".")
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GNOME/GTK modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gtk
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
|
|
|
import ToolTips
|
|
|
|
import GrampsLocale
|
|
|
|
from _BaseModel import BaseModel
|
2007-10-08 22:11:39 +05:30
|
|
|
import gen.lib
|
2007-02-13 23:26:31 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# PlaceModel
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class NoteModel(BaseModel):
|
|
|
|
|
|
|
|
HANDLE_COL = 2
|
2007-04-19 17:48:38 +05:30
|
|
|
_MARKER_COL = 6
|
2007-02-13 23:26:31 +05:30
|
|
|
|
|
|
|
def __init__(self,db,scol=0,order=gtk.SORT_ASCENDING,search=None,
|
|
|
|
skip=set(), sort_map=None):
|
2007-02-20 10:05:34 +05:30
|
|
|
self.gen_cursor = db.get_note_cursor
|
|
|
|
self.map = db.get_raw_note_data
|
2007-02-13 23:26:31 +05:30
|
|
|
self.fmap = [
|
|
|
|
self.column_id,
|
2007-02-20 10:05:34 +05:30
|
|
|
self.column_type,
|
2007-03-28 19:30:03 +05:30
|
|
|
self.column_marker,
|
2007-02-13 23:26:31 +05:30
|
|
|
self.column_preview,
|
|
|
|
self.column_handle,
|
2007-04-19 17:48:38 +05:30
|
|
|
self.column_marker_color,
|
2007-02-13 23:26:31 +05:30
|
|
|
]
|
|
|
|
self.smap = [
|
|
|
|
self.column_id,
|
2007-02-20 10:05:34 +05:30
|
|
|
self.column_type,
|
2007-03-28 19:30:03 +05:30
|
|
|
self.column_marker,
|
2007-02-13 23:26:31 +05:30
|
|
|
self.column_preview,
|
|
|
|
self.column_handle,
|
2007-04-19 17:48:38 +05:30
|
|
|
self.column_marker_color,
|
2007-02-13 23:26:31 +05:30
|
|
|
]
|
2007-04-19 17:48:38 +05:30
|
|
|
self.marker_color_column = 5
|
2007-02-13 23:26:31 +05:30
|
|
|
BaseModel.__init__(self, db, scol, order,
|
|
|
|
search=search, skip=skip, sort_map=sort_map)
|
|
|
|
|
2007-09-16 17:44:16 +05:30
|
|
|
def __unattached_note(self, handle):
|
|
|
|
""" function that returns true if note is not attached to another
|
|
|
|
object
|
|
|
|
"""
|
|
|
|
if handle :
|
|
|
|
return len([x for x in self.db.find_backlink_handles(handle)]) == 0
|
|
|
|
return False
|
|
|
|
|
|
|
|
def _rebuild_search(self,ignore=None):
|
|
|
|
""" function called when view must be build, given a search text
|
|
|
|
in the top search bar
|
|
|
|
Remark: this method is overrides BaseModel as only unattached notes
|
|
|
|
must be shown
|
|
|
|
"""
|
|
|
|
self.total = 0
|
|
|
|
if self.db.is_open():
|
|
|
|
if self.search and self.search.text:
|
|
|
|
dlist = [h for h in self.sort_keys()\
|
|
|
|
if self.search.match(h) and \
|
|
|
|
h not in self.skip and h != ignore and \
|
|
|
|
self.__unattached_note(h)]
|
|
|
|
else:
|
|
|
|
dlist = [h for h in self.sort_keys() \
|
|
|
|
if h not in self.skip and h != ignore and \
|
|
|
|
self.__unattached_note(h)]
|
|
|
|
self.displayed = len(dlist)
|
|
|
|
self.node_map.set_path_map(dlist)
|
|
|
|
else:
|
|
|
|
self.displayed = 0
|
|
|
|
self.node_map.clear_map()
|
|
|
|
|
|
|
|
def _rebuild_filter(self, ignore=None):
|
|
|
|
""" function called when view must be build, given filter options
|
|
|
|
in the filter sidebar
|
|
|
|
Remark: this method is overrides BaseModel as only unattached notes
|
|
|
|
must be shown
|
|
|
|
"""
|
|
|
|
self.total = 0
|
|
|
|
if self.db.is_open():
|
|
|
|
if self.search:
|
|
|
|
dlist = self.search.apply(self.db,
|
|
|
|
[ k for k in self.sort_keys()\
|
|
|
|
if k != ignore and \
|
2007-09-24 15:38:54 +05:30
|
|
|
self.__unattached_note(k)])
|
2007-09-16 17:44:16 +05:30
|
|
|
else:
|
|
|
|
dlist = [ k for k in self.sort_keys() \
|
|
|
|
if k != ignore and \
|
2007-09-24 15:38:54 +05:30
|
|
|
self.__unattached_note(k)]
|
2007-09-16 17:44:16 +05:30
|
|
|
|
|
|
|
self.displayed = len(dlist)
|
|
|
|
self.node_map.set_path_map(dlist)
|
|
|
|
else:
|
|
|
|
self.displayed = 0
|
|
|
|
self.node_map.clear_map()
|
|
|
|
|
2007-02-13 23:26:31 +05:30
|
|
|
def on_get_n_columns(self):
|
|
|
|
return len(self.fmap)+1
|
|
|
|
|
|
|
|
def column_handle(self,data):
|
2007-02-20 10:05:34 +05:30
|
|
|
return data[0]
|
2007-02-13 23:26:31 +05:30
|
|
|
|
|
|
|
def column_id(self,data):
|
2007-02-20 10:05:34 +05:30
|
|
|
return unicode(data[1])
|
2007-02-13 23:26:31 +05:30
|
|
|
|
2007-02-20 10:05:34 +05:30
|
|
|
def column_type(self,data):
|
2007-10-08 22:11:39 +05:30
|
|
|
temp = gen.lib.NoteType()
|
2007-02-20 10:05:34 +05:30
|
|
|
temp.set(data[4])
|
|
|
|
return unicode(str(temp))
|
2007-02-13 23:26:31 +05:30
|
|
|
|
2007-03-28 19:30:03 +05:30
|
|
|
def column_marker(self, data):
|
2007-10-08 22:11:39 +05:30
|
|
|
temp = gen.lib.MarkerType()
|
2007-03-28 19:30:03 +05:30
|
|
|
temp.set(data[6])
|
|
|
|
return unicode(str(temp))
|
|
|
|
|
2007-02-20 10:05:34 +05:30
|
|
|
def column_preview(self,data):
|
|
|
|
note = " ".join(data[2].split())
|
2007-03-04 08:25:43 +05:30
|
|
|
note = re.sub(r'(<.*?>)', '', note)
|
|
|
|
note = note.replace('&', '&')
|
|
|
|
note = note.replace('<', '<')
|
|
|
|
note = note.replace('>', '>')
|
|
|
|
|
2007-02-20 10:05:34 +05:30
|
|
|
if len(note) > 80:
|
|
|
|
return note[:80]+"..."
|
|
|
|
else:
|
|
|
|
return note
|
2007-02-13 23:26:31 +05:30
|
|
|
|
2007-04-19 17:48:38 +05:30
|
|
|
def column_marker_color(self, data):
|
|
|
|
try:
|
|
|
|
col = data[NoteModel._MARKER_COL][0]
|
2007-10-08 22:11:39 +05:30
|
|
|
if col == gen.lib.MarkerType.COMPLETE:
|
2007-04-19 17:48:38 +05:30
|
|
|
return self.complete_color
|
2007-10-08 22:11:39 +05:30
|
|
|
elif col == gen.lib.MarkerType.TODO_TYPE:
|
2007-04-19 17:48:38 +05:30
|
|
|
return self.todo_color
|
2007-10-08 22:11:39 +05:30
|
|
|
elif col == gen.lib.MarkerType.CUSTOM:
|
2007-04-19 17:48:38 +05:30
|
|
|
return self.custom_color
|
|
|
|
except IndexError:
|
|
|
|
pass
|
|
|
|
return None
|