コード例 #1
0
ファイル: Album.py プロジェクト: sseycek/galgen
 def __init__(self, name, pic_location, menu_id, title, subtitle, description):
     PictureReference.__init__(self, name, pic_location, menu_id, title, subtitle, description)
     Container.__init__(self)
     Contained.__init__(self)
     Modifyable.__init__(self)
コード例 #2
0
ファイル: Gallery.py プロジェクト: sseycek/galgen
 def __init__(self, name, menu_id, title, subtitle, description):
     NamedObject.__init__(self, name, menu_id, title, subtitle, description)
     Container.__init__(self)
     Contained.__init__(self)
     Modifyable.__init__(self)
コード例 #3
0
ファイル: CustomContentPage.py プロジェクト: sseycek/galgen
 def __init__(self, name, html_location, supplemental_dir, menu_id, title, subtitle, description):
     Modifyable.__init__(self)
     CustomContentReference.__init__(self, name, menu_id, title, subtitle, html_location, supplemental_dir, description)
     Contained.__init__(self)
コード例 #4
0
ファイル: Picture.py プロジェクト: sseycek/galgen
 def __init__(self, name, pic_location, highres_location, menu_id, title, subtitle, description, exif):
     Modifyable.__init__(self)
     PictureReference.__init__(self, name, pic_location, menu_id, title, subtitle, description)
     self.__highres_location = highres_location
     Contained.__init__(self)
     self.__exif = exif