SVN__WizardPane.st
author convert-repo
Tue, 09 Aug 2016 03:35:30 +0000
changeset 1178 3a6dad9479fd
parent 830 06bba14aec4f
permissions -rw-r--r--
update tags
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
766
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
     1
"
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
     2
 Copyright (c) 2007-2010 Jan Vrany
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
     3
 Copyright (c) 2009-2010 eXept Software AG
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
     4
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
     5
 Permission is hereby granted, free of charge, to any person
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
     6
 obtaining a copy of this software and associated documentation
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
     7
 files (the 'Software'), to deal in the Software without
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
     8
 restriction, including without limitation the rights to use,
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
     9
 copy, modify, merge, publish, distribute, sublicense, and/or sell
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    10
 copies of the Software, and to permit persons to whom the
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    11
 Software is furnished to do so, subject to the following
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    12
 conditions:
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    13
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    14
 The above copyright notice and this permission notice shall be
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    15
 included in all copies or substantial portions of the Software.
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    16
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    17
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    18
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    19
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    20
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    21
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    22
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    23
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    24
 OTHER DEALINGS IN THE SOFTWARE.
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    25
"
419
32f9835d9db8 *** empty log message ***
fm
parents: 251
diff changeset
    26
"{ Package: 'stx:libsvn' }"
251
47616beb4083 initial checkin
fm
parents:
diff changeset
    27
47616beb4083 initial checkin
fm
parents:
diff changeset
    28
"{ NameSpace: SVN }"
47616beb4083 initial checkin
fm
parents:
diff changeset
    29
47616beb4083 initial checkin
fm
parents:
diff changeset
    30
ApplicationModel subclass:#WizardPane
47616beb4083 initial checkin
fm
parents:
diff changeset
    31
	instanceVariableNames:'prev next'
47616beb4083 initial checkin
fm
parents:
diff changeset
    32
	classVariableNames:''
47616beb4083 initial checkin
fm
parents:
diff changeset
    33
	poolDictionaries:''
47616beb4083 initial checkin
fm
parents:
diff changeset
    34
	category:'SVN-UI-Dialogs'
47616beb4083 initial checkin
fm
parents:
diff changeset
    35
!
47616beb4083 initial checkin
fm
parents:
diff changeset
    36
766
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    37
!WizardPane class methodsFor:'documentation'!
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    38
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    39
copyright
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    40
"
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    41
 Copyright (c) 2007-2010 Jan Vrany
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    42
 Copyright (c) 2009-2010 eXept Software AG
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    43
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    44
 Permission is hereby granted, free of charge, to any person
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    45
 obtaining a copy of this software and associated documentation
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    46
 files (the 'Software'), to deal in the Software without
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    47
 restriction, including without limitation the rights to use,
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    48
 copy, modify, merge, publish, distribute, sublicense, and/or sell
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    49
 copies of the Software, and to permit persons to whom the
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    50
 Software is furnished to do so, subject to the following
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    51
 conditions:
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    52
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    53
 The above copyright notice and this permission notice shall be
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    54
 included in all copies or substantial portions of the Software.
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    55
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    56
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    57
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    58
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    59
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    60
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    61
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    62
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    63
 OTHER DEALINGS IN THE SOFTWARE.
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    64
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    65
"
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    66
! !
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    67
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    68
!WizardPane class methodsFor:'others'!
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    69
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    70
version_CVS
830
06bba14aec4f checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 766
diff changeset
    71
    ^ '$Header$'
766
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    72
! !
251
47616beb4083 initial checkin
fm
parents:
diff changeset
    73
47616beb4083 initial checkin
fm
parents:
diff changeset
    74
!WizardPane methodsFor:'accessing'!
47616beb4083 initial checkin
fm
parents:
diff changeset
    75
766
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    76
acceptEnabled:aBoolean 
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
    77
    ^ self wizard acceptEnabled:aBoolean
251
47616beb4083 initial checkin
fm
parents:
diff changeset
    78
47616beb4083 initial checkin
fm
parents:
diff changeset
    79
    "Created: / 24-03-2009 / 19:55:38 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
    80
!
47616beb4083 initial checkin
fm
parents:
diff changeset
    81
47616beb4083 initial checkin
fm
parents:
diff changeset
    82
goNextEnabled: aBoolean
47616beb4083 initial checkin
fm
parents:
diff changeset
    83
47616beb4083 initial checkin
fm
parents:
diff changeset
    84
    ^self wizard goNextEnabled: aBoolean
47616beb4083 initial checkin
fm
parents:
diff changeset
    85
47616beb4083 initial checkin
fm
parents:
diff changeset
    86
    "Created: / 24-03-2009 / 19:55:19 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
    87
!
47616beb4083 initial checkin
fm
parents:
diff changeset
    88
47616beb4083 initial checkin
fm
parents:
diff changeset
    89
goPrevEnabled: aBoolean
47616beb4083 initial checkin
fm
parents:
diff changeset
    90
47616beb4083 initial checkin
fm
parents:
diff changeset
    91
    ^self wizard goPrevEnabled: aBoolean
