當前位置: 首頁>>代碼示例>>Python>>正文


Python Timeline.get_parent方法代碼示例

本文整理匯總了Python中pitivi.timeline.timeline.Timeline.get_parent方法的典型用法代碼示例。如果您正苦於以下問題:Python Timeline.get_parent方法的具體用法?Python Timeline.get_parent怎麽用?Python Timeline.get_parent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pitivi.timeline.timeline.Timeline的用法示例。


在下文中一共展示了Timeline.get_parent方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: createTimeline

# 需要導入模塊: from pitivi.timeline.timeline import Timeline [as 別名]
# 或者: from pitivi.timeline.timeline.Timeline import get_parent [as 別名]
 def createTimeline(self, layers_heights):
     project_manager = ProjectManager(app=None)
     project_manager.newBlankProject()
     project = project_manager.current_project
     timeline = Timeline(container=None, app=None)
     timeline.get_parent = mock.MagicMock()
     timeline.setProject(project)
     y = 0
     for priority, height in enumerate(layers_heights):
         bLayer = timeline.createLayer(priority=priority)
         rect = Gdk.Rectangle()
         rect.y = y
         rect.height = height
         bLayer.ui.set_allocation(rect)
         y += height + SEPARATOR_HEIGHT
     return timeline
開發者ID:davlem,項目名稱:pitivi,代碼行數:18,代碼來源:test_timeline_timeline.py


注:本文中的pitivi.timeline.timeline.Timeline.get_parent方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。