stx_libwidg.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 26 Sep 2013 19:32:55 +0200
changeset 4793 68401d3e41f6
parent 4663 cd4d1a3e58b3
child 4800 72484439b233
permissions -rw-r--r--
Completion support refactored: - created an abstract superclass to ease customization of completion support. - stx_libwidg class>>classNamesAndAttributes fixed so classes are listed in load order and package checker does not report any issues.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3341
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     1
"
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
4109
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
     3
	      All Rights Reserved
3341
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     4
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     5
 This software is furnished under a license and may be used
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     6
 only in accordance with the terms of that license and with the
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     8
 be provided or otherwise made available to, or used by, any
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     9
 other person.  No title to or ownership of the software is
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    10
 hereby transferred.
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    11
"
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libwidg' }"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libwidg
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
3472
3754048433f7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    18
	category:'* Projects & Packages *'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
3341
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    21
!stx_libwidg class methodsFor:'documentation'!
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    22
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    23
copyright
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    24
"
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
4109
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    26
	      All Rights Reserved
3341
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    27
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    28
 This software is furnished under a license and may be used
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    29
 only in accordance with the terms of that license and with the
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    31
 be provided or otherwise made available to, or used by, any
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    32
 other person.  No title to or ownership of the software is
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    33
 hereby transferred.
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    34
"
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    35
!
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    36
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    37
documentation
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    38
"
4465
6152a06b3328 comment
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
    39
    Build- and package information for creation of the st/x standard library: stx_libwidg.
3341
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    40
    This library contains elementary gui components (widgets).
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    41
"
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    42
! !
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!stx_libwidg class methodsFor:'description'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    46
excludedFromPreRequisites
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    ^ #(
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    48
        #'stx:libjavascript'    "JavaScriptParser - referenced by Workspace>>browseImplementorsOfIt "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    49
        #'stx:goodies/communication'    "HTTPInterface - referenced by EditTextView>>editMenu "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    50
        #'stx:goodies/soap'    "SOAP::SoapImplError - referenced by EditTextView>>googleSpellingSuggestion "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    51
        #'stx:goodies/soap/examples'    "SOAP::BabelFishClient - referenced by EditTextView>>babelFishTranslate: "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    52
        #'stx:libcomp'    "Parser - referenced by EditTextView>>executeKeyboardMacro: "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    53
        #'stx:libhtml'    "HTMLDocumentView - referenced by DialogBox>>addHelpButtonFor: "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    54
        #'stx:libtool'    "SystemBrowser - referenced by Workspace>>browseImplementorsOfIt "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    55
        #'stx:libwidg2'    "FilenameEditField - referenced by DialogBox>>addFilenameInputFieldOn:in:tabable: "
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    )
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    59
mandatoryPreRequisites
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    60
    "list all required mandatory packages.
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    61
     Packages are mandatory, if they contain superclasses of the package's classes
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    62
     or classes which are extended by this package.
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    63
     This list can be maintained manually or (better) generated and
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    64
     updated by scanning the superclass hierarchies
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    65
     (the browser has a menu function for that)"
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    66
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
    ^ #(
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    68
        #'stx:libbasic'    "Autoload - superclass of ListViewController "
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    69
        #'stx:libview'    "Controller - superclass of ButtonController "
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    70
        #'stx:libview2'    "Model - superclass of MultiSelectionInList "
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
    )
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    72
!
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    73
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    74
referencedPreRequisites
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    75
    "list all packages containing classes referenced by the packages's members.
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    76
     This list can be maintained manually or (better) generated and
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    77
     updated by looking for global variable accesses
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    78
     (the browser has a menu function for that)
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    79
     However, often too much is found, and you may want to explicitely
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    80
     exclude individual packages in the #excludedFromPreRequisites method."
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    81
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    82
    ^ #(
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    83
        #'stx:libbasic2'    "ActorStream - referenced by TextCollector>>initialize "
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    84
        #'stx:libbasic3'    "MessageTally - referenced by Workspace>>spyOnIt "
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    85
        #'stx:libui'    "ActionButtonSpec - referenced by Button>>specClass "
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    86
    )
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    87
!
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    88
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    89
subProjects
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    90
    "list packages which are known as subprojects.
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    91
     The generated makefile will enter those and make there as well.
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    92
     However: they are not forced to be loaded when a package is loaded;
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    93
     for those, redefine requiredPrerequisites"
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    94
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    95
    ^ #(
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    96
    )
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
! !
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
    99
!stx_libwidg class methodsFor:'description - compilation'!
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   100
3922
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
   101
additionalBaseAddressDefinition_bc_dot_mak
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
   102
    "this is an optional definition, which (if present) may speed up the dll-loading a little
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
   103
     on win32 systems."
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
   104
3374
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   105
    ^ '
3435
eeca718e5c33 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 3391
diff changeset
   106
# see stdHeader_bc for LIBWIDG_BASE
3922
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
   107
