Tools__CheckinInfoDialog.st
author Claus Gittinger <cg@exept.de>
Fri, 01 May 2020 14:59:17 +0200
changeset 19584 42294ec5ee95
parent 19456 4b96845b95b2
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2005 eXept Software AG
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ NameSpace: Tools }"
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
SimpleDialog subclass:#CheckinInfoDialog
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
    17
	instanceVariableNames:'descriptionHolder logMessageHolder isStableHolder tagHolder
9508
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
    18
		quickCheckInHolder quickCheckInVisibleHolder allowEmptyLogMessage
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
    19
		warningMessageHolder logHistory logHistoryHeadLineSelectionHolder
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
    20
		validateConsistencyHolder validateConsistencyVisibleHolder
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
    21
		checkinReasonHolder validateConsistencyEnabledHolder
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
    22
		quickCheckInEnabledHolder repositoryInfoHolder branchInfoHolder
19375
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
    23
		showChangesAction rememberTagAsDefaultHolder'
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
    24
	classVariableNames:'RecentlyUsedTags LastReason DefaultTag'
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
	poolDictionaries:''
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
	category:'System-SourceCodeManagement'
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
!CheckinInfoDialog class methodsFor:'documentation'!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
copyright
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
"
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 COPYRIGHT (c) 2005 eXept Software AG
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
              All Rights Reserved
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 This software is furnished under a license and may be used
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
 only in accordance with the terms of that license and with the
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
 inclusion of the above copyright notice.   This software may not
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
 be provided or otherwise made available to, or used by, any
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
 other person.  No title to or ownership of the software is
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
 hereby transferred.
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
documentation
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
"
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    checkin-dialog.
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    used to be private in SourceCodeManagerUtilites.
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    moved to libtool because libbasic3 should not contain code inheriting from GUI classes.
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    [author:]
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    [see also:]
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
    [instance variables:]
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    [class variables:]
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
"
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
! !
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
15853
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    61
!CheckinInfoDialog class methodsFor:'constants'!
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    62
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    63
possibleReasons
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    64
    ^ #(reasonBugfix reasonDocumentation reasonFeature reasonRefactoring
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
    65
        reasonOther reasonUIEnhancement reasonTuning reasonQuality reasonWorkaround)
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    66
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    67
    "Created: / 31-03-2016 / 17:53:16 / cg"
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    68
!
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    69
15853
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    70
reasonBugfix
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    71
    ^ #reasonBugfix
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    72
!
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    73
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    74
reasonDocumentation
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    75
    ^ #reasonDocumentation
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    76
!
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    77
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    78
reasonFeature
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    79
    ^ #reasonFeature
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    80
!
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    81
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    82
reasonOther
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    83
    ^ #reasonOther
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    84
!
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    85
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    86
reasonQuality
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    87
    ^ #reasonQuality
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    88
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    89
    "Created: / 31-03-2016 / 17:53:57 / cg"
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    90
!
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    91
15853
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    92
reasonRefactoring
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
    93
    ^ #reasonRefactoring
15873
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
    94
!
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
    95
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    96
reasonTuning
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    97
    ^ #reasonTuning
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    98
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
    99
    "Created: / 31-03-2016 / 17:53:26 / cg"
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   100
!
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   101
15873
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
   102
reasonUIEnhancement
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
   103
    ^ #reasonUIEnhancement
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   104
!
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   105
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   106
reasonWorkaround
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   107
    ^ #reasonWorkaround
15853
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
   108
! !
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
   109
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   110
!CheckinInfoDialog class methodsFor:'help specs'!
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   111
17882
b1e8428466b8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 17843
diff changeset
   112
helpSpec
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   113
    "This resource specification was automatically generated
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   114
     by the UIHelpTool of ST/X."
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   115
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   116
    "Do not manually edit this!! If it is corrupted,
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   117
     the UIHelpTool may not be able to read the specification."
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   118
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   119
    "
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   120
     UIHelpTool openOnClass:Tools::CheckinInfoDialog
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   121
    "
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   122
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   123
    <resource: #help>
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   124
17882
b1e8428466b8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 17843
diff changeset
   125
    ^ super helpSpec addPairsFrom:#(
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   126
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   127
#checkinReason
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   128
'Adds a keyword to the checkin info, to allow automatic generation of revision information from the log later'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   129
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   130
#checkinReasonBugfix
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   131
'Some bug was fixed.\Please describe what was changed and\if possible, add a bug identifier (issue-ID) to the checkin info'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   132
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   133
#checkinReasonDocumentation
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   134
'Only documentation, comments etc. were added/changed.\Tells others, that there is no need to test/verify/review the changes'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   135
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   136
#checkinReasonFeature
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   137
'A new feature was added.\Please describe what was changed and\if possible, add a requirement identifier (issue-ID) to the checkin info'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   138
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   139
#checkinReasonOther
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   140
'Some other change, which does not fit into one of the above.\Please describe in detail what you did in the checkin info'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   141
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   142
#checkinReasonQuality
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   143
'The change enhanced the quality of the product (debuggability, testability, robustness, etc.)\Use this for test-cases.'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   144
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   145
#checkinReasonRefactoring
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   146
'The code was refactored/improved for better structure or maintainability'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   147
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   148
#checkinReasonTuning
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   149
'The change enhances the performance.\Be especially careful to always add test cases,\because statistically, many errors are introduced by "optimizations".'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   150
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   151
#checkinReasonUIEnhancement
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   152
'Some enhancement in a UI which makes it look better or easier to use\(but does not add new functionality).\Please describe in detail what you did in the checkin info'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   153
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   154
#checkinReasonWorkaround
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   155
'Some bug was fixed as a quick hack (eg. to satisfy a customer).\The change should be further investigated,\and propably a better technical solution be found.\\But still, please describe what was changed and\if possible, add a bug identifier (issue-ID) to the checkin info'
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   156
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   157
#logMessage
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   158
'This message is added as a check-in log message. It can later be retrieved via the browser''s revision info menu function'
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   159
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   160
#markAsStable
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   161
'Mark this as a stable version (i.e. give it a "stable" tag)'
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   162
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   163
#quickCheckin
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   164
'Only checkin classes which have been created or changed during this session'
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   165
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   166
#showDiffs
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   167
'Oops - you forgot?\\Click here to see the differences.'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   168
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   169
#tag
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   170
'Mark this version with a symbolic tag (combo list gives list of recently used tags)'
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   171
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   172
#validateConsistency
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   173
'Perform some consistency checks before checking in. Especially checks the correctness of the ProjectDefinition vs. the actual set of classes in the image'
15853
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
   174
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   175
)
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   176
! !
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   177
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
!CheckinInfoDialog class methodsFor:'interface specs'!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
windowSpec
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
    "This resource specification was automatically generated
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
     by the UIPainter of ST/X."
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   184
    "Do not manually edit this!! If it is corrupted,
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
     the UIPainter may not be able to read the specification."
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   186
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
    "
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   188
     UIPainter new openOnClass:Tools::CheckinInfoDialog andSelector:#windowSpec
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   189
     Tools::CheckinInfoDialog new openInterface:#windowSpec
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   190
     Tools::CheckinInfoDialog open
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   191
    "
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   192
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   193
    <resource: #canvas>
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   194
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
    ^ 
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   196
    #(FullSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   197
       name: windowSpec
