Sat, 17 Dec 2011 15:23:08 +0100
Updated source docu.
--- a/APIs/Python3/eric5.api Sat Dec 17 15:19:45 2011 +0100 +++ b/APIs/Python3/eric5.api Sat Dec 17 15:23:08 2011 +0100 @@ -4621,6 +4621,9 @@ eric5.Project.Project.Project.isProjectInterface?4(fn) eric5.Project.Project.Project.isProjectResource?4(fn) eric5.Project.Project.Project.isProjectSource?4(fn) +eric5.Project.Project.Project.isPy2Project?4() +eric5.Project.Project.Project.isPy3Project?4() +eric5.Project.Project.Project.isRubyProject?4() eric5.Project.Project.Project.keynames?7 eric5.Project.Project.Project.lexerAssociationsChanged?7 eric5.Project.Project.Project.moveDirectory?4(olddn, newdn) @@ -4863,6 +4866,7 @@ eric5.PyUnit.UnittestDialog.QtTestResult?1(parent) eric5.PyUnit.UnittestDialog.UnittestDialog.insertProg?4(prog) eric5.PyUnit.UnittestDialog.UnittestDialog.insertTestName?4(testName) +eric5.PyUnit.UnittestDialog.UnittestDialog.keyPressEvent?4(evt) eric5.PyUnit.UnittestDialog.UnittestDialog.on_buttonBox_clicked?4(button) eric5.PyUnit.UnittestDialog.UnittestDialog.on_errorsListWidget_currentTextChanged?4(text) eric5.PyUnit.UnittestDialog.UnittestDialog.on_errorsListWidget_itemDoubleClicked?4(lbitem) @@ -4875,7 +4879,7 @@ eric5.PyUnit.UnittestDialog.UnittestDialog.testFinished?4() eric5.PyUnit.UnittestDialog.UnittestDialog.testStarted?4(test, doc) eric5.PyUnit.UnittestDialog.UnittestDialog.unittestFile?7 -eric5.PyUnit.UnittestDialog.UnittestDialog?1(prog = None, dbs = None, ui = None, parent = None, name = None) +eric5.PyUnit.UnittestDialog.UnittestDialog?1(prog = None, dbs = None, ui = None, fromEric = False, parent = None, name = None) eric5.PyUnit.UnittestDialog.UnittestWindow.eventFilter?4(obj, event) eric5.PyUnit.UnittestDialog.UnittestWindow?1(prog = None, parent = None) eric5.QScintilla.APIsManager.APIs.apiPreparationCancelled?7
--- a/Documentation/Help/source.qhp Sat Dec 17 15:19:45 2011 +0100 +++ b/Documentation/Help/source.qhp Sat Dec 17 15:23:08 2011 +0100 @@ -1199,6 +1199,7 @@ <keyword name="UnittestDialog.__showSource" id="UnittestDialog.__showSource" ref="eric5.PyUnit.UnittestDialog.html#UnittestDialog.__showSource" /> <keyword name="UnittestDialog.insertProg" id="UnittestDialog.insertProg" ref="eric5.PyUnit.UnittestDialog.html#UnittestDialog.insertProg" /> <keyword name="UnittestDialog.insertTestName" id="UnittestDialog.insertTestName" ref="eric5.PyUnit.UnittestDialog.html#UnittestDialog.insertTestName" /> + <keyword name="UnittestDialog.keyPressEvent" id="UnittestDialog.keyPressEvent" ref="eric5.PyUnit.UnittestDialog.html#UnittestDialog.keyPressEvent" /> <keyword name="UnittestDialog.on_buttonBox_clicked" id="UnittestDialog.on_buttonBox_clicked" ref="eric5.PyUnit.UnittestDialog.html#UnittestDialog.on_buttonBox_clicked" /> <keyword name="UnittestDialog.on_errorsListWidget_currentTextChanged" id="UnittestDialog.on_errorsListWidget_currentTextChanged" ref="eric5.PyUnit.UnittestDialog.html#UnittestDialog.on_errorsListWidget_currentTextChanged" /> <keyword name="UnittestDialog.on_errorsListWidget_itemDoubleClicked" id="UnittestDialog.on_errorsListWidget_itemDoubleClicked" ref="eric5.PyUnit.UnittestDialog.html#UnittestDialog.on_errorsListWidget_itemDoubleClicked" /> @@ -4763,6 +4764,9 @@ <keyword name="Project.isProjectInterface" id="Project.isProjectInterface" ref="eric5.Project.Project.html#Project.isProjectInterface" /> <keyword name="Project.isProjectResource" id="Project.isProjectResource" ref="eric5.Project.Project.html#Project.isProjectResource" /> <keyword name="Project.isProjectSource" id="Project.isProjectSource" ref="eric5.Project.Project.html#Project.isProjectSource" /> + <keyword name="Project.isPy2Project" id="Project.isPy2Project" ref="eric5.Project.Project.html#Project.isPy2Project" /> + <keyword name="Project.isPy3Project" id="Project.isPy3Project" ref="eric5.Project.Project.html#Project.isPy3Project" /> + <keyword name="Project.isRubyProject" id="Project.isRubyProject" ref="eric5.Project.Project.html#Project.isRubyProject" /> <keyword name="Project.moveDirectory" id="Project.moveDirectory" ref="eric5.Project.Project.html#Project.moveDirectory" /> <keyword name="Project.newProjectAddFiles" id="Project.newProjectAddFiles" ref="eric5.Project.Project.html#Project.newProjectAddFiles" /> <keyword name="Project.openProject" id="Project.openProject" ref="eric5.Project.Project.html#Project.openProject" />
--- a/Documentation/Source/eric5.Project.Project.html Sat Dec 17 15:19:45 2011 +0100 +++ b/Documentation/Source/eric5.Project.Project.html Sat Dec 17 15:23:08 2011 +0100 @@ -537,6 +537,15 @@ <td><a href="#Project.isProjectSource">isProjectSource</a></td> <td>Public method used to check, if the passed in filename belongs to the project sources.</td> </tr><tr> +<td><a href="#Project.isPy2Project">isPy2Project</a></td> +<td>Public method to check, if this project is a Python2 project.</td> +</tr><tr> +<td><a href="#Project.isPy3Project">isPy3Project</a></td> +<td>Public method to check, if this project is a Python3 project.</td> +</tr><tr> +<td><a href="#Project.isRubyProject">isRubyProject</a></td> +<td>Public method to check, if this project is a Ruby project.</td> +</tr><tr> <td><a href="#Project.moveDirectory">moveDirectory</a></td> <td>Public slot to move a directory.</td> </tr><tr> @@ -1827,6 +1836,36 @@ <dd> flag indicating membership (boolean) </dd> +</dl><a NAME="Project.isPy2Project" ID="Project.isPy2Project"></a> +<h4>Project.isPy2Project</h4> +<b>isPy2Project</b>(<i></i>) +<p> + Public method to check, if this project is a Python2 project. +</p><dl> +<dt>Returns:</dt> +<dd> +flag indicating a Python2 project (boolean) +</dd> +</dl><a NAME="Project.isPy3Project" ID="Project.isPy3Project"></a> +<h4>Project.isPy3Project</h4> +<b>isPy3Project</b>(<i></i>) +<p> + Public method to check, if this project is a Python3 project. +</p><dl> +<dt>Returns:</dt> +<dd> +flag indicating a Python3 project (boolean) +</dd> +</dl><a NAME="Project.isRubyProject" ID="Project.isRubyProject"></a> +<h4>Project.isRubyProject</h4> +<b>isRubyProject</b>(<i></i>) +<p> + Public method to check, if this project is a Ruby project. +</p><dl> +<dt>Returns:</dt> +<dd> +flag indicating a Ruby project (boolean) +</dd> </dl><a NAME="Project.moveDirectory" ID="Project.moveDirectory"></a> <h4>Project.moveDirectory</h4> <b>moveDirectory</b>(<i>olddn, newdn</i>)
--- a/Documentation/Source/eric5.PyUnit.UnittestDialog.html Sat Dec 17 15:19:45 2011 +0100 +++ b/Documentation/Source/eric5.PyUnit.UnittestDialog.html Sat Dec 17 15:23:08 2011 +0100 @@ -193,6 +193,9 @@ <td><a href="#UnittestDialog.insertTestName">insertTestName</a></td> <td>Public slot to insert a test name into the testComboBox object.</td> </tr><tr> +<td><a href="#UnittestDialog.keyPressEvent">keyPressEvent</a></td> +<td>Protected slot to handle key press events.</td> +</tr><tr> <td><a href="#UnittestDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td> <td>Private slot called by a button of the button box clicked.</td> </tr><tr> @@ -233,7 +236,7 @@ </table> <a NAME="UnittestDialog.__init__" ID="UnittestDialog.__init__"></a> <h4>UnittestDialog (Constructor)</h4> -<b>UnittestDialog</b>(<i>prog = None, dbs = None, ui = None, parent = None, name = None</i>) +<b>UnittestDialog</b>(<i>prog = None, dbs = None, ui = None, fromEric = False, parent = None, name = None</i>) <p> Constructor </p><dl> @@ -243,10 +246,14 @@ </dd><dt><i>dbs</i></dt> <dd> reference to the debug server object. It is an indication - whether we were called from within the eric5 IDE + whether we were called from within the eric5 IDE </dd><dt><i>ui</i></dt> <dd> reference to the UI object +</dd><dt><i>fromEric</i></dt> +<dd> +flag indicating an instantiation from within the + eric IDE (boolean) </dd><dt><i>parent</i></dt> <dd> parent widget of this dialog (QWidget) @@ -318,6 +325,16 @@ <dd> name of the test to be inserted (string) </dd> +</dl><a NAME="UnittestDialog.keyPressEvent" ID="UnittestDialog.keyPressEvent"></a> +<h4>UnittestDialog.keyPressEvent</h4> +<b>keyPressEvent</b>(<i>evt</i>) +<p> + Protected slot to handle key press events. +</p><dl> +<dt><i>evt</i></dt> +<dd> +key press event to handle (QKeyEvent) +</dd> </dl><a NAME="UnittestDialog.on_buttonBox_clicked" ID="UnittestDialog.on_buttonBox_clicked"></a> <h4>UnittestDialog.on_buttonBox_clicked</h4> <b>on_buttonBox_clicked</b>(<i>button</i>)