Preferences/ConfigurationPages/EditorCalltipsPage.py

Fri, 31 Dec 2010 15:50:33 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 31 Dec 2010 15:50:33 +0100
branch
5_0_x
changeset 792
a13346916170
parent 13
1af94a91f439
permissions
-rw-r--r--

Updated copyright notice.

# -*- coding: utf-8 -*-

# Copyright (c) 2006 - 2011 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing the Editor Calltips configuration page.
"""

from PyQt4.QtCore import pyqtSlot

from .ConfigurationPageBase import ConfigurationPageBase
from .Ui_EditorCalltipsPage import Ui_EditorCalltipsPage

import Preferences

class EditorCalltipsPage(ConfigurationPageBase, Ui_EditorCalltipsPage):
    """
    Class implementing the Editor Calltips configuration page.
    """
    def __init__(self):
        """
        Constructor
        """
        ConfigurationPageBase.__init__(self)
        self.setupUi(self)
        self.setObjectName("EditorCalltipsPage")
        
        # set initial values
        self.ctEnabledCheckBox.setChecked(\
            Preferences.getEditor("CallTipsEnabled"))
        
        self.ctVisibleSlider.setValue(\
            Preferences.getEditor("CallTipsVisible"))
        self.callTipsBackgroundColour = \
            self.initColour("CallTipsBackground", self.calltipsBackgroundButton, 
                Preferences.getEditorColour)
        
        self.ctScintillaCheckBox.setChecked(
            Preferences.getEditor("CallTipsScintillaOnFail"))
        
    def save(self):
        """
        Public slot to save the EditorCalltips configuration.
        """
        Preferences.setEditor("CallTipsEnabled",
            self.ctEnabledCheckBox.isChecked())
        
        Preferences.setEditor("CallTipsVisible",
            self.ctVisibleSlider.value())
        Preferences.setEditorColour("CallTipsBackground", self.callTipsBackgroundColour)
        
        Preferences.setEditor("CallTipsScintillaOnFail", 
            self.ctScintillaCheckBox.isChecked())
        
    @pyqtSlot()
    def on_calltipsBackgroundButton_clicked(self):
        """
        Private slot to set the background colour for calltips.
        """
        self.callTipsBackgroundColour = \
            self.selectColour(self.calltipsBackgroundButton, 
                self.callTipsBackgroundColour)

def create(dlg):
    """
    Module function to create the configuration page.
    
    @param dlg reference to the configuration dialog
    """
    page = EditorCalltipsPage()
    return page

eric ide

mercurial