stx_libwidg2.st
author Claus Gittinger <cg@exept.de>
Thu, 05 Mar 2009 22:21:34 +0100
changeset 3658 0b1d247c145c
parent 3631 7e4710bc1992
child 3691 04859d641443
permissions -rw-r--r--
automatic checkIn
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
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libwidg2
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
3209
9b7153bf5386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3163
diff changeset
    18
	category:'* Projects & Packages *'
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
3028
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    21
!stx_libwidg2 class methodsFor:'documentation'!
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    22
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    23
copyright
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 (c) 2006 by eXept Software AG
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    26
              All Rights Reserved
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    27
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    28
 This software is furnished under a license and may be used
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    29
 only in accordance with the terms of that license and with the
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    31
 be provided or otherwise made available to, or used by, any
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    32
 other person.  No title to or ownership of the software is
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    33
 hereby transferred.
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    34
"
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    35
!
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    36
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    37
documentation
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    38
"
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    39
    Build-Information for creation of the st/x standard library: stx_libwidg.
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    40
    This library contains additional gui components (widgets).
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    41
"
c4aaaac3bbc0 comments
Claus Gittinger <cg@exept.de>
parents: 3027
diff changeset
    42
! !
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!stx_libwidg2 class methodsFor:'description'!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
3027
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    46
additionalClassNamesAndAttributes
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    ^ #(
3014
777b22b08f07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3002
diff changeset
    48
        "/ <className> or (<className> attributes...)
777b22b08f07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3002
diff changeset
    49
        'LicenceBox'
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
    )
3014
777b22b08f07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3002
diff changeset
    51
3027
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    52
    "Created: / 21-08-2006 / 19:52:03 / cg"
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    53
!
6bd1a676128a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
    54
3232
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    55
excludedFromPreRequisites
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    56
    ^ #(
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    57
        #'stx:clients/Demos'    "CodingExamples_GUI::GUIDemoNoteBook - referenced by TabItem class>>test "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    58
        #'stx:goodies'    "IdentityDictionaryWithDefault - referenced by GridBagLayoutInfo>>initialize "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    59
        #'stx:goodies/postscript'    "PSGraphicsContext - referenced by ImageEditView>>printWithMagnification: "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    60
        #'stx:libtool'    "FileBrowser - referenced by HierarchicalFileList::Directory>>icon "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    61
        #'stx:libtool2'    "ImageEditor - referenced by ImageEditView class>>classResources "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    62
        #'stx:libwidg3'    "ClockView - referenced by TabItem class>>test "
3378
5397503d7280 automatic checkIn
ab
parents: 3273
diff changeset
    63
        #'stx:goodies/refactoryBrowser/parser'    "RBParser - referenced by DoWhatIMeanSupport class>>findNodeForInterval:in: "
5397503d7280 automatic checkIn
ab
parents: 3273
diff changeset
    64
        #'stx:libcomp'    "Parser - referenced by DoWhatIMeanSupport class>>codeCompletionForMessage:inClass:codeView: "
5397503d7280 automatic checkIn
ab
parents: 3273
diff changeset
    65
        #'stx:libhtml'    "HTMLDocumentView - referenced by LicenceBox>>initialize "
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
!
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    68
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
extensionMethodNames
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
    ^ #(
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
    )
3157
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
    72
!
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
    73
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
    74
preRequisites
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
    75
    ^ #(
3232
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    76
        #'stx:libbasic'    "Object - superclass of ColorMenu "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    77
        #'stx:libbasic2'    "List - superclass of HierarchicalFileList "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    78
        #'stx:libui'    "DataSetColumnSpec - referenced by DSVColumnView>>setColumnDescriptors: "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    79
        #'stx:libview'    "GraphicsMedium - superclass of ImageView "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    80
        #'stx:libview2'    "Model - superclass of TabItem "
877e0098f3b1 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3209
diff changeset
    81
        #'stx:libwidg'    "DialogBox - superclass of EnterBoxWithList "
3157
30525b17eaf6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3120
diff changeset
    82
    )
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
! !
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
    85
!stx_libwidg2 class methodsFor:'description - compilation'!
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
    86
3163
84347d674072 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
    87
additionalDefinitions_bc_dot_mak
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
    88
    ^ '
3163
84347d674072 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 3157
diff changeset
    89
# see stdHeader_bc for LIBWIDG2_BASE
3061
2000d160a60d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3055
diff changeset
    90
# LIBWIDG2_BASE   =0x64500000
3055
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
    91
LIB_BASE_LD_ARG=-b:$(LIBWIDG2_BASE)
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
    92
'
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
    93
! !
ac72fe0af5e7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3046
diff changeset
    94
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
    95
!stx_libwidg2 class methodsFor:'description - contents'!
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
    96
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
    97
classNamesAndAttributes
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
    98
    ^ #(
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
    99
        "<className> or (<className> attributes...) in load order"
