stx_libwidg2.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 17 Jun 2019 11:25:19 +0100
branchjv
changeset 6070 a0e88386e17c
parent 5814 70d07365a2d4
permissions -rw-r--r--
UI: move all items in menu to the right as if there was an icon If there's no icon, just fraw empty space. This makes popup menus with no icons at all looks similar to popup menus with icons and also makes item labels more readable. In general, looks much better and fits better into modern desktops (GNOME & Windows behave the same).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3028
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
     1
"
5339
fdfcbffe2ae2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5338
diff changeset
     2
 COPYRIGHT (c) Claus Gittinger / 2006 by eXept Software AG
5814
70d07365a2d4 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5341
diff changeset
     3
 COPYRIGHT (c) 2015 Jan Vrany
3028
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
     4
              All Rights Reserved
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
     5
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
     6
 This software is furnished under a license and may be used
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
     7
 only in accordance with the terms of that license and with the
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
     8
 inclusion of the above copyright notice.   This software may not
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
     9
 be provided or otherwise made available to, or used by, any
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    10
 other person.  No title to or ownership of the software is
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    11
 hereby transferred.
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    12
"
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libwidg2' }"
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
4699
8f3feb1c2ba1 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
    15
"{ NameSpace: Smalltalk }"
8f3feb1c2ba1 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
    16
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
LibraryDefinition subclass:#stx_libwidg2
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	instanceVariableNames:''
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	classVariableNames:''
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	poolDictionaries:''
3209
9b7153bf5386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3163
diff changeset
    21
	category:'* Projects & Packages *'
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
3028
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    24
!stx_libwidg2 class methodsFor:'documentation'!
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    25
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    26
copyright
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    27
"
5339
fdfcbffe2ae2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5338
diff changeset
    28
 COPYRIGHT (c) Claus Gittinger / 2006 by eXept Software AG
5814
70d07365a2d4 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5341
diff changeset
    29
 COPYRIGHT (c) 2015 Jan Vrany
3028
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    30
              All Rights Reserved
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    31
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    32
 This software is furnished under a license and may be used
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    33
 only in accordance with the terms of that license and with the
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    35
 be provided or otherwise made available to, or used by, any
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    36
 other person.  No title to or ownership of the software is
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    37
 hereby transferred.
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    38
"
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    39
!
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    40
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    41
documentation
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    42
"
4699
8f3feb1c2ba1 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
    43
    Package Documentation
8f3feb1c2ba1 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
    44
4713
b39fc77035f1 class: stx_libwidg2
Claus Gittinger <cg@exept.de>
parents: 4699
diff changeset
    45
    This library contains additional gui components (widgets).
b39fc77035f1 class: stx_libwidg2
Claus Gittinger <cg@exept.de>
parents: 4699
diff changeset
    46
b39fc77035f1 class: stx_libwidg2
Claus Gittinger <cg@exept.de>
parents: 4699
diff changeset
    47
    These are less often used and can (in theory) be left out of very simple end-user
4699
8f3feb1c2ba1 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 4675
diff changeset
    48
    applications.
3028
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    49
"
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    50
! !
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
!stx_libwidg2 class methodsFor:'description'!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
3027
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    54
additionalClassNamesAndAttributes
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
    ^ #(
3014
777b22b08f07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3002
diff changeset
    56
        "/ <className> or (<className> attributes...)
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    )
3014
777b22b08f07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3002
diff changeset
    58
3027
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    59
    "Created: / 21-08-2006 / 19:52:03 / cg"
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    60
!
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    61
3232
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    62
excludedFromPreRequisites
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
    63
    "list all packages which should be ignored in the automatic
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
    64
     preRequisites scan. See #preRequisites for more."
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
    65
3232
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    66
    ^ #(
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    67
        #'stx:clients/Demos'    "CodingExamples_GUI::GUIDemoNoteBook - referenced by TabItem class>>test "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    68
        #'stx:goodies'    "IdentityDictionaryWithDefault - referenced by GridBagLayoutInfo>>initialize "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    69
        #'stx:goodies/postscript'    "PSGraphicsContext - referenced by ImageEditView>>printWithMagnification: "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    70
        #'stx:libtool'    "FileBrowser - referenced by HierarchicalFileList::Directory>>icon "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    71
        #'stx:libtool2'    "ImageEditor - referenced by ImageEditView class>>classResources "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    72
        #'stx:libwidg3'    "ClockView - referenced by TabItem class>>test "
