mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 03:01:27 +00:00
2002-11-23 Manuel Guesdon <mguesdon@orange-concept.com>
* GSWExtensions.framework/GSWLongResponsePage.h: o fixed WO* to GSW* git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@15050 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c5edf863de
commit
77df93d5d7
2 changed files with 10 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-11-23 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
* GSWExtensions.framework/GSWLongResponsePage.h:
|
||||
o fixed WO* to GSW*
|
||||
|
||||
2002-11-18 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
I've rewritten AutoValue handling in GSWBrowser,GSWCheckBoxList,
|
||||
GSWRadioButtonList, GSWPopUpButton to make it coherent
|
||||
|
|
|
@ -78,29 +78,29 @@ It can be manually called (for example if the page does not refresh itself.
|
|||
Status value make it call -pageForException:, -pageForResult:, -refreshPageForStatus: or -cancelPageForStatus:
|
||||
Don't override it
|
||||
**/
|
||||
- (WOComponent *)refresh;
|
||||
- (GSWComponent *)refresh;
|
||||
|
||||
|
||||
- (WOComponent *)cancel;
|
||||
- (GSWComponent *)cancel;
|
||||
/* TODO the cancel action sets cancel to yes and calls cancelPageForStatus:. DO NOT OVERRIDE */
|
||||
|
||||
/** Called when an exception occur in the process thread. Replace -pageForResult: call.
|
||||
Default implemnetation raise the exception **/
|
||||
- (WOComponent *)pageForException:(NSException *)exception;
|
||||
- (GSWComponent *)pageForException:(NSException *)exception;
|
||||
|
||||
/** Called when the process thread is done.
|
||||
Default implementation stops automatic refresh and returns self.
|
||||
You can override this to return a newly created result page
|
||||
**/
|
||||
- (WOComponent *)pageForResult:(id) result;
|
||||
- (GSWComponent *)pageForResult:(id) result;
|
||||
|
||||
/** Called on each refresh. Should return self. **/
|
||||
- (WOComponent *)refreshPageForStatus:(id) status;
|
||||
- (GSWComponent *)refreshPageForStatus:(id) status;
|
||||
|
||||
/** Called when the process thread is cancelled. Replace -pageForResult: call.
|
||||
Default implementation stops automatic refresh and returns self.
|
||||
**/
|
||||
- (WOComponent *)cancelPageForStatus:(id) status;
|
||||
- (GSWComponent *)cancelPageForStatus:(id) status;
|
||||
|
||||
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue