equal
deleted
inserted
replaced
126 // * Hides progress bar |
126 // * Hides progress bar |
127 // * @return None. |
127 // * @return None. |
128 // */ |
128 // */ |
129 // virtual void HideProgressBar() = 0; |
129 // virtual void HideProgressBar() = 0; |
130 // |
130 // |
131 // /** |
131 /** |
132 // * Shows wait dialog with text |
132 * Shows wait dialog with text |
133 // * @param aText A text to be shown at top of the wait bar. |
133 * @param aText A text to be shown at top of the wait bar. |
134 // * @return None. |
134 * @return None. |
135 // */ |
135 */ |
136 // virtual void ShowWaitDialog(const TDesC& aText) = 0; |
136 virtual void ShowWaitDialog(const TDesC& aText) = 0; |
137 // |
137 |
138 // /** |
138 /** |
139 // * Hides wait dialog |
139 * Cancel wait dialog |
140 // * @return None. |
140 * @return None. |
141 // */ |
141 */ |
142 // virtual void HideWaitDialog() = 0; |
142 virtual void CancelWaitDialog() = 0; |
|
143 |
|
144 /** |
|
145 * Processes all pending events to allow wait/progresa dialog to update itself |
|
146 * @return None. |
|
147 */ |
|
148 virtual void ProcessEvents() = 0; |
143 |
149 |
144 /** |
150 /** |
145 * Shows confirmation dialog |
151 * Shows confirmation dialog |
146 * @param aFileName String contaning file name and path |
152 * @param aFileName String contaning file name and path |
147 * @return ETrue if user pressed OK button, otherwise EFalse. |
153 * @return ETrue if user pressed OK button, otherwise EFalse. |