3378
5397503d7280 automatic checkIn
ab
parents: 3273
diff changeset
    73
        #'stx:goodies/refactoryBrowser/parser'    "RBParser - referenced by DoWhatIMeanSupport class>>findNodeForInterval:in: "
5397503d7280 automatic checkIn
ab
parents: 3273
diff changeset
    74
        #'stx:libcomp'    "Parser - referenced by DoWhatIMeanSupport class>>codeCompletionForMessage:inClass:codeView: "
5397503d7280 automatic checkIn
ab
parents: 3273
diff changeset
    75
        #'stx:libhtml'    "HTMLDocumentView - referenced by LicenceBox>>initialize "
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    76
        #'stx:goodies/refactoryBrowser/browser'    "RefactoryTyper - referenced by DoWhatIMeanSupport>>codeCompletionForMessage:inClass:instance:context:codeView:"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    77
        #'stx:libboss'    "ObsoleteObject - referenced by DoWhatIMeanSupport>>codeCompletionForMessage:inClass:instance:context:codeView:"
5251
4298cac3a4c0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4915
diff changeset
    78
        #'stx:libbasic3'    "SourceCodeManagerError - referenced by DoWhatIMeanSupport>>addClassesOfInstVarNamed:inClass:to:"
4298cac3a4c0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4915
diff changeset
    79
        #'stx:libjavascript'    "JavaScriptCompletionEngine - referenced by DoWhatIMeanSupport>>codeCompletionForJavascriptMethod:orClass:context:codeView:into:"
3232
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    80
    )
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    81
!
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    82
4179
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
    83
mandatoryPreRequisites
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    84
    "list packages which are mandatory as a prerequisite.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    85
     This are packages containing superclasses of my classes and classes which
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    86
     are extended by myself.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    87
     They are mandatory, because we need these packages as a prerequisite for loading and compiling.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    88
     This method is generated automatically,
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    89
     by searching along the inheritance chain of all of my classes."
3157
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
    90
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
    91
    ^ #(
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    92
        #'stx:libbasic'    "ActivityNotification - superclass of ProgressNotification"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    93
        #'stx:libbasic2'    "List - superclass of HierarchicalFileList"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    94
        #'stx:libview'    "Controller - superclass of LinkButtonController"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    95
        #'stx:libview2'    "ApplicationModel - superclass of AssistantApplication"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    96
        #'stx:libwidg'    "Button - superclass of ComboBoxButton"
4179
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
    97
    )
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
    98
!
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
    99
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   100
referencedPreRequisites
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   101
    "list packages which are a prerequisite, because they contain
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   102
     classes which are referenced by my classes.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   103
     We do not need these packages as a prerequisite for compiling or loading,
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   104
     however, a class from it may be referenced during execution and having it
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   105
     unloaded then may lead to a runtime doesNotUnderstand error, unless the caller
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   106
     includes explicit checks for the package being present.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   107
     This method is generated automatically,
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   108
     by searching all classes (and their packages) which are referenced by my classes."
4179
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   109
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   110
    ^ #(
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   111
        #'stx:libui'    "ComboBoxSpec - referenced by ComboBoxView>>specClass"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   112
    )
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   113
!
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   114
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   115
subProjects
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   116
    "list packages which are known as subprojects.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   117
     The generated makefile will enter those and make there as well.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   118
     However: they are not forced to be loaded when a package is loaded;
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   119
     for those, redefine requiredPrerequisites."
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   120
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   121
    ^ #(
3157
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
   122
    )
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
! !
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   125
!stx_libwidg2 class methodsFor:'description - compilation'!
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   126
3746
b74689ab5c60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   127
additionalBaseAddressDefinition_bc_dot_mak
b74689ab5c60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   128
    "this is an optional definition, which (if present) may speed up the dll-loading a little
b74689ab5c60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   129
     on win32 systems."
