eric6/Documentation/Source/eric6.Plugins.VcsPlugins.vcsGit.GitCopyDialog.html

changeset 7273
391d6b7b1eff
parent 6942
2602857055c5
child 7989
a21d673a8f99
equal deleted inserted replaced
7272:1779dc278077 7273:391d6b7b1eff
16 16
17 a { color: #BA6D36; } 17 a { color: #BA6D36; }
18 18
19 </style> 19 </style>
20 </head> 20 </head>
21 <body><a NAME="top" ID="top"></a> 21 <body>
22 <a NAME="top" ID="top"></a>
22 <h1>eric6.Plugins.VcsPlugins.vcsGit.GitCopyDialog</h1> 23 <h1>eric6.Plugins.VcsPlugins.vcsGit.GitCopyDialog</h1>
24
23 <p> 25 <p>
24 Module implementing a dialog to enter the data for a copy or rename operation. 26 Module implementing a dialog to enter the data for a copy or rename operation.
25 </p> 27 </p>
26 <h3>Global Attributes</h3> 28 <h3>Global Attributes</h3>
29
27 <table> 30 <table>
28 <tr><td>None</td></tr> 31 <tr><td>None</td></tr>
29 </table> 32 </table>
30 <h3>Classes</h3> 33 <h3>Classes</h3>
34
31 <table> 35 <table>
36
32 <tr> 37 <tr>
33 <td><a href="#GitCopyDialog">GitCopyDialog</a></td> 38 <td><a href="#GitCopyDialog">GitCopyDialog</a></td>
34 <td>Class implementing a dialog to enter the data for a copy or rename operation.</td> 39 <td>Class implementing a dialog to enter the data for a copy or rename operation.</td>
35 </tr> 40 </tr>
36 </table> 41 </table>
37 <h3>Functions</h3> 42 <h3>Functions</h3>
43
38 <table> 44 <table>
39 <tr><td>None</td></tr> 45 <tr><td>None</td></tr>
40 </table> 46 </table>
41 <hr /><hr /> 47 <hr />
48 <hr />
42 <a NAME="GitCopyDialog" ID="GitCopyDialog"></a> 49 <a NAME="GitCopyDialog" ID="GitCopyDialog"></a>
43 <h2>GitCopyDialog</h2> 50 <h2>GitCopyDialog</h2>
51
44 <p> 52 <p>
45 Class implementing a dialog to enter the data for a copy or rename 53 Class implementing a dialog to enter the data for a copy or rename
46 operation. 54 operation.
47 </p> 55 </p>
48 <h3>Derived from</h3> 56 <h3>Derived from</h3>
49 QDialog, Ui_GitCopyDialog 57 QDialog, Ui_GitCopyDialog
50 <h3>Class Attributes</h3> 58 <h3>Class Attributes</h3>
59
51 <table> 60 <table>
52 <tr><td>None</td></tr> 61 <tr><td>None</td></tr>
53 </table> 62 </table>
54 <h3>Class Methods</h3> 63 <h3>Class Methods</h3>
64
55 <table> 65 <table>
56 <tr><td>None</td></tr> 66 <tr><td>None</td></tr>
57 </table> 67 </table>
58 <h3>Methods</h3> 68 <h3>Methods</h3>
69
59 <table> 70 <table>
71
60 <tr> 72 <tr>
61 <td><a href="#GitCopyDialog.__init__">GitCopyDialog</a></td> 73 <td><a href="#GitCopyDialog.__init__">GitCopyDialog</a></td>
62 <td>Constructor</td> 74 <td>Constructor</td>
63 </tr><tr> 75 </tr>
76 <tr>
64 <td><a href="#GitCopyDialog.getData">getData</a></td> 77 <td><a href="#GitCopyDialog.getData">getData</a></td>
65 <td>Public method to retrieve the copy data.</td> 78 <td>Public method to retrieve the copy data.</td>
66 </tr><tr> 79 </tr>
80 <tr>
67 <td><a href="#GitCopyDialog.on_dirButton_clicked">on_dirButton_clicked</a></td> 81 <td><a href="#GitCopyDialog.on_dirButton_clicked">on_dirButton_clicked</a></td>
68 <td>Private slot to handle the button press for selecting the target via a selection dialog.</td> 82 <td>Private slot to handle the button press for selecting the target via a selection dialog.</td>
69 </tr><tr> 83 </tr>
84 <tr>
70 <td><a href="#GitCopyDialog.on_targetEdit_textChanged">on_targetEdit_textChanged</a></td> 85 <td><a href="#GitCopyDialog.on_targetEdit_textChanged">on_targetEdit_textChanged</a></td>
71 <td>Private slot to handle changes of the target.</td> 86 <td>Private slot to handle changes of the target.</td>
72 </tr> 87 </tr>
73 </table> 88 </table>
74 <h3>Static Methods</h3> 89 <h3>Static Methods</h3>
90
75 <table> 91 <table>
76 <tr><td>None</td></tr> 92 <tr><td>None</td></tr>
77 </table> 93 </table>
94
78 <a NAME="GitCopyDialog.__init__" ID="GitCopyDialog.__init__"></a> 95 <a NAME="GitCopyDialog.__init__" ID="GitCopyDialog.__init__"></a>
79 <h4>GitCopyDialog (Constructor)</h4> 96 <h4>GitCopyDialog (Constructor)</h4>
80 <b>GitCopyDialog</b>(<i>source, parent=None, move=False</i>) 97 <b>GitCopyDialog</b>(<i>source, parent=None, move=False</i>)
98
81 <p> 99 <p>
82 Constructor 100 Constructor
83 </p><dl> 101 </p>
102 <dl>
103
84 <dt><i>source</i></dt> 104 <dt><i>source</i></dt>
85 <dd> 105 <dd>
86 name of the source file/directory (string) 106 name of the source file/directory (string)
87 </dd><dt><i>parent</i></dt> 107 </dd>
108 <dt><i>parent</i></dt>
88 <dd> 109 <dd>
89 parent widget (QWidget) 110 parent widget (QWidget)
90 </dd><dt><i>move</i></dt> 111 </dd>
112 <dt><i>move</i></dt>
91 <dd> 113 <dd>
92 flag indicating a move operation (boolean) 114 flag indicating a move operation (boolean)
93 </dd> 115 </dd>
94 </dl><a NAME="GitCopyDialog.getData" ID="GitCopyDialog.getData"></a> 116 </dl>
117 <a NAME="GitCopyDialog.getData" ID="GitCopyDialog.getData"></a>
95 <h4>GitCopyDialog.getData</h4> 118 <h4>GitCopyDialog.getData</h4>
96 <b>getData</b>(<i></i>) 119 <b>getData</b>(<i></i>)
120
97 <p> 121 <p>
98 Public method to retrieve the copy data. 122 Public method to retrieve the copy data.
99 </p><dl> 123 </p>
124 <dl>
100 <dt>Returns:</dt> 125 <dt>Returns:</dt>
101 <dd> 126 <dd>
102 the target name (string) and a flag indicating 127 the target name (string) and a flag indicating
103 the operation should be enforced (boolean) 128 the operation should be enforced (boolean)
104 </dd> 129 </dd>
105 </dl><a NAME="GitCopyDialog.on_dirButton_clicked" ID="GitCopyDialog.on_dirButton_clicked"></a> 130 </dl>
131 <a NAME="GitCopyDialog.on_dirButton_clicked" ID="GitCopyDialog.on_dirButton_clicked"></a>
106 <h4>GitCopyDialog.on_dirButton_clicked</h4> 132 <h4>GitCopyDialog.on_dirButton_clicked</h4>
107 <b>on_dirButton_clicked</b>(<i></i>) 133 <b>on_dirButton_clicked</b>(<i></i>)
134
108 <p> 135 <p>
109 Private slot to handle the button press for selecting the target via a 136 Private slot to handle the button press for selecting the target via a
110 selection dialog. 137 selection dialog.
111 </p><a NAME="GitCopyDialog.on_targetEdit_textChanged" ID="GitCopyDialog.on_targetEdit_textChanged"></a> 138 </p>
139 <a NAME="GitCopyDialog.on_targetEdit_textChanged" ID="GitCopyDialog.on_targetEdit_textChanged"></a>
112 <h4>GitCopyDialog.on_targetEdit_textChanged</h4> 140 <h4>GitCopyDialog.on_targetEdit_textChanged</h4>
113 <b>on_targetEdit_textChanged</b>(<i>txt</i>) 141 <b>on_targetEdit_textChanged</b>(<i>txt</i>)
142
114 <p> 143 <p>
115 Private slot to handle changes of the target. 144 Private slot to handle changes of the target.
116 </p><dl> 145 </p>
146 <dl>
147
117 <dt><i>txt</i></dt> 148 <dt><i>txt</i></dt>
118 <dd> 149 <dd>
119 contents of the target edit (string) 150 contents of the target edit (string)
120 </dd> 151 </dd>
121 </dl> 152 </dl>

eric ide

mercurial