20 </style> |
20 </style> |
21 </head> |
21 </head> |
22 <body><a NAME="top" ID="top"></a> |
22 <body><a NAME="top" ID="top"></a> |
23 <h1>eric5.Plugins.VcsPlugins.vcsPySvn.SvnLogDialog</h1> |
23 <h1>eric5.Plugins.VcsPlugins.vcsPySvn.SvnLogDialog</h1> |
24 <p> |
24 <p> |
25 Module implementing a dialog to show the output of the svn log command process. |
25 Module implementing a dialog to show the output of the svn log command process. |
26 </p> |
26 </p> |
27 <h3>Global Attributes</h3> |
27 <h3>Global Attributes</h3> |
28 <table> |
28 <table> |
29 <tr><td>None</td></tr> |
29 <tr><td>None</td></tr> |
30 </table> |
30 </table> |
31 <h3>Classes</h3> |
31 <h3>Classes</h3> |
32 <table> |
32 <table> |
33 <tr> |
33 <tr> |
34 <td><a href="#SvnLogDialog">SvnLogDialog</a></td> |
34 <td><a href="#SvnLogDialog">SvnLogDialog</a></td> |
35 <td>Class implementing a dialog to show the output of the svn log command.</td> |
35 <td>Class implementing a dialog to show the output of the svn log command.</td> |
36 </tr> |
36 </tr> |
37 </table> |
37 </table> |
38 <h3>Functions</h3> |
38 <h3>Functions</h3> |
39 <table> |
39 <table> |
40 <tr><td>None</td></tr> |
40 <tr><td>None</td></tr> |
41 </table> |
41 </table> |
42 <hr /><hr /> |
42 <hr /><hr /> |
43 <a NAME="SvnLogDialog" ID="SvnLogDialog"></a> |
43 <a NAME="SvnLogDialog" ID="SvnLogDialog"></a> |
44 <h2>SvnLogDialog</h2> |
44 <h2>SvnLogDialog</h2> |
45 <p> |
45 <p> |
46 Class implementing a dialog to show the output of the svn log command. |
46 Class implementing a dialog to show the output of the svn log command. |
47 </p><p> |
47 </p><p> |
48 The dialog is nonmodal. Clicking a link in the upper text pane shows |
48 The dialog is nonmodal. Clicking a link in the upper text pane shows |
49 a diff of the versions. |
49 a diff of the versions. |
50 </p> |
50 </p> |
51 <h3>Derived from</h3> |
51 <h3>Derived from</h3> |
52 QWidget, SvnDialogMixin, Ui_SvnLogDialog |
52 QWidget, SvnDialogMixin, Ui_SvnLogDialog |
53 <h3>Class Attributes</h3> |
53 <h3>Class Attributes</h3> |
54 <table> |
54 <table> |
56 </table> |
56 </table> |
57 <h3>Methods</h3> |
57 <h3>Methods</h3> |
58 <table> |
58 <table> |
59 <tr> |
59 <tr> |
60 <td><a href="#SvnLogDialog.__init__">SvnLogDialog</a></td> |
60 <td><a href="#SvnLogDialog.__init__">SvnLogDialog</a></td> |
61 <td>Constructor</td> |
61 <td>Constructor</td> |
62 </tr><tr> |
62 </tr><tr> |
63 <td><a href="#SvnLogDialog.__finish">__finish</a></td> |
63 <td><a href="#SvnLogDialog.__finish">__finish</a></td> |
64 <td>Private slot called when the user pressed the button.</td> |
64 <td>Private slot called when the user pressed the button.</td> |
65 </tr><tr> |
65 </tr><tr> |
66 <td><a href="#SvnLogDialog.__showError">__showError</a></td> |
66 <td><a href="#SvnLogDialog.__showError">__showError</a></td> |
67 <td>Private slot to show an error message.</td> |
67 <td>Private slot to show an error message.</td> |
68 </tr><tr> |
68 </tr><tr> |
69 <td><a href="#SvnLogDialog.__sourceChanged">__sourceChanged</a></td> |
69 <td><a href="#SvnLogDialog.__sourceChanged">__sourceChanged</a></td> |
70 <td>Private slot to handle the sourceChanged signal of the contents pane.</td> |
70 <td>Private slot to handle the sourceChanged signal of the contents pane.</td> |
71 </tr><tr> |
71 </tr><tr> |
72 <td><a href="#SvnLogDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td> |
72 <td><a href="#SvnLogDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td> |
73 <td>Private slot called by a button of the button box clicked.</td> |
73 <td>Private slot called by a button of the button box clicked.</td> |
74 </tr><tr> |
74 </tr><tr> |
75 <td><a href="#SvnLogDialog.start">start</a></td> |
75 <td><a href="#SvnLogDialog.start">start</a></td> |
76 <td>Public slot to start the svn log command.</td> |
76 <td>Public slot to start the svn log command.</td> |
77 </tr> |
77 </tr> |
78 </table> |
78 </table> |
79 <a NAME="SvnLogDialog.__init__" ID="SvnLogDialog.__init__"></a> |
79 <a NAME="SvnLogDialog.__init__" ID="SvnLogDialog.__init__"></a> |
80 <h4>SvnLogDialog (Constructor)</h4> |
80 <h4>SvnLogDialog (Constructor)</h4> |
81 <b>SvnLogDialog</b>(<i>vcs, parent = None</i>) |
81 <b>SvnLogDialog</b>(<i>vcs, parent = None</i>) |
82 <p> |
82 <p> |
83 Constructor |
83 Constructor |
84 </p><dl> |
84 </p><dl> |
85 <dt><i>vcs</i></dt> |
85 <dt><i>vcs</i></dt> |
86 <dd> |
86 <dd> |
87 reference to the vcs object |
87 reference to the vcs object |
88 </dd><dt><i>parent</i></dt> |
88 </dd><dt><i>parent</i></dt> |
89 <dd> |
89 <dd> |
90 parent widget (QWidget) |
90 parent widget (QWidget) |
91 </dd> |
91 </dd> |
92 </dl><a NAME="SvnLogDialog.__finish" ID="SvnLogDialog.__finish"></a> |
92 </dl><a NAME="SvnLogDialog.__finish" ID="SvnLogDialog.__finish"></a> |
93 <h4>SvnLogDialog.__finish</h4> |
93 <h4>SvnLogDialog.__finish</h4> |
94 <b>__finish</b>(<i></i>) |
94 <b>__finish</b>(<i></i>) |
95 <p> |
95 <p> |
96 Private slot called when the user pressed the button. |
96 Private slot called when the user pressed the button. |
97 </p><a NAME="SvnLogDialog.__showError" ID="SvnLogDialog.__showError"></a> |
97 </p><a NAME="SvnLogDialog.__showError" ID="SvnLogDialog.__showError"></a> |
98 <h4>SvnLogDialog.__showError</h4> |
98 <h4>SvnLogDialog.__showError</h4> |
99 <b>__showError</b>(<i>msg</i>) |
99 <b>__showError</b>(<i>msg</i>) |
100 <p> |
100 <p> |
101 Private slot to show an error message. |
101 Private slot to show an error message. |
102 </p><dl> |
102 </p><dl> |
103 <dt><i>msg</i></dt> |
103 <dt><i>msg</i></dt> |
104 <dd> |
104 <dd> |
105 error message to show (string or QString) |
105 error message to show (string or QString) |
106 </dd> |
106 </dd> |
107 </dl><a NAME="SvnLogDialog.__sourceChanged" ID="SvnLogDialog.__sourceChanged"></a> |
107 </dl><a NAME="SvnLogDialog.__sourceChanged" ID="SvnLogDialog.__sourceChanged"></a> |
108 <h4>SvnLogDialog.__sourceChanged</h4> |
108 <h4>SvnLogDialog.__sourceChanged</h4> |
109 <b>__sourceChanged</b>(<i>url</i>) |
109 <b>__sourceChanged</b>(<i>url</i>) |
110 <p> |
110 <p> |
111 Private slot to handle the sourceChanged signal of the contents pane. |
111 Private slot to handle the sourceChanged signal of the contents pane. |
112 </p><dl> |
112 </p><dl> |
113 <dt><i>url</i></dt> |
113 <dt><i>url</i></dt> |
114 <dd> |
114 <dd> |
115 the url that was clicked (QUrl) |
115 the url that was clicked (QUrl) |
116 </dd> |
116 </dd> |
117 </dl><a NAME="SvnLogDialog.on_buttonBox_clicked" ID="SvnLogDialog.on_buttonBox_clicked"></a> |
117 </dl><a NAME="SvnLogDialog.on_buttonBox_clicked" ID="SvnLogDialog.on_buttonBox_clicked"></a> |
118 <h4>SvnLogDialog.on_buttonBox_clicked</h4> |
118 <h4>SvnLogDialog.on_buttonBox_clicked</h4> |
119 <b>on_buttonBox_clicked</b>(<i>button</i>) |
119 <b>on_buttonBox_clicked</b>(<i>button</i>) |
120 <p> |
120 <p> |
121 Private slot called by a button of the button box clicked. |
121 Private slot called by a button of the button box clicked. |
122 </p><dl> |
122 </p><dl> |
123 <dt><i>button</i></dt> |
123 <dt><i>button</i></dt> |
124 <dd> |
124 <dd> |
125 button that was clicked (QAbstractButton) |
125 button that was clicked (QAbstractButton) |
126 </dd> |
126 </dd> |
127 </dl><a NAME="SvnLogDialog.start" ID="SvnLogDialog.start"></a> |
127 </dl><a NAME="SvnLogDialog.start" ID="SvnLogDialog.start"></a> |
128 <h4>SvnLogDialog.start</h4> |
128 <h4>SvnLogDialog.start</h4> |
129 <b>start</b>(<i>fn, noEntries = 0</i>) |
129 <b>start</b>(<i>fn, noEntries = 0</i>) |
130 <p> |
130 <p> |
131 Public slot to start the svn log command. |
131 Public slot to start the svn log command. |
132 </p><dl> |
132 </p><dl> |
133 <dt><i>fn</i></dt> |
133 <dt><i>fn</i></dt> |
134 <dd> |
134 <dd> |
135 filename to show the log for (string) |
135 filename to show the log for (string) |
136 </dd><dt><i>noEntries</i></dt> |
136 </dd><dt><i>noEntries</i></dt> |
137 <dd> |
137 <dd> |
138 number of entries to show (integer) |
138 number of entries to show (integer) |
139 </dd> |
139 </dd> |
140 </dl> |
140 </dl> |
141 <div align="right"><a href="#top">Up</a></div> |
141 <div align="right"><a href="#top">Up</a></div> |
142 <hr /> |
142 <hr /> |
143 </body></html> |
143 </body></html> |