b74689ab5c60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   130
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   131
    ^ '
3163
84347d674072 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
   132
# see stdHeader_bc for LIBWIDG2_BASE
3746
b74689ab5c60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   133
LIB_BASE=$(LIBWIDG2_BASE)
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   134
'
4675
de4c87d0d088 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 4540
diff changeset
   135
!
de4c87d0d088 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 4540
diff changeset
   136
de4c87d0d088 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 4540
diff changeset
   137
stcWarningOptions
de4c87d0d088 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 4540
diff changeset
   138
    ^ '-warnNonStandard -warnUnused'
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   139
! !
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   140
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   141
!stx_libwidg2 class methodsFor:'description - contents'!
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   142
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   143
classNamesAndAttributes
3949
636df82ad7dd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3804
diff changeset
   144
    "lists the classes which are to be included in the project.
636df82ad7dd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3804
diff changeset
   145
     Each entry in the list may be: a single class-name (symbol),
636df82ad7dd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3804
diff changeset
   146
     or an array-literal consisting of class name and attributes.
636df82ad7dd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3804
diff changeset
   147
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
636df82ad7dd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3804
diff changeset
   148
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   149
    ^ #(
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   150
        "<className> or (<className> attributes...) in load order"
4743
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   151
        AbstractHierarchicalItem
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   152
        AssistantApplication
3113
03f88204678b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
   153
        CharacterSetView
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   154
        CheckBox
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   155
        ComboBoxButton
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   156
        ComboView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   157
        DSVColumnView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   158
        DSVLabelView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   159
        DataSetColumn
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   160
        DataSetLabel
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   161
        DataSetView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   162
        DoWhatIMeanSupport
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   163
        EnterBoxWithList
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   164
        ExtendedComboBox
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   165
        FilenameEditField
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   166
        FilenameEnterBox
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   167
        FilenameWidgetWithHistory
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   168
        GridBagConstraints
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   169
        GridBagLayoutInfo
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   170
        GridBagLayoutView
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   171
        HierarchicalDropTargetController
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   172
        HierarchicalList
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   173
        HierarchyNode
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   174
        ImageView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   175
        LabelledEnterField
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   176
        LicenceBox
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   177
        LinkButton
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   178
        LinkButtonController
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   179
        ListEntry
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   180
        ListModelView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   181
        MenuPanel
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   182
        MultipleItemSelectionWidget
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   183
        NoteBookView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   184
        PrintAbortDialog
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   185
        PrintingDialog
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   186
        ProgressIndicator
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   187
        ProgressNotification
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   188
        SelectionInHierarchy
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   189
        SelectionInTree
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   190
        SelectionInTreeView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   191
        Separator
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   192
        Slider
4009
fcf2671777ea automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4001
diff changeset
   193
        SteppingSlider
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   194
        SubCanvas
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   195
        SyncedMultiColumnTextView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   196
        TabItem
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   197
        TabSpecRuler
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   198
        TabWidget
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   199
        TabulatorSpecification
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   200
        TerminalView
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   201
        TextBox
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   202
        ThumbWheel
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   203
        TreeItem
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   204
        UpDownButton
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   205
        ViewScroller
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   206
        #'stx_libwidg2'
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   207
        ColorMenu
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   208
        ComboBoxView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   209
        ComboListView
4743
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   210
        CompactHierarchicalItem
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   211
        FileSelectionItem
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   212
        FileSelectionTree
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   213
        FilenameWidgetWithoutHistory
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   214
        FontMenu
4743
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   215
        HierarchicalItem
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   216
        HorizontalSlider
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   217
        HorizontalSteppingSlider
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   218
        ImageEditView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   219
        ModelListEntry
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   220
        MultiColListEntry
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   221
        PluggableHierarchicalList
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   222
        SelectionInListModelView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   223
        TabView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   224
        ThreeColumnTextView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   225
        TreeItemWithImage
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   226
        TriggerBox
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   227
        TwoColumnTextView
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   228
        VT100TerminalView
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   229
        FilenameComboBoxView
4743
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   230
        HierarchicalFileList
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   231
        HierarchicalItemWithLabel
