Mini Shell

Direktori : /lib/python3.6/site-packages/orca/scripts/web/
Upload File :
Current File : //lib/python3.6/site-packages/orca/scripts/web/tutorial_generator.py

# Orca
#
# Copyright 2014 Orca Team.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., Franklin Street, Fifth Floor,
# Boston MA  02110-1301 USA.

__id__        = "$Id$"
__version__   = "$Revision$"
__date__      = "$Date$"
__copyright__ = "Copyright (c) 2014 Orca Team."
__license__   = "LGPL"

from orca import messages
from orca import tutorialgenerator


class TutorialGenerator(tutorialgenerator.TutorialGenerator):
    def __init__(self, script):
        super().__init__(script)

    def _getFocusModeTutorial(self, obj, alreadyFocused, forceTutorial):
        binding = self._getBindingsForHandler("togglePresentationModeHandler")
        if not binding:
            return []

        return [messages.MODE_FOCUS_TUTORIAL % binding]

    def _getModeTutorial(self, obj, alreadyFocused, forceTutorial):
        if self._script.utilities.isFocusModeWidget(obj) \
           and not self._script.useFocusMode(obj):
            return self._getFocusModeTutorial(obj, alreadyFocused, forceTutorial)

        return super()._getModeTutorial(obj, alreadyFocused, forceTutorial)