3113
03f88204678b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
   100
        CharacterSetView
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   101
        CheckBox
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   102
        ColorMenu
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   103
        (ColoredListEntry autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   104
        ComboBoxButton
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   105
        ComboBoxView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   106
        (ComboBrowseView autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   107
        ComboListView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   108
        (ComboUpDownView autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   109
        ComboView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   110
        DSVColumnView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   111
        DSVLabelView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   112
        DataSetColumn
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   113
        DataSetLabel
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   114
        DataSetView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   115
        DoWhatIMeanSupport
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   116
        EnterBoxWithList
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   117
        ExtendedComboBox
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   118
        FileSelectionItem
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   119
        FileSelectionTree
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   120
        FilenameComboBoxView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   121
        FilenameEditField
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   122
        FilenameEnterBox
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   123
        FontMenu
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   124
        (GraphColumn autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   125
        (GraphColumnView autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   126
        (GraphColumnView2D autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   127
        (GraphColumnView2DSpec autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   128
        (GraphColumnView3D autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   129
        (GraphColumnView3DSpec autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   130
        (GraphColumnViewSpec autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   131
        GridBagConstraints
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   132
        GridBagLayoutInfo
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   133
        GridBagLayoutView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   134
        HierarchicalFileList
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   135
        HierarchicalItem
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   136
        HierarchicalItemWithLabel
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   137
        HierarchicalItemWithLabelAndIcon
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   138
        HierarchicalItemWithLabelAndIconAndValue
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   139
        HierarchicalList
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   140
        HierarchicalListView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   141
        HierarchyNode
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   142
        (HorizontalScale autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   143
        HorizontalSlider
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   144
        (HorizontalSteppingSlider autoload)
3103
1eea513b2c38 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
   145
        ImageEditView
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   146
        (ImageSelectionBox autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   147
        ImageView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   148
        LabelAndIcon
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   149
        LabelledEnterField
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   150
        (ListEditor autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   151
        ListEntry
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   152
        ListModelView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   153
        (MenuButton autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   154
        MenuPanel
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   155
        ModelListEntry
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   156
        (MotionButton autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   157
        MultiColListEntry
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   158
        MultipleItemSelectionWidget
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   159
        (NoteBookFrameView autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   160
        NoteBookView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   161
        (ParagraphSpecification autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   162
        PrintAbortDialog
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   163
        PrintingDialog
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   164
        ProgressIndicator
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   165
        (RoundButton autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   166
        (Ruler autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   167
        (Scale autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   168
        SelectionInHierarchy
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   169
        (SelectionInHierarchyView autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   170
        SelectionInListModelView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   171
        SelectionInTree
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   172
        SelectionInTreeView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   173
        Separator
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   174
        Slider
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   175
        (SteppingSlider autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   176
        (StrokeView autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   177
        SubCanvas
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   178
        SyncedMultiColumnTextView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   179
        (TabControl autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   180
        TabItem
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   181
        TabSpecRuler
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   182
        TabView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   183
        TabWidget
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   184
        TabulatorSpecification
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   185
        (TerminalView autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   186
        TextBox
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   187
        (TextRuler autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   188
        (ThreeColumnTextView autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   189
        TreeItem
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   190
        TreeItemWithImage
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   191
        TwoColumnTextView
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   192
        UpDownButton
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   193
        (VT100TerminalView autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   194
        (VT52TerminalView autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   195
        (VerticalRuler autoload)
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   196
        ViewScroller
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   197
        #'stx_libwidg2'
3260
0819f30e7f58 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
   198
        FilenameWidgetWithHistory
3378
5397503d7280 automatic checkIn
ab
parents: 3273
diff changeset
   199
        HierarchicalDropTargetController
3540
7a3d1f0e54a1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
   200
        (ProgressNotification autoload)
3658
0b1d247c145c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3631
diff changeset
   201
        LinkButton
0b1d247c145c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3631
diff changeset
   202
        LinkButtonController
3096
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   203
    )
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   204
! !
8c7876c528e7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
   205
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   206
!stx_libwidg2 class methodsFor:'description - project information'!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   207
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   208
companyName
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   209
    "Return a companyname which will appear in <lib>.rc"
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   210
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   211
    ^ 'eXept Software AG'
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   212
!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   213
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   214
description
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   215
    "Return a description string which will appear in nt.def / bc.def"
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   216
3029
20769e7a1aea comments
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
   217
    ^ 'Smalltalk/X Additional Widgets'
20769e7a1aea comments
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
   218
!
20769e7a1aea comments
Claus Gittinger <cg@exept.de>
parents: 3028
diff changeset
   219
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
legalCopyright
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
    "Return copyright string which will appear in <lib>.rc"
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
3631
7e4710bc1992 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3540
diff changeset
   223
    ^ 'Copyright Claus Gittinger 1988-2009\nCopyright eXept Software AG 1998-2009'
3273
8afdbf216baa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   224
8afdbf216baa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   225
    "Modified: / 08-11-2007 / 16:59:28 / cg"
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
! !
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   228
!stx_libwidg2 class methodsFor:'documentation'!
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   229
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   230
version
3658
0b1d247c145c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3631
diff changeset
   231
    ^ '$Header: /cvs/stx/stx/libwidg2/stx_libwidg2.st,v 1.32 2009-03-05 21:21:34 cg Exp $'
3002
47c24ac4756a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
! !