5299
2aa8c9d76639 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5251
diff changeset
   232
        HierarchicalItemWithValue
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   233
        HierarchicalListView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   234
        LabelAndIcon
4743
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   235
        HierarchicalItemWithLabelAndIcon
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   236
        LabelAndTwoIcons
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   237
        HierarchicalItemWithLabelAndIconAndValue
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   238
        (ColoredListEntry autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   239
        (ComboBrowseView autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   240
        (ComboUpDownView autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   241
        (GraphColumn autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   242
        (GraphColumnView autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   243
        (GraphColumnView2D autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   244
        (GraphColumnView2DSpec autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   245
        (GraphColumnView3D autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   246
        (GraphColumnView3DSpec autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   247
        (GraphColumnViewSpec autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   248
        (HorizontalScale autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   249
        (ImageSelectionBox autoload)
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   250
        (KeyboardView autoload)
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   251
        (ListEditor autoload)
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   252
        (MenuButton autoload)
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   253
        (MotionButton autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   254
        (NoteBookFrameView autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   255
        (ParagraphSpecification autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   256
        (RoundButton autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   257
        (Ruler autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   258
        (Scale autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   259
        (SelectionInHierarchyView autoload)
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   260
        (StrokeView autoload)
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   261
        (TabControl autoload)
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   262
        (TextRuler autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   263
        (VT52TerminalView autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   264
        (VerticalRuler autoload)
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   265
    )
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   266
!
4009
fcf2671777ea automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4001
diff changeset
   267
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   268
extensionMethodNames
5251
4298cac3a4c0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4915
diff changeset
   269
    "lists the extension methods which are to be included in the project.
4298cac3a4c0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4915
diff changeset
   270
     Entries are 2-element array literals, consisting of class-name and selector.
4298cac3a4c0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4915
diff changeset
   271
     A correponding method with real names must be present in my concrete subclasses
4298cac3a4c0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4915
diff changeset
   272
     if it has extensions."
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   273
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   274
    ^ #(
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   275
    )
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   276
! !
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   277
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   278
!stx_libwidg2 class methodsFor:'description - project information'!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
companyName
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   281
    "Return a companyname which will appear in <lib>.rc"
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   282
5338
69d86c0154b7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5299
diff changeset
   283
    ^ 'Claus Gittinger / eXept Software AG'
69d86c0154b7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5299
diff changeset
   284
69d86c0154b7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5299
diff changeset
   285
    "Modified: / 18-11-2016 / 11:47:45 / cg"
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   286
!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
description
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   289
    "Return a description string which will appear in nt.def / bc.def"
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   290
3029
20769e7a1aea comments
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
   291
    ^ 'Smalltalk/X Additional Widgets'
20769e7a1aea comments
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
   292
!
20769e7a1aea comments
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
   293
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   294
legalCopyright
3753
5ea9411aaac8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3746
diff changeset
   295
    "Return a copyright string which will appear in <lib>.rc"
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   296
5340
eae7af4a21e0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5339
diff changeset
   297
    ^ 'Copyright Claus Gittinger 1988\nCopyright eXept Software AG 2012'
3273
8afdbf216baa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   298
5340
eae7af4a21e0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5339
diff changeset
   299
    "Modified: / 18-11-2016 / 12:19:25 / cg"
4179
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   300
!
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   301
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   302
productName
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   303
    "Return a product name which will appear in <lib>.rc"
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   304
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   305
    ^ 'Smalltalk/X'
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   306
! !
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   307
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   308
!stx_libwidg2 class methodsFor:'documentation'!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   309
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   310
version
4792
788a6e771cb6 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 4743
diff changeset
   311
    ^ '$Header$'
3793
9cd03fa8e8f2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3753
diff changeset
   312
!
9cd03fa8e8f2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3753
diff changeset
   313
9cd03fa8e8f2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3753
diff changeset
   314
version_CVS
4792
788a6e771cb6 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 4743
diff changeset
   315
    ^ '$Header$'
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   316
!
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   317
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   318
version_HG
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   319
    ^ '$Changeset: <not expanded> $'
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   320
! !
4179
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   321