eric6/Documentation/Source/eric6.Debugger.WatchPointModel.html

changeset 8049
af58c1d47e5e
parent 7989
a21d673a8f99
child 8152
0c740fcffd34
--- a/eric6/Documentation/Source/eric6.Debugger.WatchPointModel.html	Mon Feb 01 16:04:34 2021 +0100
+++ b/eric6/Documentation/Source/eric6.Debugger.WatchPointModel.html	Mon Feb 01 16:06:23 2021 +0100
@@ -86,6 +86,10 @@
 <td>Public method to add a new watch expression to the list.</td>
 </tr>
 <tr>
+<td><a href="#WatchPointModel.addWatchPoints">addWatchPoints</a></td>
+<td>Public method to add multiple watch expressions to the list.</td>
+</tr>
+<tr>
 <td><a href="#WatchPointModel.columnCount">columnCount</a></td>
 <td>Public method to get the current column count.</td>
 </tr>
@@ -110,6 +114,10 @@
 <td>Public method to get item flags.</td>
 </tr>
 <tr>
+<td><a href="#WatchPointModel.getAllWatchpoints">getAllWatchpoints</a></td>
+<td>Public method to get the list of watchpoints.</td>
+</tr>
+<tr>
 <td><a href="#WatchPointModel.getWatchPointByIndex">getWatchPointByIndex</a></td>
 <td>Public method to get the values of a watch expression given by index.</td>
 </tr>
@@ -175,19 +183,33 @@
 </p>
 <dl>
 
-<dt><i>cond</i></dt>
+<dt><i>cond</i> (str)</dt>
 <dd>
-expression of the watch expression (string)
+expression of the watch expression
 </dd>
-<dt><i>special</i></dt>
+<dt><i>special</i> (str)</dt>
 <dd>
-special condition of the watch expression (string)
+special condition of the watch expression
 </dd>
-<dt><i>properties</i></dt>
+<dt><i>properties</i> (tuple of (bool, bool, int))</dt>
 <dd>
 properties of the watch expression
-            (tuple of temporary flag (bool), enabled flag (bool),
-            ignore count (integer))
+            (tuple of temporary flag, enabled flag, ignore count)
+</dd>
+</dl>
+<a NAME="WatchPointModel.addWatchPoints" ID="WatchPointModel.addWatchPoints"></a>
+<h4>WatchPointModel.addWatchPoints</h4>
+<b>addWatchPoints</b>(<i>watchpoints</i>)
+
+<p>
+        Public method to add multiple watch expressions to the list.
+</p>
+<dl>
+
+<dt><i>watchpoints</i> (list of (str, str, bool, bool, int))</dt>
+<dd>
+list of watch expressions with expression, special
+            condition, temporary flag, enabled flag and ignore count each
 </dd>
 </dl>
 <a NAME="WatchPointModel.columnCount" ID="WatchPointModel.columnCount"></a>
@@ -290,6 +312,25 @@
 item flags for the given index (Qt.ItemFlags)
 </dd>
 </dl>
+<a NAME="WatchPointModel.getAllWatchpoints" ID="WatchPointModel.getAllWatchpoints"></a>
+<h4>WatchPointModel.getAllWatchpoints</h4>
+<b>getAllWatchpoints</b>(<i></i>)
+
+<p>
+        Public method to get the list of watchpoints.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of watchpoints
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of list of [str, str, bool, bool, int]
+</dd>
+</dl>
 <a NAME="WatchPointModel.getWatchPointByIndex" ID="WatchPointModel.getWatchPointByIndex"></a>
 <h4>WatchPointModel.getWatchPointByIndex</h4>
 <b>getWatchPointByIndex</b>(<i>index</i>)
@@ -308,8 +349,13 @@
 <dt>Return:</dt>
 <dd>
 watch expression (list of six values (expression,
-            special condition, temporary flag, enabled flag, ignore count,
-            index))
+            special condition, temporary flag, enabled flag, ignore count))
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+tuple of (str, str, bool, bool, int)
 </dd>
 </dl>
 <a NAME="WatchPointModel.getWatchPointIndex" ID="WatchPointModel.getWatchPointIndex"></a>

eric ide

mercurial