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