LIB_BASE=$(LIBWIDG_BASE)
3374
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   108
'
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   109
!
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   110
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   111
stcOptimizationOptions
4084
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   112
    ^ '+optinline'
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   113
! !
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   114
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   115
!stx_libwidg class methodsFor:'description - contents'!
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   116
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   117
classNamesAndAttributes
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   118
    "lists the classes which are to be included in the project.
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   119
     Each entry in the list may be: a single class-name (symbol),
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   120
     or an array-literal consisting of class name and attributes.
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   121
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   122
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   123
    ^ #(
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   124
        "<className> or (<className> attributes...) in load order"
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   125
        ArrowButton
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   126
        Button
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   127
        ButtonController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   128
        CheckLabel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   129
        CheckToggle
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   130
        ClickMenuView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   131
        CodeView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   132
        DialogBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   133
        EditField
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   134
        EditTextView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   135
        EnterBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   136
        EnterBox2
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   137
        EnterFieldGroup
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   138
        FileSaveBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   139
        FileSelectionBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   140
        FileSelectionList
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   141
        FontPanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   142
        FramedBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   143
        HVScrollableView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   144
        HorizontalMiniScroller
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   145
        HorizontalPanelView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   146
        HorizontalScrollBar
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   147
        HorizontalScroller
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   148
        InfoBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   149
        Label
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   150
        ListSelectionBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   151
        ListView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   152
        (ListViewController autoload)
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   153
        MenuView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   154
        MiniScroller
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   155
        MultiSelectionInList
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   156
        ObjectView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   157
        OptionBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   158
        PanelView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   159
        PopUpList
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   160
        PopUpListController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   161
        PopUpMenu
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   162
        PullDownMenu
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   163
        RadioButton
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   164
        RadioButtonController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   165
        RadioButtonGroup
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   166
        ScrollBar
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   167
        ScrollableView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   168
        Scroller
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   169
        SelectionInList
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   170
        SelectionInListView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   171
        SequenceView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   172
        TextCollector
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   173
        TextView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   174
        Toggle
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   175
        ToggleController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   176
        VariableHorizontalPanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   177
        VariableHorizontalPanelController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   178
        VariablePanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   179
        VariablePanelController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   180
        VariableVerticalPanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   181
        VariableVerticalPanelController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   182
        VerticalPanelView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   183
        WarningBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   184
        Workspace
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   185
        YesNoBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   186
        #'stx_libwidg'
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   187
        MultiColumnPanelView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   188
        GenericToolbarIconLibrary
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   189
        XPToolbarIconLibrary
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   190
        VistaToolbarIconLibrary
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   191
        MenuEvent
4520
c199ec1f7d7b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4465
diff changeset
   192
        Windows8ToolbarIconLibrary
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
   193
        DialogConfirmationRequest
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   194
    )
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   195
!
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   196
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   197
extensionMethodNames
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   198
    "lists the extension methods which are to be included in the project.
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   199
     Entries are 2-element array literals, consisting of class-name and selector."
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   200
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   201
    ^ #(
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   202
    )
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   203
! !
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   204
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   205
!stx_libwidg class methodsFor:'description - project information'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   206
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   207
applicationIconFileName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   208
    "Return the name (without suffix) of an icon-file (the app's icon); will be included in the rc-resource file"
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   209
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   210
    ^ nil
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   211
    "/ ^ self applicationName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   212
!
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   213
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   214
companyName
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   215
    "Return a companyname which will appear in <lib>.rc"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   216
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   217
    ^ 'eXept Software AG'
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   218
!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   219
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
description
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
    "Return a description string which will appear in nt.def / bc.def"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
3342
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   223
    ^ 'Smalltalk/X Elementary Widgets'
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   224
!
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   225
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
legalCopyright
3939
70c39cad8959 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3922
diff changeset
   227
    "Return a copyright string which will appear in <lib>.rc"
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   228
4431
3f6526fc3b74 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
   229
    ^ 'Copyright Claus Gittinger 1988-2012\nCopyright eXept Software AG 1998-2012'
3513
83bb6dbd0a97 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3512
diff changeset
   230
4431
3f6526fc3b74 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
   231
    "Modified: / 18-07-2012 / 19:12:14 / cg"
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   232
!
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   233
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   234
productName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   235
    "Return a product name which will appear in <lib>.rc"
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   236
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   237
    ^ 'Smalltalk/X'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   238
! !
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   239
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   240
!stx_libwidg class methodsFor:'documentation'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   241
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   242
version
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
   243
    ^ '$Header: /cvs/stx/stx/libwidg/stx_libwidg.st,v 1.34 2013-07-29 07:47:53 cg Exp $'
4084
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   244
!
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   245
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   246
version_CVS
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
   247
    ^ '$Header: /cvs/stx/stx/libwidg/stx_libwidg.st,v 1.34 2013-07-29 07:47:53 cg Exp $'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   248
! !
4520
c199ec1f7d7b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4465
diff changeset
   249