eric6/Documentation/Source/eric6.Plugins.VcsPlugins.vcsMercurial.HgStatusMonitorThread.html

changeset 6942
2602857055c5
parent 6529
1c2968f124b7
child 7273
391d6b7b1eff
equal deleted inserted replaced
6941:f99d60d6b59b 6942:2602857055c5
1 <!DOCTYPE html>
2 <html><head>
3 <title>eric6.Plugins.VcsPlugins.vcsMercurial.HgStatusMonitorThread</title>
4 <meta charset="UTF-8">
5 <style>
6 body {
7 background: #EDECE6;
8 margin: 0em 1em 10em 1em;
9 color: black;
10 }
11
12 h1 { color: white; background: #85774A; }
13 h2 { color: white; background: #85774A; }
14 h3 { color: white; background: #9D936E; }
15 h4 { color: white; background: #9D936E; }
16
17 a { color: #BA6D36; }
18
19 </style>
20 </head>
21 <body><a NAME="top" ID="top"></a>
22 <h1>eric6.Plugins.VcsPlugins.vcsMercurial.HgStatusMonitorThread</h1>
23 <p>
24 Module implementing the VCS status monitor thread class for Mercurial.
25 </p>
26 <h3>Global Attributes</h3>
27 <table>
28 <tr><td>None</td></tr>
29 </table>
30 <h3>Classes</h3>
31 <table>
32 <tr>
33 <td><a href="#HgStatusMonitorThread">HgStatusMonitorThread</a></td>
34 <td>Class implementing the VCS status monitor thread class for Mercurial.</td>
35 </tr>
36 </table>
37 <h3>Functions</h3>
38 <table>
39 <tr><td>None</td></tr>
40 </table>
41 <hr /><hr />
42 <a NAME="HgStatusMonitorThread" ID="HgStatusMonitorThread"></a>
43 <h2>HgStatusMonitorThread</h2>
44 <p>
45 Class implementing the VCS status monitor thread class for Mercurial.
46 </p>
47 <h3>Derived from</h3>
48 VcsStatusMonitorThread
49 <h3>Class Attributes</h3>
50 <table>
51 <tr><td>None</td></tr>
52 </table>
53 <h3>Class Methods</h3>
54 <table>
55 <tr><td>None</td></tr>
56 </table>
57 <h3>Methods</h3>
58 <table>
59 <tr>
60 <td><a href="#HgStatusMonitorThread.__init__">HgStatusMonitorThread</a></td>
61 <td>Constructor</td>
62 </tr><tr>
63 <td><a href="#HgStatusMonitorThread.__initClient">__initClient</a></td>
64 <td>Private method to initialize the Mercurial client.</td>
65 </tr><tr>
66 <td><a href="#HgStatusMonitorThread._getInfo">_getInfo</a></td>
67 <td>Protected method implementing the real info action.</td>
68 </tr><tr>
69 <td><a href="#HgStatusMonitorThread._performMonitor">_performMonitor</a></td>
70 <td>Protected method implementing the monitoring action.</td>
71 </tr><tr>
72 <td><a href="#HgStatusMonitorThread._shutdown">_shutdown</a></td>
73 <td>Protected method performing shutdown actions.</td>
74 </tr>
75 </table>
76 <h3>Static Methods</h3>
77 <table>
78 <tr><td>None</td></tr>
79 </table>
80 <a NAME="HgStatusMonitorThread.__init__" ID="HgStatusMonitorThread.__init__"></a>
81 <h4>HgStatusMonitorThread (Constructor)</h4>
82 <b>HgStatusMonitorThread</b>(<i>interval, project, vcs, parent=None</i>)
83 <p>
84 Constructor
85 </p><dl>
86 <dt><i>interval</i></dt>
87 <dd>
88 new interval in seconds (integer)
89 </dd><dt><i>project</i></dt>
90 <dd>
91 reference to the project object (Project)
92 </dd><dt><i>vcs</i></dt>
93 <dd>
94 reference to the version control object
95 </dd><dt><i>parent</i></dt>
96 <dd>
97 reference to the parent object (QObject)
98 </dd>
99 </dl><a NAME="HgStatusMonitorThread.__initClient" ID="HgStatusMonitorThread.__initClient"></a>
100 <h4>HgStatusMonitorThread.__initClient</h4>
101 <b>__initClient</b>(<i></i>)
102 <p>
103 Private method to initialize the Mercurial client.
104 </p><a NAME="HgStatusMonitorThread._getInfo" ID="HgStatusMonitorThread._getInfo"></a>
105 <h4>HgStatusMonitorThread._getInfo</h4>
106 <b>_getInfo</b>(<i></i>)
107 <p>
108 Protected method implementing the real info action.
109 </p><p>
110 This method should be overridden and create a short info message to be
111 shown in the main window status bar right next to the status indicator.
112 </p><dl>
113 <dt>Returns:</dt>
114 <dd>
115 short info message
116 </dd>
117 </dl><dl>
118 <dt>Return Type:</dt>
119 <dd>
120 str
121 </dd>
122 </dl><a NAME="HgStatusMonitorThread._performMonitor" ID="HgStatusMonitorThread._performMonitor"></a>
123 <h4>HgStatusMonitorThread._performMonitor</h4>
124 <b>_performMonitor</b>(<i></i>)
125 <p>
126 Protected method implementing the monitoring action.
127 </p><p>
128 This method populates the statusList member variable
129 with a list of strings giving the status in the first column and the
130 path relative to the project directory starting with the third column.
131 The allowed status flags are:
132 <ul>
133 <li>"A" path was added but not yet comitted</li>
134 <li>"M" path has local changes</li>
135 <li>"O" path was removed</li>
136 <li>"R" path was deleted and then re-added</li>
137 <li>"U" path needs an update</li>
138 <li>"Z" path contains a conflict</li>
139 <li>" " path is back at normal</li>
140 </ul>
141 </p><dl>
142 <dt>Returns:</dt>
143 <dd>
144 tuple of flag indicating successful operation (boolean) and
145 a status message in case of non successful operation (string)
146 </dd>
147 </dl><a NAME="HgStatusMonitorThread._shutdown" ID="HgStatusMonitorThread._shutdown"></a>
148 <h4>HgStatusMonitorThread._shutdown</h4>
149 <b>_shutdown</b>(<i></i>)
150 <p>
151 Protected method performing shutdown actions.
152 </p>
153 <div align="right"><a href="#top">Up</a></div>
154 <hr />
155 </body></html>

eric ide

mercurial