stx_libwidg.st
author Claus Gittinger <cg@exept.de>
Mon, 01 Dec 2014 23:00:48 +0100
changeset 5195 26bf54ff0b45
parent 5165 840cd63c9788
child 5243 cbd28c5f47ea
permissions -rw-r--r--
class: SelectionInListView comment/format in: #drawVisibleLineSelected:with:and:
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'
5151
dff9b289c195 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4837
diff changeset
   113
!
dff9b289c195 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4837
diff changeset
   114
dff9b289c195 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4837
diff changeset
   115
stcWarningOptions
dff9b289c195 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4837
diff changeset
   116
    ^ '-warnNonStandard -warnUnused'
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   117
! !
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   118
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   119
!stx_libwidg class methodsFor:'description - contents'!
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   120
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   121
classNamesAndAttributes
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   122
    "lists the classes which are to be included in the project.
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   123
     Each entry in the list may be: a single class-name (symbol),
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   124
     or an array-literal consisting of class name and attributes.
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   125
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   126
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   127
    ^ #(
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   128
        "<className> or (<className> attributes...) in load order"
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   129
        ButtonController
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   130
        DialogBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   131
        EditTextViewCompletionSupport
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   132
        EnterFieldGroup
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   133
        FramedBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   134
        GenericToolbarIconLibrary
4800
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   135
        Label
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   136
        ListView
4837
ac279fb76bb0 Make ListViewController compiled instead of autoloaded
Stefan Vogel <sv@exept.de>
parents: 4800
diff changeset
   137
        ListViewController
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   138
        MenuEvent
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   139
        ObjectView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   140
        PanelView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   141
        PopUpMenu
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   142
        PullDownMenu
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   143
        RadioButtonGroup
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   144
        ScrollBar
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   145
        ScrollableView
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   146
        Scroller
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   147
        SelectionInList
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   148
        VariablePanel
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   149
        VariablePanelController
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   150
        #'stx_libwidg'
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   151
        Button
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   152
        CheckLabel
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   153
        EnterBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   154
        FontPanel
4800
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   155
        HVScrollableView
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   156
        HorizontalPanelView
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   157
        HorizontalScrollBar
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   158
        HorizontalScroller
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   159
        InfoBox
4800
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   160
        MiniScroller
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   161
        MultiColumnPanelView
4800
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   162
        MultiSelectionInList
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   163
        OptionBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   164
        PopUpListController
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   165
        SelectionInListView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   166
        SequenceView
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   167
        TextView
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   168
        ToggleController
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   169
        VariableHorizontalPanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   170
        VariableHorizontalPanelController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   171
        VariableVerticalPanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   172
        VariableVerticalPanelController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   173
        VerticalPanelView
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   174
        WorkspaceCompletionSupport
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   175
        XPToolbarIconLibrary
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   176
        ArrowButton
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   177
        EditTextView
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   178
        EnterBox2
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   179
        FileSelectionList
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   180
        HorizontalMiniScroller
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   181
        ListSelectionBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   182
        (MacOSXToolbarIconLibrary autoload)
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   183
        MenuView
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   184
        PopUpList
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   185
        RadioButtonController
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   186
        Toggle
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   187
        VistaToolbarIconLibrary
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   188
        WarningBox
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   189
        CheckToggle
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   190
        ClickMenuView
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   191
        EditField
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   192
        FileSelectionBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   193
        RadioButton
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   194
        TextCollector
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   195
        Windows8ToolbarIconLibrary
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   196
        YesNoBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   197
        FileSaveBox
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   198
        Workspace
4800
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   199
        CodeView
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   200
    )
4529
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
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   203
extensionMethodNames
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   204
    "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
   205
     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
   206
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   207
    ^ #(
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   208
    )
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   209
! !
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   210
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   211
!stx_libwidg class methodsFor:'description - project information'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   212
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   213
applicationIconFileName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   214
    "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
   215
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   216
    ^ nil
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   217
    "/ ^ self applicationName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   218
!
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   219
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
companyName
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
    "Return a companyname which will appear in <lib>.rc"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   223
    ^ 'eXept Software AG'
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   224
!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
description
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
    "Return a description string which will appear in nt.def / bc.def"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   228
3342
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   229
    ^ 'Smalltalk/X Elementary Widgets'
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   230
!
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   231
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
legalCopyright
3939
70c39cad8959 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3922
diff changeset
   233
    "Return a copyright string which will appear in <lib>.rc"
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
4431
3f6526fc3b74 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
   235
    ^ '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
   236
4431
3f6526fc3b74 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
   237
    "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
   238
!
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   239
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   240
productName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   241
    "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
   242
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   243
    ^ 'Smalltalk/X'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   244
! !
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   245
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   246
!stx_libwidg class methodsFor:'documentation'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   247
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   248
version
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   249
    ^ '$Header: /cvs/stx/stx/libwidg/stx_libwidg.st,v 1.38 2014-11-22 22:38:47 cg Exp $'
4084
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   250
!
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   251
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   252
version_CVS
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   253
    ^ '$Header: /cvs/stx/stx/libwidg/stx_libwidg.st,v 1.38 2014-11-22 22:38:47 cg Exp $'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   254
! !
4520
c199ec1f7d7b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4465
diff changeset
   255