Remove column config from db, move to the plugins
Start with reuse of preferences for all configuration Allow all view plugins to set configuration dialog TODO: activate the column reorder in config of listviews svn: r14176
This commit is contained in:
@@ -195,13 +195,6 @@ class DbReadBase(object):
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_event_column_order(self):
|
||||
"""
|
||||
Return the Event display common information stored in the database's
|
||||
metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_event_cursor(self):
|
||||
"""
|
||||
Return a reference to a cursor over Family objects
|
||||
@@ -289,13 +282,6 @@ class DbReadBase(object):
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_family_list_column_order(self):
|
||||
"""
|
||||
Return the Person display common information stored in the database's
|
||||
metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_family_relation_types(self):
|
||||
"""
|
||||
Return a list of all relationship types associated with Family
|
||||
@@ -334,13 +320,6 @@ class DbReadBase(object):
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_media_column_order(self):
|
||||
"""
|
||||
Return the MediaObject display common information stored in the
|
||||
database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_media_cursor(self):
|
||||
"""
|
||||
Return a reference to a cursor over Media objects
|
||||
@@ -387,13 +366,6 @@ class DbReadBase(object):
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_note_column_order(self):
|
||||
"""
|
||||
Return the Note display common information stored in the database's
|
||||
metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_note_cursor(self):
|
||||
"""
|
||||
Return a reference to a cursor over Note objects
|
||||
@@ -503,13 +475,6 @@ class DbReadBase(object):
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_person_column_order(self):
|
||||
"""
|
||||
Return the Person display common information stored in the database's
|
||||
metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_person_cursor(self):
|
||||
"""
|
||||
Return a reference to a cursor over Person objects
|
||||
@@ -555,13 +520,6 @@ class DbReadBase(object):
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_place_column_order(self):
|
||||
"""
|
||||
Return the Place display common information stored in thedatabase's
|
||||
metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_place_cursor(self):
|
||||
"""
|
||||
Return a reference to a cursor over Place objects
|
||||
@@ -666,13 +624,6 @@ class DbReadBase(object):
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_repository_column_order(self):
|
||||
"""
|
||||
Return the Repository display common information stored in the
|
||||
database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_repository_cursor(self):
|
||||
"""
|
||||
Return a reference to a cursor over Repository objects
|
||||
@@ -729,13 +680,6 @@ class DbReadBase(object):
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_source_column_order(self):
|
||||
"""
|
||||
Return the Source display common information stored in the database's
|
||||
metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_source_cursor(self):
|
||||
"""
|
||||
Return a reference to a cursor over Source objects
|
||||
@@ -1072,74 +1016,6 @@ class DbReadBase(object):
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def get_child_column_order(self):
|
||||
"""
|
||||
Return the Person display common information stored in the database's
|
||||
metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_child_column_order(self, col_list):
|
||||
"""
|
||||
Store the Person display common information in the database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_column_order(self, col_list, name):
|
||||
"""
|
||||
Store the display information in the database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_event_column_order(self, col_list):
|
||||
"""
|
||||
Store the Event display common information in the database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_family_list_column_order(self, col_list):
|
||||
"""
|
||||
Store the Person display common information in the database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_media_column_order(self, col_list):
|
||||
"""
|
||||
Store the Media display common information in the database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_note_column_order(self, col_list):
|
||||
"""
|
||||
Store the Note display common information in the database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_person_column_order(self, col_list):
|
||||
"""
|
||||
Store the Person display common information in the database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_place_column_order(self, col_list):
|
||||
"""
|
||||
Store the Place display common information in the database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_repository_column_order(self, col_list):
|
||||
"""
|
||||
Store the Repository display common information in the database's
|
||||
metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_source_column_order(self, col_list):
|
||||
"""
|
||||
Store the Source display common information in the database's metadata.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def set_mediapath(self, path):
|
||||
"""
|
||||
Set the default media path for database, path should be utf-8.
|
||||
|
Reference in New Issue
Block a user