47616beb4083 initial checkin
fm
parents:
diff changeset
    92
47616beb4083 initial checkin
fm
parents:
diff changeset
    93
    "Created: / 24-03-2009 / 19:55:28 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
    94
!
47616beb4083 initial checkin
fm
parents:
diff changeset
    95
47616beb4083 initial checkin
fm
parents:
diff changeset
    96
next
47616beb4083 initial checkin
fm
parents:
diff changeset
    97
    next ifNil:[ next := self createNext. next prev: self.].
47616beb4083 initial checkin
fm
parents:
diff changeset
    98
    ^ next
47616beb4083 initial checkin
fm
parents:
diff changeset
    99
47616beb4083 initial checkin
fm
parents:
diff changeset
   100
    "Modified: / 02-04-2009 / 17:13:33 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   101
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   102
47616beb4083 initial checkin
fm
parents:
diff changeset
   103
next:aWizardPane
47616beb4083 initial checkin
fm
parents:
diff changeset
   104
    next := aWizardPane.
47616beb4083 initial checkin
fm
parents:
diff changeset
   105
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   106
47616beb4083 initial checkin
fm
parents:
diff changeset
   107
prev
47616beb4083 initial checkin
fm
parents:
diff changeset
   108
    ^ prev
47616beb4083 initial checkin
fm
parents:
diff changeset
   109
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   110
47616beb4083 initial checkin
fm
parents:
diff changeset
   111
prev:aWizardPane
47616beb4083 initial checkin
fm
parents:
diff changeset
   112
    prev := aWizardPane.
47616beb4083 initial checkin
fm
parents:
diff changeset
   113
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   114
47616beb4083 initial checkin
fm
parents:
diff changeset
   115
task
47616beb4083 initial checkin
fm
parents:
diff changeset
   116
47616beb4083 initial checkin
fm
parents:
diff changeset
   117
    ^self wizard task
47616beb4083 initial checkin
fm
parents:
diff changeset
   118
47616beb4083 initial checkin
fm
parents:
diff changeset
   119
    "Created: / 24-03-2009 / 19:29:10 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   120
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   121
47616beb4083 initial checkin
fm
parents:
diff changeset
   122
wizard
47616beb4083 initial checkin
fm
parents:
diff changeset
   123
47616beb4083 initial checkin
fm
parents:
diff changeset
   124
    ^self masterApplication
47616beb4083 initial checkin
fm
parents:
diff changeset
   125
47616beb4083 initial checkin
fm
parents:
diff changeset
   126
    "Created: / 24-03-2009 / 14:37:35 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   127
! !
47616beb4083 initial checkin
fm
parents:
diff changeset
   128
47616beb4083 initial checkin
fm
parents:
diff changeset
   129
!WizardPane methodsFor:'actions'!
47616beb4083 initial checkin
fm
parents:
diff changeset
   130
47616beb4083 initial checkin
fm
parents:
diff changeset
   131
enter
47616beb4083 initial checkin
fm
parents:
diff changeset
   132
47616beb4083 initial checkin
fm
parents:
diff changeset
   133
    "This method is called whenever a a pane is shown"
47616beb4083 initial checkin
fm
parents:
diff changeset
   134
47616beb4083 initial checkin
fm
parents:
diff changeset
   135
    "Created: / 02-04-2009 / 17:07:42 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   136
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   137
47616beb4083 initial checkin
fm
parents:
diff changeset
   138
goNext
47616beb4083 initial checkin
fm
parents:
diff changeset
   139
47616beb4083 initial checkin
fm
parents:
diff changeset
   140
    self wizard pane: self next
47616beb4083 initial checkin
fm
parents:
diff changeset
   141
47616beb4083 initial checkin
fm
parents:
diff changeset
   142
    "Created: / 20-03-2009 / 14:12:42 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   143
    "Modified: / 24-03-2009 / 14:38:30 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   144
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   145
47616beb4083 initial checkin
fm
parents:
diff changeset
   146
goPrev
47616beb4083 initial checkin
fm
parents:
diff changeset
   147
47616beb4083 initial checkin
fm
parents:
diff changeset
   148
    self wizard pane: self prev
47616beb4083 initial checkin
fm
parents:
diff changeset
   149
47616beb4083 initial checkin
fm
parents:
diff changeset
   150
    "Created: / 20-03-2009 / 14:12:42 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   151
    "Modified: / 24-03-2009 / 14:38:42 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   152
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   153
47616beb4083 initial checkin
fm
parents:
diff changeset
   154
leave
47616beb4083 initial checkin
fm
parents:
diff changeset
   155
47616beb4083 initial checkin
fm
parents:
diff changeset
   156
    "This method is called whenever a a pane is left (via pressing next/prev/accept)"
47616beb4083 initial checkin
fm
parents:
diff changeset
   157
47616beb4083 initial checkin
fm
parents:
diff changeset
   158
    "Created: / 02-04-2009 / 17:08:15 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   159
! !
47616beb4083 initial checkin
fm
parents:
diff changeset
   160
