From c74c8f22407ca7028eeb9551fa2925b75f54cac3 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Sat, 02 Jun 2012 12:10:46 +0000 Subject: account for toolbars when positioning video window overlay --- (limited to 'TurtleArtActivity.py') diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py index d8a4a36..7a9d9ad 100644 --- a/TurtleArtActivity.py +++ b/TurtleArtActivity.py @@ -515,6 +515,24 @@ class TurtleArtActivity(activity.Activity): ''' Keep-button clicked. ''' self.jobject_new_patch() + def is_fullscreen(self): + ''' Are we in fullscreen mode (toolbars hidden)? ''' + # Fixme: this should be a exposed as a window property, not private + return self._is_fullscreen + + def toolbars_expanded(self): + ''' Are any toolbars expanded? ''' + if self.palette_toolbar_button.is_expanded(): + return True + elif self.edit_toolbar_button.is_expanded(): + return True + elif self.view_toolbar_button.is_expanded(): + return True + elif self.activity_toolbar_button.is_expanded(): + return True + else: + return False + def _setup_toolbar(self): ''' Setup toolbar according to Sugar version. ''' if self.has_toolbarbox: -- cgit v0.9.1