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