|
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.Project.PropertiesDialog</title> |
|
6 <style> |
|
7 b'body {\n background:white;\n margin: 0em 1em 10em 1em;\n color: black;\n}\n\nh1 { color: white; background: #4FA4FF; }\nh2 { color: white; background: #4FA4FF; }\nh3 { color: white; background: #00557F; }\nh4 { color: white; background: #00557F; }\n \na { color: #AA5500; }\n' |
|
8 </style> |
|
9 </head> |
|
10 <body><a NAME="top" ID="top"></a> |
|
11 <h1>eric5.Project.PropertiesDialog</h1> |
|
12 <p> |
|
13 Module implementing the project properties dialog. |
|
14 </p> |
|
15 <h3>Global Attributes</h3> |
|
16 <table> |
|
17 <tr><td>None</td></tr> |
|
18 </table> |
|
19 <h3>Classes</h3> |
|
20 <table> |
|
21 <tr> |
|
22 <td><a href="#PropertiesDialog">PropertiesDialog</a></td> |
|
23 <td>Class implementing the project properties dialog.</td> |
|
24 </tr> |
|
25 </table> |
|
26 <h3>Functions</h3> |
|
27 <table> |
|
28 <tr><td>None</td></tr> |
|
29 </table> |
|
30 <hr /><hr /> |
|
31 <a NAME="PropertiesDialog" ID="PropertiesDialog"></a> |
|
32 <h2>PropertiesDialog</h2> |
|
33 <p> |
|
34 Class implementing the project properties dialog. |
|
35 </p> |
|
36 <h3>Derived from</h3> |
|
37 QDialog, Ui_PropertiesDialog |
|
38 <h3>Class Attributes</h3> |
|
39 <table> |
|
40 <tr><td>None</td></tr> |
|
41 </table> |
|
42 <h3>Methods</h3> |
|
43 <table> |
|
44 <tr> |
|
45 <td><a href="#PropertiesDialog.__init__">PropertiesDialog</a></td> |
|
46 <td>Constructor</td> |
|
47 </tr><tr> |
|
48 <td><a href="#PropertiesDialog.getPPath">getPPath</a></td> |
|
49 <td>Public method to get the project path.</td> |
|
50 </tr><tr> |
|
51 <td><a href="#PropertiesDialog.getProjectType">getProjectType</a></td> |
|
52 <td>Public method to get the selected project type.</td> |
|
53 </tr><tr> |
|
54 <td><a href="#PropertiesDialog.on_dirButton_clicked">on_dirButton_clicked</a></td> |
|
55 <td>Private slot to display a directory selection dialog.</td> |
|
56 </tr><tr> |
|
57 <td><a href="#PropertiesDialog.on_mainscriptButton_clicked">on_mainscriptButton_clicked</a></td> |
|
58 <td>Private slot to display a file selection dialog.</td> |
|
59 </tr><tr> |
|
60 <td><a href="#PropertiesDialog.on_spellPropertiesButton_clicked">on_spellPropertiesButton_clicked</a></td> |
|
61 <td>Private slot to display the spelling properties dialog.</td> |
|
62 </tr><tr> |
|
63 <td><a href="#PropertiesDialog.on_transPropertiesButton_clicked">on_transPropertiesButton_clicked</a></td> |
|
64 <td>Private slot to display the translations properties dialog.</td> |
|
65 </tr><tr> |
|
66 <td><a href="#PropertiesDialog.on_vcsInfoButton_clicked">on_vcsInfoButton_clicked</a></td> |
|
67 <td>Private slot to display a vcs information dialog.</td> |
|
68 </tr><tr> |
|
69 <td><a href="#PropertiesDialog.storeData">storeData</a></td> |
|
70 <td>Public method to store the entered/modified data.</td> |
|
71 </tr> |
|
72 </table> |
|
73 <a NAME="PropertiesDialog.__init__" ID="PropertiesDialog.__init__"></a> |
|
74 <h4>PropertiesDialog (Constructor)</h4> |
|
75 <b>PropertiesDialog</b>(<i>project, new = True, parent = None, name = None</i>) |
|
76 <p> |
|
77 Constructor |
|
78 </p><dl> |
|
79 <dt><i>project</i></dt> |
|
80 <dd> |
|
81 reference to the project object |
|
82 </dd><dt><i>new</i></dt> |
|
83 <dd> |
|
84 flag indicating the generation of a new project |
|
85 </dd><dt><i>parent</i></dt> |
|
86 <dd> |
|
87 parent widget of this dialog (QWidget) |
|
88 </dd><dt><i>name</i></dt> |
|
89 <dd> |
|
90 name of this dialog (string) |
|
91 </dd> |
|
92 </dl><a NAME="PropertiesDialog.getPPath" ID="PropertiesDialog.getPPath"></a> |
|
93 <h4>PropertiesDialog.getPPath</h4> |
|
94 <b>getPPath</b>(<i></i>) |
|
95 <p> |
|
96 Public method to get the project path. |
|
97 </p><dl> |
|
98 <dt>Returns:</dt> |
|
99 <dd> |
|
100 data of the project directory edit (string) |
|
101 </dd> |
|
102 </dl><a NAME="PropertiesDialog.getProjectType" ID="PropertiesDialog.getProjectType"></a> |
|
103 <h4>PropertiesDialog.getProjectType</h4> |
|
104 <b>getProjectType</b>(<i></i>) |
|
105 <p> |
|
106 Public method to get the selected project type. |
|
107 </p><dl> |
|
108 <dt>Returns:</dt> |
|
109 <dd> |
|
110 selected UI type (string) |
|
111 </dd> |
|
112 </dl><a NAME="PropertiesDialog.on_dirButton_clicked" ID="PropertiesDialog.on_dirButton_clicked"></a> |
|
113 <h4>PropertiesDialog.on_dirButton_clicked</h4> |
|
114 <b>on_dirButton_clicked</b>(<i></i>) |
|
115 <p> |
|
116 Private slot to display a directory selection dialog. |
|
117 </p><a NAME="PropertiesDialog.on_mainscriptButton_clicked" ID="PropertiesDialog.on_mainscriptButton_clicked"></a> |
|
118 <h4>PropertiesDialog.on_mainscriptButton_clicked</h4> |
|
119 <b>on_mainscriptButton_clicked</b>(<i></i>) |
|
120 <p> |
|
121 Private slot to display a file selection dialog. |
|
122 </p><a NAME="PropertiesDialog.on_spellPropertiesButton_clicked" ID="PropertiesDialog.on_spellPropertiesButton_clicked"></a> |
|
123 <h4>PropertiesDialog.on_spellPropertiesButton_clicked</h4> |
|
124 <b>on_spellPropertiesButton_clicked</b>(<i></i>) |
|
125 <p> |
|
126 Private slot to display the spelling properties dialog. |
|
127 </p><a NAME="PropertiesDialog.on_transPropertiesButton_clicked" ID="PropertiesDialog.on_transPropertiesButton_clicked"></a> |
|
128 <h4>PropertiesDialog.on_transPropertiesButton_clicked</h4> |
|
129 <b>on_transPropertiesButton_clicked</b>(<i></i>) |
|
130 <p> |
|
131 Private slot to display the translations properties dialog. |
|
132 </p><a NAME="PropertiesDialog.on_vcsInfoButton_clicked" ID="PropertiesDialog.on_vcsInfoButton_clicked"></a> |
|
133 <h4>PropertiesDialog.on_vcsInfoButton_clicked</h4> |
|
134 <b>on_vcsInfoButton_clicked</b>(<i></i>) |
|
135 <p> |
|
136 Private slot to display a vcs information dialog. |
|
137 </p><a NAME="PropertiesDialog.storeData" ID="PropertiesDialog.storeData"></a> |
|
138 <h4>PropertiesDialog.storeData</h4> |
|
139 <b>storeData</b>(<i></i>) |
|
140 <p> |
|
141 Public method to store the entered/modified data. |
|
142 </p> |
|
143 <div align="right"><a href="#top">Up</a></div> |
|
144 <hr /> |
|
145 </body></html> |