stx_libwidg2.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 16 Jan 2016 10:41:12 +0000
branchjv
changeset 4930 7a6e813d8d17
parent 4866 d255ac4682cb
parent 4915 f672aae7a7ac
child 5260 c36548c31c27
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3028
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
     1
"
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
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
"
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    27
 COPYRIGHT (c) 2006 by eXept Software AG
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.
3028
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    47
"
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    48
! !
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
!stx_libwidg2 class methodsFor:'description'!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
3027
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    52
additionalClassNamesAndAttributes
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    ^ #(
3014
777b22b08f07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3002
diff changeset
    54
        "/ <className> or (<className> attributes...)
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
3027
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    57
    "Created: / 21-08-2006 / 19:52:03 / cg"
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    58
!
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    59
3232
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    60
excludedFromPreRequisites
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
    61
    "list all packages which should be ignored in the automatic
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
    62
     preRequisites scan. See #preRequisites for more."
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
    63
3232
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    64
    ^ #(
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    65
        #'stx:clients/Demos'    "CodingExamples_GUI::GUIDemoNoteBook - referenced by TabItem class>>test "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    66
        #'stx:goodies'    "IdentityDictionaryWithDefault - referenced by GridBagLayoutInfo>>initialize "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    67
        #'stx:goodies/postscript'    "PSGraphicsContext - referenced by ImageEditView>>printWithMagnification: "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    68
        #'stx:libtool'    "FileBrowser - referenced by HierarchicalFileList::Directory>>icon "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    69
        #'stx:libtool2'    "ImageEditor - referenced by ImageEditView class>>classResources "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    70
        #'stx:libwidg3'    "ClockView - referenced by TabItem class>>test "
3378
5397503d7280 automatic checkIn
ab
parents: 3273
diff changeset
    71
        #'stx:goodies/refactoryBrowser/parser'    "RBParser - referenced by DoWhatIMeanSupport class>>findNodeForInterval:in: "
5397503d7280 automatic checkIn
ab
parents: 3273
diff changeset
    72
        #'stx:libcomp'    "Parser - referenced by DoWhatIMeanSupport class>>codeCompletionForMessage:inClass:codeView: "
5397503d7280 automatic checkIn
ab
parents: 3273
diff changeset
    73
        #'stx:libhtml'    "HTMLDocumentView - referenced by LicenceBox>>initialize "
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    74
        #'stx:goodies/refactoryBrowser/browser'    "RefactoryTyper - referenced by DoWhatIMeanSupport>>codeCompletionForMessage:inClass:instance:context:codeView:"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    75
        #'stx:libboss'    "ObsoleteObject - referenced by DoWhatIMeanSupport>>codeCompletionForMessage:inClass:instance:context:codeView:"
3232
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    76
    )
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    77
!
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    78
4179
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
    79
mandatoryPreRequisites
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    80
    "list packages which are mandatory as a prerequisite.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    81
     This are packages containing superclasses of my classes and classes which
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    82
     are extended by myself.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    83
     They are mandatory, because we need these packages as a prerequisite for loading and compiling.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    84
     This method is generated automatically,
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    85
     by searching along the inheritance chain of all of my classes."
3157
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
    86
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
    87
    ^ #(
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    88
        #'stx:libbasic'    "ActivityNotification - superclass of ProgressNotification"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    89
        #'stx:libbasic2'    "List - superclass of HierarchicalFileList"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    90
        #'stx:libview'    "Controller - superclass of LinkButtonController"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    91
        #'stx:libview2'    "ApplicationModel - superclass of AssistantApplication"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    92
        #'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
    93
    )
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
    94
!
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
    95
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
    96
referencedPreRequisites
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    97
    "list packages which are a prerequisite, because they contain
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    98
     classes which are referenced by my classes.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
    99
     We do not need these packages as a prerequisite for compiling or loading,
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   100
     however, a class from it may be referenced during execution and having it
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   101
     unloaded then may lead to a runtime doesNotUnderstand error, unless the caller
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   102
     includes explicit checks for the package being present.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   103
     This method is generated automatically,
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   104
     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
   105
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   106
    ^ #(
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   107
        #'stx:libui'    "ComboBoxSpec - referenced by ComboBoxView>>specClass"
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   108
    )
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   109
!
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   110
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   111
subProjects
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   112
    "list packages which are known as subprojects.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   113
     The generated makefile will enter those and make there as well.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   114
     However: they are not forced to be loaded when a package is loaded;
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   115
     for those, redefine requiredPrerequisites."
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   116
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   117
    ^ #(
