* src/FamilyView.py: start of a new family view.
* src/gramps_main.py: register FamilyView svn: r5474
This commit is contained in:
parent
50df33736a
commit
7e49f9679d
@ -1,3 +1,7 @@
|
||||
2005-12-04 Don Allingham <don@gramps-project.org>
|
||||
* src/FamilyView.py: start of a new family view.
|
||||
* src/gramps_main.py: register FamilyView
|
||||
|
||||
2005-09-16 Don Allingham <don@gramps-project.org>
|
||||
* src/DisplayState.py: remove relationship display stuff for the time
|
||||
being.
|
||||
|
1699
src/FamilyView.py
1699
src/FamilyView.py
File diff suppressed because it is too large
Load Diff
@ -150,6 +150,7 @@ class PersonView(PageView.PersonNavView):
|
||||
scrollwindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
|
||||
scrollwindow.set_shadow_type(gtk.SHADOW_ETCHED_IN)
|
||||
scrollwindow.add(self.tree)
|
||||
scrollwindow.show_all()
|
||||
|
||||
self.vbox.pack_start(self.filterbar,False)
|
||||
self.vbox.pack_start(scrollwindow,True)
|
||||
|
@ -38,6 +38,7 @@ import PersonView
|
||||
import RepositoryView
|
||||
import PedView
|
||||
import MapView
|
||||
import FamilyView
|
||||
import PlaceView
|
||||
import EventView
|
||||
import SourceView
|
||||
@ -153,6 +154,7 @@ class Gramps:
|
||||
state = GrampsDbBase.DbState()
|
||||
vm = ViewManager.ViewManager(state)
|
||||
vm.register_view(PersonView.PersonView)
|
||||
vm.register_view(FamilyView.FamilyView)
|
||||
vm.register_view(PedView.PedView)
|
||||
vm.register_view(EventView.EventView)
|
||||
vm.register_view(SourceView.SourceView)
|
||||
|
Loading…
Reference in New Issue
Block a user