47616beb4083 initial checkin
fm
parents:
diff changeset
   161
!WizardPane methodsFor:'change & update'!
47616beb4083 initial checkin
fm
parents:
diff changeset
   162
47616beb4083 initial checkin
fm
parents:
diff changeset
   163
updateButtons
766
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
   164
    self
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
   165
        goPrevEnabled:self canGoPrev;
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
   166
        goNextEnabled:self canGoNext;
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
   167
        acceptEnabled:self acceptEnabled.
251
47616beb4083 initial checkin
fm
parents:
diff changeset
   168
47616beb4083 initial checkin
fm
parents:
diff changeset
   169
    "Created: / 24-03-2009 / 19:54:49 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   170
    "Modified: / 02-04-2009 / 16:27:17 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   171
! !
47616beb4083 initial checkin
fm
parents:
diff changeset
   172
47616beb4083 initial checkin
fm
parents:
diff changeset
   173
!WizardPane methodsFor:'private'!
47616beb4083 initial checkin
fm
parents:
diff changeset
   174
47616beb4083 initial checkin
fm
parents:
diff changeset
   175
createNext
47616beb4083 initial checkin
fm
parents:
diff changeset
   176
    ^ self subclassResponsibility
47616beb4083 initial checkin
fm
parents:
diff changeset
   177
47616beb4083 initial checkin
fm
parents:
diff changeset
   178
    "Created: / 21-03-2009 / 10:56:58 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   179
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   180
47616beb4083 initial checkin
fm
parents:
diff changeset
   181
showMessage: aString
47616beb4083 initial checkin
fm
parents:
diff changeset
   182
47616beb4083 initial checkin
fm
parents:
diff changeset
   183
    ^self wizard showMessage: aString
47616beb4083 initial checkin
fm
parents:
diff changeset
   184
47616beb4083 initial checkin
fm
parents:
diff changeset
   185
    "Created: / 09-04-2009 / 08:19:03 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   186
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   187
47616beb4083 initial checkin
fm
parents:
diff changeset
   188
showProgressWhile: aBlock
47616beb4083 initial checkin
fm
parents:
diff changeset
   189
47616beb4083 initial checkin
fm
parents:
diff changeset
   190
    ^self wizard showProgressWhile: aBlock
47616beb4083 initial checkin
fm
parents:
diff changeset
   191
47616beb4083 initial checkin
fm
parents:
diff changeset
   192
    "Created: / 24-03-2009 / 14:58:48 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   193
! !
47616beb4083 initial checkin
fm
parents:
diff changeset
   194
47616beb4083 initial checkin
fm
parents:
diff changeset
   195
!WizardPane methodsFor:'queries'!
47616beb4083 initial checkin
fm
parents:
diff changeset
   196
766
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
   197
acceptEnabled
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
   198
    ^ false
251
47616beb4083 initial checkin
fm
parents:
diff changeset
   199
47616beb4083 initial checkin
fm
parents:
diff changeset
   200
    "Created: / 21-03-2009 / 12:22:10 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   201
    "Modified: / 02-04-2009 / 16:29:58 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   202
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   203
47616beb4083 initial checkin
fm
parents:
diff changeset
   204
canGoNext
47616beb4083 initial checkin
fm
parents:
diff changeset
   205
47616beb4083 initial checkin
fm
parents:
diff changeset
   206
    ^true
47616beb4083 initial checkin
fm
parents:
diff changeset
   207
47616beb4083 initial checkin
fm
parents:
diff changeset
   208
    "Created: / 20-03-2009 / 12:41:51 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   209
    "Modified: / 02-04-2009 / 16:44:52 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   210
!
47616beb4083 initial checkin
fm
parents:
diff changeset
   211
47616beb4083 initial checkin
fm
parents:
diff changeset
   212
canGoPrev
47616beb4083 initial checkin
fm
parents:
diff changeset
   213
47616beb4083 initial checkin
fm
parents:
diff changeset
   214
    ^prev notNil
47616beb4083 initial checkin
fm
parents:
diff changeset
   215
47616beb4083 initial checkin
fm
parents:
diff changeset
   216
    "Created: / 20-03-2009 / 12:42:02 / Jan Vrany <vranyj1@fel.cvut.cz>"
47616beb4083 initial checkin
fm
parents:
diff changeset
   217
! !
47616beb4083 initial checkin
fm
parents:
diff changeset
   218
47616beb4083 initial checkin
fm
parents:
diff changeset
   219
!WizardPane class methodsFor:'documentation'!
47616beb4083 initial checkin
fm
parents:
diff changeset
   220
830
06bba14aec4f checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 766
diff changeset
   221
version
06bba14aec4f checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 766
diff changeset
   222
    ^ '$Header$'
06bba14aec4f checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 766
diff changeset
   223
!
06bba14aec4f checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 766
diff changeset
   224
766
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
   225
version_SVN
dce413b22e05 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 419
diff changeset
   226
    ^ '§Id§'
251
47616beb4083 initial checkin
fm
parents:
diff changeset
   227
! !