3157
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
   118
    )
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
! !
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   121
!stx_libwidg2 class methodsFor:'description - compilation'!
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   122
3746
b74689ab5c60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   123
additionalBaseAddressDefinition_bc_dot_mak
b74689ab5c60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   124
    "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
   125
     on win32 systems."
b74689ab5c60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   126
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   127
    ^ '
3163
84347d674072 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
   128
# see stdHeader_bc for LIBWIDG2_BASE
3746
b74689ab5c60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
   129
LIB_BASE=$(LIBWIDG2_BASE)
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   130
'
4675
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
de4c87d0d088 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 4540
diff changeset
   133
stcWarningOptions
de4c87d0d088 class: SimpleView
Claus Gittinger <cg@exept.de>
parents: 4540
diff changeset
   134
    ^ '-warnNonStandard -warnUnused'
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   135
! !
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
   136
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   137
!stx_libwidg2 class methodsFor:'description - contents'!
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   138
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   139
classNamesAndAttributes
3949
636df82ad7dd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3804
diff changeset
   140
    "lists the classes which are to be included in the project.
636df82ad7dd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3804
diff changeset
   141
     Each entry in the list may be: a single class-name (symbol),
636df82ad7dd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3804
diff changeset
   142
     or an array-literal consisting of class name and attributes.
636df82ad7dd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3804
diff changeset
   143
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
636df82ad7dd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3804
diff changeset
   144
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   145
    ^ #(
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   146
        "<className> or (<className> attributes...) in load order"
4743
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   147
        AbstractHierarchicalItem
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   148
        AssistantApplication
3113
03f88204678b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
   149
        CharacterSetView
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   150
        CheckBox
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   151
        ComboBoxButton
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   152
        ComboView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   153
        DSVColumnView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   154
        DSVLabelView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   155
        DataSetColumn
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   156
        DataSetLabel
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   157
        DataSetView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   158
        DoWhatIMeanSupport
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   159
        EnterBoxWithList
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   160
        ExtendedComboBox
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   161
        FilenameEditField
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   162
        FilenameEnterBox
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   163
        FilenameWidgetWithHistory
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   164
        GridBagConstraints
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   165
        GridBagLayoutInfo
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   166
        GridBagLayoutView
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   167
        HierarchicalDropTargetController
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   168
        HierarchicalList
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   169
        HierarchyNode
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   170
        ImageView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   171
        LabelledEnterField
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   172
        LicenceBox
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   173
        LinkButton
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   174
        LinkButtonController
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   175
        ListEntry
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   176
        ListModelView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   177
        MenuPanel
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   178
        MultipleItemSelectionWidget
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   179
        NoteBookView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   180
        PrintAbortDialog
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   181
        PrintingDialog
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   182
        ProgressIndicator
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   183
        ProgressNotification
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   184
        SelectionInHierarchy
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   185
        SelectionInTree
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   186
        SelectionInTreeView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   187
        Separator
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   188
        Slider
4009
fcf2671777ea automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4001
diff changeset
   189
        SteppingSlider
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   190
        SubCanvas
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   191
        SyncedMultiColumnTextView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   192
        TabItem
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   193
        TabSpecRuler
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   194
        TabWidget
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   195
        TabulatorSpecification
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   196
        TerminalView
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   197
        TextBox
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   198
        ThumbWheel
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   199
        TreeItem
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   200
        UpDownButton
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   201
        ViewScroller
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   202
        #'stx_libwidg2'
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   203
        ColorMenu
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   204
        ComboBoxView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   205
        ComboListView
4743
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   206
        CompactHierarchicalItem
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   207
        FileSelectionItem
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   208
        FileSelectionTree
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   209
        FilenameWidgetWithoutHistory
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   210
        FontMenu
4743
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   211
        HierarchicalItem
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   212
        HorizontalSlider
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   213
        HorizontalSteppingSlider
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   214
        ImageEditView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   215
        ModelListEntry
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   216
        MultiColListEntry
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   217
        PluggableHierarchicalList
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   218
        SelectionInListModelView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   219
        TabView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   220
        ThreeColumnTextView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   221
        TreeItemWithImage
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   222
        TriggerBox
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   223
        TwoColumnTextView
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   224
        VT100TerminalView
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   225
        FilenameComboBoxView
