From a91738d3a9a85b46952995df12ed473692e5c2e6 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Thu, 28 Sep 2006 20:11:29 +0000 Subject: Default values for args for do_slide_in and do_slide_out, and add is_visisble() --- (limited to 'shell/view') diff --git a/shell/view/frame/Frame.py b/shell/view/frame/Frame.py index ef0077a..0206080 100644 --- a/shell/view/frame/Frame.py +++ b/shell/view/frame/Frame.py @@ -210,14 +210,19 @@ class Frame: if self._mode == Frame.TEMPORARY: self._timeline.play('before_slide_out', 'slide_out') - def do_slide_in(self, current, n_frames): + def do_slide_in(self, current=0, n_frames=0): if not self._windows[0].props.visible: for panel in self._windows: panel.show() self._event_frame.hide() - def do_slide_out(self, current, n_frames): + def do_slide_out(self, current=0, n_frames=0): if self._windows[0].props.visible: for panel in self._windows: panel.hide() self._event_frame.show() + + def is_visible(self): + if self._windows[0].props.visible: + return True + return False -- cgit v0.9.1