Preferences/ConfigurationPages/EditorCalltipsPage.py

Tue, 13 Jul 2010 19:14:58 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 13 Jul 2010 19:14:58 +0200
branch
5_0_x
changeset 389
1a8c8424d2b3
parent 13
1af94a91f439
child 564
b3d966393ba9
child 792
a13346916170
permissions
-rw-r--r--

Fixed an issue with the Email config page.

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

# Copyright (c) 2006 - 2010 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