19456
4b96845b95b2 #UI_ENHANCEMENT by Maren
matilk
parents: 19375
diff changeset
   198
       uuid: '2eedb44a-2a4d-11b2-852b-2c600c6a1d41'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   199
       window: 
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   200
      (WindowSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   201
         label: 'Enter Log Message'
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   202
         name: 'Enter Log Message'
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   203
         uuid: '35292892-d93d-11e7-8a1e-c42c033b4871'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   204
         min: (Point 538 387) bounds: (Rectangle 0 0 579 567)
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   205
      ) component: 
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   206
      (SpecCollection
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   207
         collection: (
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   208
          (HorizontalPanelViewSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   209
             name: 'HorizontalPanel2'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   210
             layout: (LayoutFrame 0 0.0 0 0 0 1.0 32 0) uuid: '35292b58-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   211
             horizontalLayout: left
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   212
             verticalLayout: center
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   213
             horizontalSpace: 0
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   214
             verticalSpace: 3
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   215
             component: 
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   216
            (SpecCollection
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   217
               collection: (
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   218
                (LabelSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   219
                   label: 'Enter checkIn log-message for:'
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   220
                   name: 'Label1'
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   221
                   uuid: '35292da6-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   222
                   translateLabel: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   223
                   resizeForLabel: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   224
                   useDefaultExtent: true
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   225
                )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   226
                (LabelSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   227
                   name: 'Label2'
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   228
                   uuid: '35293008-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   229
                   translateLabel: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   230
                   labelChannel: descriptionHolder
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   231
                   useDefaultExtent: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   232
                )
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   233
              )
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   234
            )
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   235
          )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   236
          (LabelSpec
17843
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   237
             name: 'BranchInfoLabel'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   238
             layout: (LayoutFrame 0 0 31 0 200 0 57 0) style: (FontDescription helvetica medium roman 12 #'iso10646-1' nil nil) uuid: '35293166-d93d-11e7-8a1e-c42c033b4871'
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   239
             translateLabel: true
17843
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   240
             labelChannel: branchInfoHolder
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   241
             resizeForLabel: true
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   242
             adjust: left
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   243
          )
17843
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   244
          (LabelSpec
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   245
             name: 'RepositoryInfoLabel'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   246
             layout: (LayoutFrame 149 0 31 0 0 1 57 0) style: (FontDescription helvetica medium roman 12 #'iso10646-1' nil nil) uuid: '35293166-d93d-11e7-8a1e-c42c033b4871'
17843
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   247
             translateLabel: true
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   248
             labelChannel: repositoryInfoHolder
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   249
             resizeForLabel: true
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   250
             adjust: right
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   251
          )
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   252
          (LabelSpec
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   253
             label: 'Previous Log Messages:'
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   254
             name: 'Label5'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   255
             layout: (LayoutFrame 0 0 73 0 220 0 103 0) uuid: '3529329c-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   256
             translateLabel: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   257
             adjust: right
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   258
          )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   259
          (ComboListSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   260
             name: 'ComboList1'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   261
             layout: (LayoutFrame 220 0.0 73 0 0 1.0 103 0) uuid: '352933b4-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   262
             model: logHistoryHeadLineSelectionHolder
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   263
             comboList: logHistoryHeadLines
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   264
             useIndex: true
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   265
          )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   266
          (TextEditorSpec
19118
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   267
             name: 'LogTextEditor'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   268
             layout: (LayoutFrame 2 0.0 105 0 -2 1 -300 1) activeHelpKey: logMessage
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   269
             uuid: '35293602-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   270
             model: logMessageHolder
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   271
             hasHorizontalScrollBar: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   272
             hasVerticalScrollBar: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   273
             hasKeyboardFocusInitially: false
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   274
          )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   275
          (LabelSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   276
             name: 'Label4'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   277
             layout: (LayoutFrame 0 0.0 -293 1 0 1.0 -271 1) uuid: '35293828-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   278
             translateLabel: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   279
             labelChannel: warningMessageHolder
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   280
          )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   281
          (CheckBoxSpec
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   282
             label: 'Quick Checkin (Only Classes in ChangeSet)'
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   283
             name: 'CheckInChangedOnlyCheckbox'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   284
             layout: (LayoutFrame 3 0 -268 1 -3 1 -246 1) activeHelpKey: quickCheckin
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   285
             uuid: '35293954-d93d-11e7-8a1e-c42c033b4871'
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   286
             visibilityChannel: quickCheckInVisibleHolder
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   287
             enableChannel: quickCheckInEnabledHolder
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   288
             model: quickCheckInHolder
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   289
             translateLabel: true
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   290
          )
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   291
          (CheckBoxSpec
18438
b287b2fa9144 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 18260
diff changeset
   292
             label: 'Validate Class/Package Consistency'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   293
             name: 'CheckBox1'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   294
             layout: (LayoutFrame 3 0 -241 1 -3 1 -219 1) activeHelpKey: validateConsistency
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   295
             uuid: '35293b70-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   296
             visibilityChannel: validateConsistencyVisibleHolder
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   297
             enableChannel: validateConsistencyEnabledHolder
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   298
             model: validateConsistencyHolder
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   299
             translateLabel: true
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   300
          )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   301
          (CheckBoxSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   302
             label: 'Mark as Stable'
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   303
             name: 'MarkStableCheckBox'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   304
             layout: (LayoutFrame 3 0 -214 1 -3 1 -192 1) activeHelpKey: markAsStable
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   305
             uuid: '35293c9c-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   306
             model: isStableHolder
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   307
             translateLabel: true
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   308
          )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   309
          (LabelSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   310
             label: 'Tag:'
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   311
             name: 'Label3'
19375
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   312
             layout: (LayoutFrame -40 0.5 -241 1 0 0.5 -219 1) activeHelpKey: tag
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   313
             uuid: '35293db4-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   314
             translateLabel: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   315
             adjust: right
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   316
          )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   317
          (ComboBoxSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   318
             name: 'ComboBox1'
19375
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   319
             layout: (LayoutFrame 0 0.5 -244 1 -3 1 -218 1) activeHelpKey: tag
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   320
             uuid: '35293ee0-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   321
             enableChannel: notMarkAsStableHolder
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   322
             model: tagHolder
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   323
             acceptOnReturn: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   324
             acceptOnTab: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   325
             acceptOnLostFocus: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   326
             acceptOnPointerLeave: false
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   327
             comboList: recentTagsList
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   328
          )
19375
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   329
          (CheckBoxSpec
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   330
             label: 'Remember as Default'
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   331
             name: 'CheckBox2'
19456
4b96845b95b2 #UI_ENHANCEMENT by Maren
matilk
parents: 19375
diff changeset
   332
             layout: (LayoutFrame 0 0.5 -214 1 0 1 -192 1) uuid: '52187b7c-3870-11b2-aba0-00d861a3d4eb'
19375
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   333
             model: rememberTagAsDefaultHolder
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   334
             translateLabel: true
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   335
          )
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   336
          (LabelSpec
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   337
             label: 'Reason for Checkin:'
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   338
             name: 'Label6'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   339
             layout: (LayoutOrigin 2 0 -184 1) activeHelpKey: checkinReason
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   340
             uuid: '35294232-d93d-11e7-8a1e-c42c033b4871'
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   341
             translateLabel: true
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   342
             resizeForLabel: true
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   343
             adjust: right
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   344
          )
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   345
          (RadioButtonSpec
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   346
             label: 'Bugfix'
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   347
             name: 'RadioButton1'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   348
             layout: (LayoutFrame 20 0.0 -159 1 300 0 -137 1) activeHelpKey: checkinReasonBugfix
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   349
             uuid: '3529437c-d93d-11e7-8a1e-c42c033b4871'
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   350
             translateLabel: true
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   351
             model: checkinReasonHolder
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   352
             isTriggerOnDown: true
16922
68e9bcff55d2 #BUGFIX by mawalch
mawalch
parents: 16520
diff changeset
   353
             select: reasonBugfix
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   354
          )
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   355
          (RadioButtonSpec
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   356
             label: 'Feature / Enhancement'
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   357
             name: 'RadioButton2'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   358
             layout: (LayoutFrame 20 0 -135 1 -279 1 -113 1) activeHelpKey: checkinReasonFeature
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   359
             uuid: '35294656-d93d-11e7-8a1e-c42c033b4871'
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   360
             translateLabel: true
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   361
             model: checkinReasonHolder
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   362
             isTriggerOnDown: true
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   363
             select: reasonFeature
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   364
          )
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   365
          (RadioButtonSpec
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   366
             label: 'Refactoring / Code Cleanup'
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   367
             name: 'RadioButton3'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   368
             layout: (LayoutFrame 9 0.5 -159 1 0 1 -137 1) activeHelpKey: checkinReasonRefactoring
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   369
             uuid: '35294840-d93d-11e7-8a1e-c42c033b4871'
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   370
             translateLabel: true
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   371
             model: checkinReasonHolder
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   372
             isTriggerOnDown: true
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   373
             select: reasonRefactoring
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   374
          )
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   375
          (RadioButtonSpec
15873
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
   376
             label: 'UI Enhancement / Beautification'
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
   377
             name: 'RadioButton6'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   378
             layout: (LayoutFrame 20 0 -111 1 -279 1 -89 1) activeHelpKey: checkinReasonUIEnhancement
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   379
             uuid: '35294a02-d93d-11e7-8a1e-c42c033b4871'
15873
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
   380
             translateLabel: true
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
   381
             model: checkinReasonHolder
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
   382
             isTriggerOnDown: true
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
   383
             select: reasonUIEnhancement
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   384
          )
15873
45119443a715 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15853
diff changeset
   385
          (RadioButtonSpec
15853
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
   386
             label: 'Documentation / Comment Only'
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
   387
             name: 'RadioButton5'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   388
             layout: (LayoutFrame 9 0.5 -111 1 0 1 -89 1) activeHelpKey: checkinReasonDocumentation
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   389
             uuid: '35294bb0-d93d-11e7-8a1e-c42c033b4871'
15853
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
   390
             translateLabel: true
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
   391
             model: checkinReasonHolder
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
   392
             isTriggerOnDown: true
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
   393
             select: reasonDocumentation
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   394
          )
15853
00d7a229b2f0 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15849
diff changeset
   395
          (RadioButtonSpec
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   396
             label: 'Tuning'
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   397
             name: 'RadioButton4a'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   398
             layout: (LayoutFrame 20 0 -87 1 -279 1 -65 1) activeHelpKey: checkinReasonTuning
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   399
             uuid: '35294d5e-d93d-11e7-8a1e-c42c033b4871'
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   400
             translateLabel: true
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   401
             model: checkinReasonHolder
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   402
             isTriggerOnDown: true
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   403
             select: reasonTuning
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   404
          )
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   405
          (RadioButtonSpec
16236
5a78db3ebecc #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 16224
diff changeset
   406
             label: 'Quality (Debuggability / Testability)'
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   407
             name: 'RadioButton4'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   408
             layout: (LayoutFrame 9 0.5 -135 1 0 1 -113 1) activeHelpKey: checkinReasonQuality
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   409
             uuid: '35294f0c-d93d-11e7-8a1e-c42c033b4871'
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   410
             translateLabel: true
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   411
             model: checkinReasonHolder
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   412
             isTriggerOnDown: true
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   413
             select: reasonQuality
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   414
          )
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   415
          (RadioButtonSpec
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   416
             label: 'None of the Above'
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   417
             name: 'RadioButton7'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   418
             layout: (LayoutFrame 20 0 -63 1 -279 1 -41 1) activeHelpKey: checkinReasonOther
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   419
             uuid: '352950ba-d93d-11e7-8a1e-c42c033b4871'
15849
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   420
             translateLabel: true
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   421
             model: checkinReasonHolder
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   422
             isTriggerOnDown: true
9e9179e9f829 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 15841
diff changeset
   423
             select: reasonOther
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   424
          )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   425
          (HorizontalPanelViewSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   426
             name: 'ButtonPanel1'
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   427
             layout: (LayoutFrame 0 0.0 -40 1 -16 1.0 0 1.0) uuid: '35295268-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   428
             horizontalLayout: fitSpace
18220
d1ebaddf1100 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 18211
diff changeset
   429
             verticalLayout: centerMax
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   430
             horizontalSpace: 3
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   431
             verticalSpace: 2
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   432
             reverseOrderIfOKAtLeft: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   433
             component: 
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   434
            (SpecCollection
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   435
               collection: (
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   436
                (ActionButtonSpec
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   437
                   label: 'Cancel'
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   438
                   name: 'Button2'
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   439
                   uuid: '352953a8-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   440
                   translateLabel: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   441
                   model: doCancel
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   442
                   extent: (Point 183 34) usePreferredHeight: true
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   443
                )
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   444
                (ActionButtonSpec
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   445
                   label: 'What Changed?'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   446
                   name: 'Button3'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   447
                   activeHelpKey: showDiffs
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   448
                   uuid: '6573b3de-5a05-11e8-ad24-b8f6b1108e05'
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   449
                   visibilityChannel: showChangesButtonVisible
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   450
                   translateLabel: true
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   451
                   model: showChanges
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   452
                   extent: (Point 183 34)
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   453
                )
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   454
                (ActionButtonSpec
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   455
                   label: 'OK'
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   456
                   name: 'Button1'
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   457
                   uuid: '35295560-d93d-11e7-8a1e-c42c033b4871'
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   458
                   translateLabel: true
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   459
                   model: doAccept
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   460
                   extent: (Point 184 34) usePreferredHeight: true
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   461
                )
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   462
              )
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   463
            ) keepSpaceForOSXResizeHandleH: true
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   464
          )
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   465
          (RadioButtonSpec
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   466
             label: 'Workaround (Investigate Further)'
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   467
             name: 'RadioButton8'
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   468
             layout: (LayoutFrame 9 0.5 -87 1 0 1 -65 1) activeHelpKey: checkinReasonWorkaround
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   469
             uuid: '35294d5e-d93d-11e7-8a1e-c42c033b4871'
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   470
             translateLabel: true
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   471
             model: checkinReasonHolder
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   472
             isTriggerOnDown: true
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   473
             select: reasonWorkaround
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   474
          )
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   475
        )
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   476
      )
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   477
    )
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   478
! !
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   479
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   480
!CheckinInfoDialog class methodsFor:'opening'!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   481
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   482
getCheckinInfoFor:infoString initialAnswer:initialAnswer
11412
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   483
    ^ self 
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   484
        getCheckinInfoFor:infoString 
11412
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   485
        initialAnswer:initialAnswer 
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   486
        withQuickOption:false
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   487
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   488
    "
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   489
      self getCheckinInfoFor:'hello' initialAnswer:'bla'
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   490
    "
11412
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   491
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   492
    "Modified (format): / 04-12-2017 / 23:08:50 / cg"
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   493
!
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   494
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   495
getCheckinInfoFor:infoString initialAnswer:initialAnswer withQuickOption:withQuickOption
11412
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   496
    ^ self
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   497
        getCheckinInfoFor:infoString 
11412
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   498
        initialAnswer:initialAnswer 
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   499
        withQuickOption:withQuickOption
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   500
        logHistory:#()
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   501
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   502
    "
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   503
     self getCheckinInfoFor:'hello' initialAnswer:'bla'
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   504
    "
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   505
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   506
    "Modified: / 12-03-2012 / 12:39:00 / cg"
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   507
    "Modified (format): / 04-12-2017 / 23:08:40 / cg"
11412
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   508
!
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   509
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   510
getCheckinInfoFor:infoString initialAnswer:initialAnswer withQuickOption:withQuickOption logHistory:logHistoryArg
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   511
    ^  self     
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   512
        getCheckinInfoFor:infoString 
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   513
        initialAnswer:initialAnswer 
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   514
        withQuickOption:withQuickOption 
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   515
        logHistory:logHistoryArg 
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   516
        withValidateConsistencyOption:false
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   517
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   518
    "
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   519
     self getCheckinInfoFor:'hello' initialAnswer:'bla'
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   520
     self getCheckinInfoFor:'hello' initialAnswer:'bla' withQuickOption:true
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   521
     self getCheckinInfoFor:'hello' initialAnswer:'bla' withQuickOption:true logHistory:nil withConsistencyCheckOption:true
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   522
    "
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   523
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   524
    "Created: / 12-03-2012 / 12:36:26 / cg"
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   525
    "Modified (format): / 04-12-2017 / 23:08:35 / cg"
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   526
!
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   527
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   528
getCheckinInfoFor:infoString initialAnswer:initialAnswer 
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   529
                withQuickOption:withQuickOption 
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   530
                logHistory:logHistoryArg 
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   531
                withValidateConsistencyOption:withValidateConsistencyOption
18131
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   532
    ^ self new
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   533
        getCheckinInfoFor:infoString initialAnswer:initialAnswer 
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   534
        withQuickOption:withQuickOption 
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   535
        logHistory:logHistoryArg 
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   536
        withValidateConsistencyOption:withValidateConsistencyOption
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   537
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   538
    "
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   539
     self getCheckinInfoFor:'hello' initialAnswer:'bla'
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   540
    "
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   541
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   542
    "Created: / 12-03-2012 / 12:36:26 / cg"
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   543
    "Modified (format): / 04-12-2017 / 23:07:46 / cg"
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   544
!
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   545
17837
bf1bde1037ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17186
diff changeset
   546
getCheckinInfoFor:infoString initialAnswer:initialAnswer 
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   547
            withQuickOption:withQuickOption 
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   548
            logHistory:logHistoryArg 
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   549
            withValidateConsistencyOption:withValidateConsistencyOption
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   550
            initialReason:defaultReason
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   551
18131
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   552
    ^ self new
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   553
        getCheckinInfoFor:infoString initialAnswer:initialAnswer 
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   554
        withQuickOption:withQuickOption 
19118
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   555
        isClassCheckin:false
18131
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   556
        logHistory:logHistoryArg 
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   557
        withValidateConsistencyOption:withValidateConsistencyOption
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   558
        initialReason:defaultReason
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   559
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   560
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   561
    "
7110
86a7ea1388a1 no tagIt checkBox - non-empty tag value means: tagIt
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
   562
     self getCheckinInfoFor:'hello' initialAnswer:'bla'
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   563
    "
7110
86a7ea1388a1 no tagIt checkBox - non-empty tag value means: tagIt
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
   564
11412
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   565
    "Created: / 12-03-2012 / 12:36:26 / cg"
17843
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   566
    "Modified: / 05-12-2017 / 23:07:06 / cg"
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   567
! !
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   568
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   569
!CheckinInfoDialog methodsFor:'accessing'!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   570
9508
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   571
allowEmptyLogMessage
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   572
    ^ allowEmptyLogMessage ? false
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   573
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   574
    "Created: / 06-07-2010 / 11:23:18 / cg"
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   575
!
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   576
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   577
allowEmptyLogMessage:aBoolean 
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   578
    allowEmptyLogMessage := aBoolean
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   579
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   580
    "Created: / 06-07-2010 / 11:23:31 / cg"
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   581
!
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   582
17843
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   583
branchInfo:aString
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   584
    self branchInfoHolder value:aString
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   585
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   586
    "Created: / 05-12-2017 / 23:08:09 / cg"
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   587
!
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   588
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   589
checkinReason
19018
268408ec0be5 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 18438
diff changeset
   590
    "returns one of: #(reasonBugfix reasonFeature reasonRefactoring reasonDocumentation reasonOther reasonWorkaround)"
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   591
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   592
    ^ self checkinReasonHolder value
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   593
!
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   594
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   595
checkinReason:aSymbolicReason
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   596
    self assert:( self class possibleReasons includes:aSymbolicReason).
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   597
    self checkinReasonHolder value:aSymbolicReason
16224
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   598
83f5f04b9c56 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 15874
diff changeset
   599
    "Modified: / 31-03-2016 / 17:58:45 / cg"
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   600
!
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   601
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   602
description
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   603
    ^ self descriptionHolder value
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   604
!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   605
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   606
description:aString
7179
8229aa65d96b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7110
diff changeset
   607
    self descriptionHolder value:aString allBold
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   608
!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   609
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   610
isStable
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   611
    ^ self isStableHolder value
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   612
!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   613
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   614
isStable:aBoolean
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   615
    self isStableHolder value:aBoolean
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   616
!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   617
11413
d78e22496f0a previous log messages
Claus Gittinger <cg@exept.de>
parents: 11412
diff changeset
   618
logHistory:something
d78e22496f0a previous log messages
Claus Gittinger <cg@exept.de>
parents: 11412
diff changeset
   619
    logHistory := something.
d78e22496f0a previous log messages
Claus Gittinger <cg@exept.de>
parents: 11412
diff changeset
   620
!
d78e22496f0a previous log messages
Claus Gittinger <cg@exept.de>
parents: 11412
diff changeset
   621
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   622
logMessage
15829
ba4d543aff02 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14685
diff changeset
   623
    ^ self logMessageHolder value ? ''
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   624
!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   625
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   626
logMessage:aString
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   627
    self logMessageHolder value:aString
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   628
!
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   629
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   630
quickCheckIn
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   631
    ^ self quickCheckInHolder value
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   632
!
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   633
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   634
quickCheckIn:aBoolean
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   635
    self quickCheckInHolder value:aBoolean
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   636
!
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   637
17843
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   638
repositoryInfo:aString
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   639
    self repositoryInfoHolder value:aString
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   640
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   641
    "Created: / 05-12-2017 / 23:08:05 / cg"
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   642
!
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   643
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   644
showChangesAction:aBlock
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   645
    "if non-nil, an additional 'Show Changes' button appears,
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   646
     which evaluates this action"
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   647
     
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   648
    showChangesAction := aBlock
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   649
!
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   650
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   651
tag
13299
f7c2eb0610c5 class: Tools::CheckinInfoDialog
Stefan Vogel <sv@exept.de>
parents: 12860
diff changeset
   652
    ^ (self tagHolder value ? '') withoutSeparators
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   653
!
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   654
7110
86a7ea1388a1 no tagIt checkBox - non-empty tag value means: tagIt
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
   655
tag:aStringOrNil
86a7ea1388a1 no tagIt checkBox - non-empty tag value means: tagIt
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
   656
    self tagHolder value:aStringOrNil
86a7ea1388a1 no tagIt checkBox - non-empty tag value means: tagIt
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
   657
86a7ea1388a1 no tagIt checkBox - non-empty tag value means: tagIt
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
   658
    "Modified: / 12-09-2006 / 12:03:50 / cg"
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   659
!
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   660
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   661
tagIt
7110
86a7ea1388a1 no tagIt checkBox - non-empty tag value means: tagIt
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
   662
    ^ self tag notEmptyOrNil
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   663
7110
86a7ea1388a1 no tagIt checkBox - non-empty tag value means: tagIt
Claus Gittinger <cg@exept.de>
parents: 7097
diff changeset
   664
    "Created: / 12-09-2006 / 13:06:49 / cg"
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   665
!
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   666
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   667
validateConsistency
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   668
    ^ self validateConsistencyHolder value
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   669
!
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   670
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   671
withQuickOption:aBoolean
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   672
    self quickCheckInEnabledHolder value:aBoolean
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   673
    "/ self quickCheckInVisibleHolder value:aBoolean
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   674
!
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   675
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   676
withValidateConsistencyOption:aBoolean
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   677
    self validateConsistencyEnabledHolder value:aBoolean
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   678
    "/ self validateConsistencyVisibleHolder value:aBoolean
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   679
! !
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   680
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   681
!CheckinInfoDialog methodsFor:'actions'!
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   682
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   683
showChanges
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   684
    showChangesAction value
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   685
! !
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   686
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   687
!CheckinInfoDialog methodsFor:'aspects'!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   688
17843
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   689
branchInfoHolder
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   690
    branchInfoHolder isNil ifTrue:[
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   691
        branchInfoHolder := ValueHolder new.
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   692
    ].
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   693
    ^ branchInfoHolder
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   694
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   695
    "Created: / 05-12-2017 / 23:07:40 / cg"
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   696
!
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   697
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   698
checkinReasonHolder
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   699
    checkinReasonHolder isNil ifTrue:[
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   700
        checkinReasonHolder := (LastReason ? self class reasonBugfix) asValue.
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   701
    ].
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   702
    ^ checkinReasonHolder
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   703
!
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   704
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   705
descriptionHolder
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   706
    descriptionHolder isNil ifTrue:[
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   707
        descriptionHolder := ValueHolder new.
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   708
    ].
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   709
    ^ descriptionHolder
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   710
!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   711
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   712
isStableHolder
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   713
    isStableHolder isNil ifTrue:[
7592
f9204291e800 isStable is not the default (too slow for now)
Claus Gittinger <cg@exept.de>
parents: 7591
diff changeset
   714
        isStableHolder := false asValue.
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   715
    ].
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   716
    ^ isStableHolder.
7591
61cf0097b5dc isStable is default
Claus Gittinger <cg@exept.de>
parents: 7179
diff changeset
   717
7592
f9204291e800 isStable is not the default (too slow for now)
Claus Gittinger <cg@exept.de>
parents: 7591
diff changeset
   718
    "Modified: / 16-01-2007 / 16:00:26 / cg"
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   719
!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   720
11412
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   721
logHistoryHeadLineSelectionHolder
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   722
    logHistoryHeadLineSelectionHolder isNil ifTrue:[
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   723
        logHistoryHeadLineSelectionHolder := nil asValue.
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   724
        logHistoryHeadLineSelectionHolder 
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   725
            onChangeEvaluate:
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   726
                [
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   727
                    self logMessageHolder value:(logHistory at:logHistoryHeadLineSelectionHolder value)
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   728
                ].
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   729
    ].
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   730
    ^ logHistoryHeadLineSelectionHolder
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   731
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   732
    "Created: / 12-03-2012 / 12:40:36 / cg"
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   733
!
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   734
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   735
logHistoryHeadLines
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   736
    ^ (logHistory ? #())
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   737
        collect:[:msg |
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   738
            msg withoutLeadingSeparators asCollectionOfLines first , '...'
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   739
        ]
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   740
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   741
    "Created: / 12-03-2012 / 12:39:35 / cg"
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   742
!
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   743
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   744
logMessageHolder
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   745
    logMessageHolder isNil ifTrue:[
11412
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   746
        logMessageHolder := '' asValue.
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   747
    ].
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   748
    ^ logMessageHolder.
11412
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   749
66ebae1951eb previous log messages
Claus Gittinger <cg@exept.de>
parents: 9950
diff changeset
   750
    "Modified: / 12-03-2012 / 12:34:13 / cg"
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   751
!
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   752
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   753
notMarkAsStableHolder
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   754
    ^ BlockValue forLogicalNot:self isStableHolder
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   755
!
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   756
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   757
quickCheckInEnabledHolder
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   758
    quickCheckInEnabledHolder isNil ifTrue:[
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   759
        quickCheckInEnabledHolder := false asValue.
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   760
    ].
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   761
    ^ quickCheckInEnabledHolder
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   762
!
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   763
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   764
quickCheckInHolder
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   765
    quickCheckInHolder isNil ifTrue:[
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   766
        quickCheckInHolder := true asValue.
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   767
    ].
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   768
    ^ quickCheckInHolder
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   769
!
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   770
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   771
quickCheckInVisibleHolder
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   772
    quickCheckInVisibleHolder isNil ifTrue:[
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   773
        quickCheckInVisibleHolder := true asValue.
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   774
    ].
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   775
    ^ quickCheckInVisibleHolder
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   776
!
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   777
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   778
recentTagsList
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   779
    ^ [ CVSSourceCodeManager recentTags ]
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   780
!
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   781
19375
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   782
rememberTagAsDefaultHolder
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   783
    rememberTagAsDefaultHolder isNil ifTrue:[
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   784
        rememberTagAsDefaultHolder := false asValue.
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   785
    ].
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   786
    ^ rememberTagAsDefaultHolder
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   787
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   788
    "Created: / 05-12-2017 / 23:07:40 / cg"
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   789
!
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   790
17843
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   791
repositoryInfoHolder
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   792
    repositoryInfoHolder isNil ifTrue:[
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   793
        repositoryInfoHolder := ValueHolder new.
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   794
    ].
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   795
    ^ repositoryInfoHolder
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   796
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   797
    "Created: / 05-12-2017 / 23:07:34 / cg"
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   798
!
b9274a1ada02 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17840
diff changeset
   799
18130
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   800
showChangesButtonVisible
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   801
    ^ showChangesAction notNil
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   802
!
64f823c2b648 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17882
diff changeset
   803
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   804
tagHolder
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   805
    tagHolder isNil ifTrue:[
14685
c1ba77b8dfc0 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14542
diff changeset
   806
        tagHolder := ("CVSSourceCodeManager recentTag ?" '') asValue.
6979
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   807
    ].
048fb7930a28 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6799
diff changeset
   808
    ^ tagHolder
9508
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   809
!
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   810
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   811
validateConsistencyEnabledHolder
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   812
    validateConsistencyEnabledHolder isNil ifTrue:[
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   813
        validateConsistencyEnabledHolder := false asValue.
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   814
    ].
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   815
    ^ validateConsistencyEnabledHolder
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   816
!
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   817
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   818
validateConsistencyHolder
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   819
    validateConsistencyHolder isNil ifTrue:[
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   820
        validateConsistencyHolder := true asValue.
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   821
    ].
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   822
    ^ validateConsistencyHolder
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   823
!
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   824
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   825
validateConsistencyVisibleHolder
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   826
    validateConsistencyVisibleHolder isNil ifTrue:[
15841
c9885b9e9fc1 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
   827
        validateConsistencyVisibleHolder := true asValue.
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   828
    ].
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   829
    ^ validateConsistencyVisibleHolder
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   830
!
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   831
9508
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   832
warningMessageHolder
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   833
    warningMessageHolder isNil ifTrue:[
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   834
        warningMessageHolder := nil asValue.
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   835
    ].
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   836
    ^ warningMessageHolder.
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   837
6ecac35f25b6 enforce a non-empty logmessage;
Claus Gittinger <cg@exept.de>
parents: 9161
diff changeset
   838
    "Created: / 06-07-2010 / 11:30:29 / cg"
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   839
! !
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   840
18131
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   841
!CheckinInfoDialog methodsFor:'opening'!
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   842
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   843
getCheckinInfoFor:infoString initialAnswer:initialAnswer 
19118
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   844
                withQuickOption:withQuickOption
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   845
                isClassCheckin:isClassCheckin
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   846
                logHistory:logHistoryArg 
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   847
                withValidateConsistencyOption:withValidateConsistencyOption
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   848
    ^ self
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   849
        getCheckinInfoFor:infoString 
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   850
        initialAnswer:initialAnswer 
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   851
        withQuickOption:withQuickOption
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   852
        isClassCheckin:isClassCheckin
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   853
        logHistory:logHistoryArg 
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   854
        withValidateConsistencyOption:withValidateConsistencyOption
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   855
        initialReason:(LastReason ? self class reasonBugfix)
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   856
!
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   857
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   858
getCheckinInfoFor:infoString initialAnswer:initialAnswer 
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   859
            withQuickOption:withQuickOption isClassCheckin:isClassCheckin 
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   860
            logHistory:logHistoryArg 
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   861
            withValidateConsistencyOption:withValidateConsistencyOption
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   862
            initialReason:defaultReason
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   863
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   864
    "ask the user for a log-message to be attached to a commit.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   865
     Do not allow an empty input (i.e. ask again, until either canceled or a string was given)"
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   866
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   867
    |warnMessage|
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   868
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   869
    warnMessage := nil.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   870
    [
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   871
        |lines infoString1 repositoryInfo branchInfo|
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   872
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   873
        infoString1 := infoString.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   874
        lines := infoString asStringCollection.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   875
        lines size > 1 ifTrue:[
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   876
            repositoryInfo := lines second string.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   877
            self repositoryInfo:repositoryInfo.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   878
            lines size > 2 ifTrue:[
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   879
                branchInfo := lines third string.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   880
                self branchInfo:branchInfo.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   881
            ].    
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   882
            infoString1 := lines first.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   883
        ].
19375
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   884
        DefaultTag notNil ifTrue:[
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   885
            self tagHolder value:DefaultTag.
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   886
            self rememberTagAsDefaultHolder value:true.
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   887
        ].
19118
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   888
        self
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   889
            description:infoString1; 
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   890
            logMessage:initialAnswer;
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   891
            withQuickOption:withQuickOption;
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   892
            withValidateConsistencyOption:withValidateConsistencyOption;
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   893
            logHistory:logHistoryArg;
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   894
            checkinReason:defaultReason.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   895
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   896
        self warningMessageHolder value:warnMessage.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   897
        isClassCheckin ifFalse:[
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   898
            self quickCheckInVisibleHolder value:false.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   899
            self quickCheckInEnabledHolder value:false.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   900
            self validateConsistencyVisibleHolder value:false.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   901
            self validateConsistencyEnabledHolder value:false.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   902
        ].
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   903
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   904
        self open.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   905
        self accepted ifFalse:[ ^ nil ].
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   906
    ] doUntil:[
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   907
        |stopAsking|
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   908
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   909
        stopAsking := self allowEmptyLogMessage 
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   910
                      or:[ (self logMessage) withoutSeparators notEmptyOrNil ].
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   911
        stopAsking ifFalse:[
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   912
            warnMessage := (resources string:'Please enter a description of your changes!!') allRed.
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   913
        ].
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   914
        stopAsking
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   915
    ].
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   916
    LastReason := self checkinReason.
19375
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   917
    rememberTagAsDefaultHolder value ifTrue:[
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   918
        DefaultTag := tagHolder value.
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   919
    ] ifFalse:[
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   920
        DefaultTag := nil
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   921
    ].
19118
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   922
    ^ self    
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   923
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   924
    "
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   925
     self getCheckinInfoFor:'hello' initialAnswer:'bla'
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   926
    "
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   927
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   928
    "Created: / 12-03-2012 / 12:36:26 / cg"
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   929
    "Modified: / 05-12-2017 / 23:07:06 / cg"
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   930
!
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   931
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   932
getCheckinInfoFor:infoString initialAnswer:initialAnswer 
18131
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   933
                withQuickOption:withQuickOption 
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   934
                logHistory:logHistoryArg 
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   935
                withValidateConsistencyOption:withValidateConsistencyOption
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   936
    ^ self
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   937
        getCheckinInfoFor:infoString 
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   938
        initialAnswer:initialAnswer 
19118
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   939
        withQuickOption:withQuickOption
da8efbeb3302 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
   940
        isClassCheckin:false
18131
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   941
        logHistory:logHistoryArg 
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   942
        withValidateConsistencyOption:withValidateConsistencyOption
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   943
        initialReason:(LastReason ? self class reasonBugfix)
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   944
!
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   945
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   946
getCheckinInfoFor:infoString initialAnswer:initialAnswer 
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   947
            withQuickOption:withQuickOption 
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   948
            logHistory:logHistoryArg 
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   949
            withValidateConsistencyOption:withValidateConsistencyOption
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   950
            initialReason:defaultReason
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   951
19067
993ed008232c #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 19018
diff changeset
   952
    "ask the user for a log-message to be attached to a commit.
993ed008232c #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 19018
diff changeset
   953
     Do not allow an empty input (i.e. ask again, until either canceled or a string was given)"
993ed008232c #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 19018
diff changeset
   954
19375
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   955
    ^ self 
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   956
        getCheckinInfoFor:infoString initialAnswer:initialAnswer 
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   957
        withQuickOption:withQuickOption isClassCheckin:true 
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   958
        logHistory:logHistoryArg 
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   959
        withValidateConsistencyOption:withValidateConsistencyOption
cc84d2db5f7c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19348
diff changeset
   960
        initialReason:defaultReason
18131
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   961
! !
9e7156478039 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18130
diff changeset
   962
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   963
!CheckinInfoDialog class methodsFor:'documentation'!
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   964
11413
d78e22496f0a previous log messages
Claus Gittinger <cg@exept.de>
parents: 11412
diff changeset
   965
version
15829
ba4d543aff02 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14685
diff changeset
   966
    ^ '$Header$'
11413
d78e22496f0a previous log messages
Claus Gittinger <cg@exept.de>
parents: 11412
diff changeset
   967
!
d78e22496f0a previous log messages
Claus Gittinger <cg@exept.de>
parents: 11412
diff changeset
   968
9161
e4761f8c188d botton order - ok at right in spec,
Claus Gittinger <cg@exept.de>
parents: 8766
diff changeset
   969
version_CVS
15829
ba4d543aff02 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 14685
diff changeset
   970
    ^ '$Header$'
6799
587271967bde initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   971
! !
12537
2ddd00171375 class: Tools::CheckinInfoDialog
Claus Gittinger <cg@exept.de>
parents: 11413
diff changeset
   972