QScintilla/GotoDialog.py

Sun, 08 May 2011 17:06:56 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 08 May 2011 17:06:56 +0200
branch
5_1_x
changeset 1024
e10ef1961fe2
parent 959
3b5ad7224945
child 1510
e75ecf2bd9dd
permissions
-rw-r--r--

Prepared new release.

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

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

"""
Module implementing the Goto dialog.
"""

from PyQt4.QtGui import QDialog

from .Ui_GotoDialog import Ui_GotoDialog

class GotoDialog(QDialog, Ui_GotoDialog):
    """
    Class implementing the Goto dialog.
    """
    def __init__(self, maximum, curLine, parent, name = None, modal = False):
        """
        Constructor
        
        @param maximum maximum allowed for the spinbox (integer)
        @param curLine current line number (integer)
        @param parent parent widget of this dialog (QWidget)
        @param name name of this dialog (string)
        @param modal flag indicating a modal dialog (boolean)
        """
        QDialog.__init__(self, parent)
        if name:
            self.setObjectName(name)
        self.setupUi(self)
        self.setModal(modal)
        
        self.linenumberSpinBox.setMaximum(maximum)
        self.linenumberSpinBox.setValue(curLine)
        self.linenumberSpinBox.selectAll()
        
    def getLinenumber(self):
        """
        Public method to retrieve the linenumber.
        
        @return line number (int)
        """
        return self.linenumberSpinBox.value()

eric ide

mercurial