|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' |
|
3 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'> |
|
4 <html><head> |
|
5 <title>eric5.Plugins.VcsPlugins.vcsMercurial.RebaseExtension.ProjectHelper</title> |
|
6 <style> |
|
7 body { |
|
8 background: #EDECE6; |
|
9 margin: 0em 1em 10em 1em; |
|
10 color: black; |
|
11 } |
|
12 |
|
13 h1 { color: white; background: #85774A; } |
|
14 h2 { color: white; background: #85774A; } |
|
15 h3 { color: white; background: #9D936E; } |
|
16 h4 { color: white; background: #9D936E; } |
|
17 |
|
18 a { color: #BA6D36; } |
|
19 |
|
20 </style> |
|
21 </head> |
|
22 <body><a NAME="top" ID="top"></a> |
|
23 <h1>eric5.Plugins.VcsPlugins.vcsMercurial.RebaseExtension.ProjectHelper</h1> |
|
24 <p> |
|
25 Module implementing the rebase extension project helper. |
|
26 </p> |
|
27 <h3>Global Attributes</h3> |
|
28 <table> |
|
29 <tr><td>None</td></tr> |
|
30 </table> |
|
31 <h3>Classes</h3> |
|
32 <table> |
|
33 <tr> |
|
34 <td><a href="#RebaseProjectHelper">RebaseProjectHelper</a></td> |
|
35 <td>Class implementing the rebase extension project helper.</td> |
|
36 </tr> |
|
37 </table> |
|
38 <h3>Functions</h3> |
|
39 <table> |
|
40 <tr><td>None</td></tr> |
|
41 </table> |
|
42 <hr /><hr /> |
|
43 <a NAME="RebaseProjectHelper" ID="RebaseProjectHelper"></a> |
|
44 <h2>RebaseProjectHelper</h2> |
|
45 <p> |
|
46 Class implementing the rebase extension project helper. |
|
47 </p> |
|
48 <h3>Derived from</h3> |
|
49 HgExtensionProjectHelper |
|
50 <h3>Class Attributes</h3> |
|
51 <table> |
|
52 <tr><td>None</td></tr> |
|
53 </table> |
|
54 <h3>Methods</h3> |
|
55 <table> |
|
56 <tr> |
|
57 <td><a href="#RebaseProjectHelper.__init__">RebaseProjectHelper</a></td> |
|
58 <td>Constructor</td> |
|
59 </tr><tr> |
|
60 <td><a href="#RebaseProjectHelper.__hgRebase">__hgRebase</a></td> |
|
61 <td>Private slot used to rebase changesets to another branch.</td> |
|
62 </tr><tr> |
|
63 <td><a href="#RebaseProjectHelper.__hgRebaseAbort">__hgRebaseAbort</a></td> |
|
64 <td>Private slot used to abort the last rebase session.</td> |
|
65 </tr><tr> |
|
66 <td><a href="#RebaseProjectHelper.__hgRebaseContinue">__hgRebaseContinue</a></td> |
|
67 <td>Private slot used to continue the last rebase session after repair.</td> |
|
68 </tr><tr> |
|
69 <td><a href="#RebaseProjectHelper.initActions">initActions</a></td> |
|
70 <td>Public method to generate the action objects.</td> |
|
71 </tr><tr> |
|
72 <td><a href="#RebaseProjectHelper.initMenu">initMenu</a></td> |
|
73 <td>Public method to generate the extension menu.</td> |
|
74 </tr><tr> |
|
75 <td><a href="#RebaseProjectHelper.menuTitle">menuTitle</a></td> |
|
76 <td>Public method to get the menu title.</td> |
|
77 </tr> |
|
78 </table> |
|
79 <a NAME="RebaseProjectHelper.__init__" ID="RebaseProjectHelper.__init__"></a> |
|
80 <h4>RebaseProjectHelper (Constructor)</h4> |
|
81 <b>RebaseProjectHelper</b>(<i></i>) |
|
82 <p> |
|
83 Constructor |
|
84 </p><a NAME="RebaseProjectHelper.__hgRebase" ID="RebaseProjectHelper.__hgRebase"></a> |
|
85 <h4>RebaseProjectHelper.__hgRebase</h4> |
|
86 <b>__hgRebase</b>(<i></i>) |
|
87 <p> |
|
88 Private slot used to rebase changesets to another branch. |
|
89 </p><a NAME="RebaseProjectHelper.__hgRebaseAbort" ID="RebaseProjectHelper.__hgRebaseAbort"></a> |
|
90 <h4>RebaseProjectHelper.__hgRebaseAbort</h4> |
|
91 <b>__hgRebaseAbort</b>(<i></i>) |
|
92 <p> |
|
93 Private slot used to abort the last rebase session. |
|
94 </p><a NAME="RebaseProjectHelper.__hgRebaseContinue" ID="RebaseProjectHelper.__hgRebaseContinue"></a> |
|
95 <h4>RebaseProjectHelper.__hgRebaseContinue</h4> |
|
96 <b>__hgRebaseContinue</b>(<i></i>) |
|
97 <p> |
|
98 Private slot used to continue the last rebase session after repair. |
|
99 </p><a NAME="RebaseProjectHelper.initActions" ID="RebaseProjectHelper.initActions"></a> |
|
100 <h4>RebaseProjectHelper.initActions</h4> |
|
101 <b>initActions</b>(<i></i>) |
|
102 <p> |
|
103 Public method to generate the action objects. |
|
104 </p><a NAME="RebaseProjectHelper.initMenu" ID="RebaseProjectHelper.initMenu"></a> |
|
105 <h4>RebaseProjectHelper.initMenu</h4> |
|
106 <b>initMenu</b>(<i>mainMenu</i>) |
|
107 <p> |
|
108 Public method to generate the extension menu. |
|
109 </p><dl> |
|
110 <dt><i>mainMenu</i></dt> |
|
111 <dd> |
|
112 reference to the main menu (QMenu) |
|
113 </dd> |
|
114 </dl><dl> |
|
115 <dt>Returns:</dt> |
|
116 <dd> |
|
117 populated menu (QMenu) |
|
118 </dd> |
|
119 </dl><a NAME="RebaseProjectHelper.menuTitle" ID="RebaseProjectHelper.menuTitle"></a> |
|
120 <h4>RebaseProjectHelper.menuTitle</h4> |
|
121 <b>menuTitle</b>(<i></i>) |
|
122 <p> |
|
123 Public method to get the menu title. |
|
124 </p><dl> |
|
125 <dt>Returns:</dt> |
|
126 <dd> |
|
127 title of the menu (string) |
|
128 </dd> |
|
129 </dl> |
|
130 <div align="right"><a href="#top">Up</a></div> |
|
131 <hr /> |
|
132 </body></html> |