4743
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   226
        HierarchicalFileList
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   227
        HierarchicalItemWithLabel
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   228
        HierarchicalListView
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   229
        LabelAndIcon
4743
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   230
        HierarchicalItemWithLabelAndIcon
8ff3613a4e99 new class: CompactHierarchicalItem
Claus Gittinger <cg@exept.de>
parents: 4713
diff changeset
   231
        LabelAndTwoIcons
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   232
        HierarchicalItemWithLabelAndIconAndValue
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   233
        (ColoredListEntry autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   234
        (ComboBrowseView autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   235
        (ComboUpDownView autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   236
        (GraphColumn autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   237
        (GraphColumnView autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   238
        (GraphColumnView2D autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   239
        (GraphColumnView2DSpec autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   240
        (GraphColumnView3D autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   241
        (GraphColumnView3DSpec autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   242
        (GraphColumnViewSpec autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   243
        (HorizontalScale autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   244
        (ImageSelectionBox autoload)
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   245
        (KeyboardView autoload)
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   246
        (ListEditor autoload)
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   247
        (MenuButton autoload)
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   248
        (MotionButton autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   249
        (NoteBookFrameView autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   250
        (ParagraphSpecification autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   251
        (RoundButton autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   252
        (Ruler autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   253
        (Scale autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   254
        (SelectionInHierarchyView autoload)
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   255
        (StrokeView autoload)
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   256
        (TabControl autoload)
4540
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   257
        (TextRuler autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   258
        (VT52TerminalView autoload)
Claus Gittinger <cg@exept.de>
parents: 4476
diff changeset
   259
        (VerticalRuler autoload)
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   260
    )
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   261
!
4009
fcf2671777ea automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4001
diff changeset
   262
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   263
extensionMethodNames
4915
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   264
    "list class/selector pairs of extensions.
Claus Gittinger <cg@exept.de>
parents: 4865
diff changeset
   265
     A correponding method with real names must be present in my concrete subclasses"
4017
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   266
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   267
    ^ #(
ac2b55f9a0ab automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 4009
diff changeset
   268
    )
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   269
! !
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   270
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   271
!stx_libwidg2 class methodsFor:'description - project information'!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
companyName
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
    "Return a companyname which will appear in <lib>.rc"
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   276
    ^ 'eXept Software AG'
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   277
!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   278
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
description
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
    "Return a description string which will appear in nt.def / bc.def"
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   281
3029
20769e7a1aea comments
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
   282
    ^ 'Smalltalk/X Additional Widgets'
20769e7a1aea comments
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
   283
!
20769e7a1aea comments
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
   284
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   285
legalCopyright
3753
5ea9411aaac8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3746
diff changeset
   286
    "Return a copyright string which will appear in <lib>.rc"
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
4792
788a6e771cb6 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 4743
diff changeset
   288
    ^ 'Copyright Claus Gittinger 1988-2012\nCopyright eXept Software AG 2012'
3273
8afdbf216baa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   289
4134
f04d9bc0b6bc changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   290
    "Modified: / 18-07-2012 / 19:12:17 / cg"
4179
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   291
!
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   292
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   293
productName
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   294
    "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
   295
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   296
    ^ 'Smalltalk/X'
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   297
! !
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   298
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   299
!stx_libwidg2 class methodsFor:'documentation'!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   300
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   301
version
4792
788a6e771cb6 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 4743
diff changeset
   302
    ^ '$Header$'
3793
9cd03fa8e8f2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3753
diff changeset
   303
!
9cd03fa8e8f2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3753
diff changeset
   304
9cd03fa8e8f2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3753
diff changeset
   305
version_CVS
4792
788a6e771cb6 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 4743
diff changeset
   306
    ^ '$Header$'
4770
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   307
!
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   308
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   309
version_HG
6634b540fea2 Added PluggableHierarchicalList to define ad-hoc tree models.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4769
diff changeset
   310
    ^ '$Changeset: <not expanded> $'
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   311
! !
4179
d033737183e6 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4147
diff changeset
   312