openlp/openlp/core/ui/screen.py

93 lines
3.8 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
# Copyright (c) 2008-2010 Raoul Snyman #
# Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael #
2010-03-21 23:58:01 +00:00
# Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin #
# Thompson, Jon Tibble, Carsten Tinggaard #
# --------------------------------------------------------------------------- #
# This program is free software; you can redistribute it and/or modify it #
# under the terms of the GNU General Public License as published by the Free #
# Software Foundation; version 2 of the License. #
# #
# This program 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 General Public License for #
# more details. #
# #
# You should have received a copy of the GNU General Public License along #
# with this program; if not, write to the Free Software Foundation, Inc., 59 #
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
###############################################################################
2010-03-21 23:58:01 +00:00
import logging
2010-04-24 19:57:29 +00:00
import copy
2010-02-27 15:31:23 +00:00
log = logging.getLogger(__name__)
2010-01-22 18:59:36 +00:00
class ScreenList(object):
"""
Wrapper to handle the parameters of the display screen
"""
log.info(u'Screen loaded')
def __init__(self):
self.preview = None
self.current = None
2010-04-24 19:57:29 +00:00
self.override = None
self.screen_list = []
2010-04-02 18:12:54 +00:00
self.display_count = 0
#actual display number
self.current_display = 0
2010-04-02 18:12:54 +00:00
#save config display number
self.monitor_number = 0
def add_screen(self, screen):
2010-03-09 19:14:23 +00:00
if screen[u'primary']:
self.current = screen
self.screen_list.append(screen)
2010-04-02 18:12:54 +00:00
self.display_count += 1
def screen_exists(self, number):
for screen in self.screen_list:
if screen[u'number'] == number:
return True
return False
def set_current_display(self, number):
2010-04-02 18:12:54 +00:00
"""
Set up the current screen dimensions
"""
log.debug(u'set_current_display %s', number, )
2010-04-02 18:12:54 +00:00
if number + 1 > self.display_count:
self.current = self.screen_list[0]
self.override = copy.deepcopy(self.current)
self.current_display = 0
else:
self.current = self.screen_list[number]
2010-04-24 19:57:29 +00:00
self.override = copy.deepcopy(self.current)
self.preview = copy.deepcopy(self.current)
self.current_display = number
2010-04-02 18:12:54 +00:00
if self.display_count == 1:
self.preview = self.screen_list[0]
def set_override_display(self):
"""
replace the current size with the override values
user wants to have their own screen attributes
"""
2010-04-24 19:57:29 +00:00
log.debug(u'set_override_display')
self.current = copy.deepcopy(self.override)
self.preview = copy.deepcopy(self.current)
2010-04-24 19:57:29 +00:00
def reset_current_display(self):
"""
replace the current values with the correct values
user wants to use the correct screen attributes
"""
2010-04-24 19:57:29 +00:00
log.debug(u'reset_current_display')
self.set_current_display(self.current_display)