stx_libwidg.st
author Claus Gittinger <cg@exept.de>
Wed, 13 Mar 2013 17:05:12 +0100
changeset 4532 2d66114cfafc
parent 4529 ec75c190f714
child 4663 cd4d1a3e58b3
permissions -rw-r--r--
class: Expecco::LogSettingsApp productInstallDirBaseName is not needed for libs
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
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    65
     (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
    66
     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
    67
     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
    68
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
    ^ #(
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    70
        #'stx:libbasic'    "Notification - superclass of EditTextView::ExecutingMacroQuery "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    71
        #'stx:libview'    "TopView - superclass of YesNoBox "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    72
        #'stx:libview2'    "ValueHolder - superclass of MultiSelectionInList "
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
    )
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    74
!
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    75
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    76
referencedPreRequisites
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    77
    "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
    78
     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
    79
     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
    80
     (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
    81
     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
    82
     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
    83
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    84
    ^ #(
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    85
        #'stx:libbasic2'    "HostNameLookupError - referenced by EditTextView>>babelFishTranslate: "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    86
        #'stx:libbasic3'    "MessageTally - referenced by Workspace>>spyOnIt "
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    87
        #'stx:libui'    "ScrollableViewSpec - referenced by ScrollableView>>specClass "
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    88
    )
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
! !
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
    91
!stx_libwidg class methodsFor:'description - compilation'!
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
    92
3922
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
    93
additionalBaseAddressDefinition_bc_dot_mak
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
    94
    "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
    95
     on win32 systems."
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
    96
3374
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
    97
    ^ '
3435
eeca718e5c33 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 3391
diff changeset
    98
# see stdHeader_bc for LIBWIDG_BASE
3922
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
    99
LIB_BASE=$(LIBWIDG_BASE)
3374
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   100
'
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   101
!
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   102
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   103
stcOptimizationOptions
4084
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   104
    ^ '+optinline'
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   105
! !
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   106
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   107
!stx_libwidg class methodsFor:'description - contents'!
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   108
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   109
classNamesAndAttributes
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   110
    "lists the classes which are to be included in the project.
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   111
     Each entry in the list may be: a single class-name (symbol),
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   112
     or an array-literal consisting of class name and attributes.
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   113
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   114
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   115
    ^ #(
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   116
        "<className> or (<className> attributes...) in load order"
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   117
        ArrowButton
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   118
        Button
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   119
        ButtonController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   120
        CheckLabel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   121
        CheckToggle
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   122
        ClickMenuView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   123
        CodeView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   124
        DialogBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   125
        EditField
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   126
        EditTextView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   127
        EnterBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   128
        EnterBox2
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   129
        EnterFieldGroup
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   130
        FileSaveBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   131
        FileSelectionBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   132
        FileSelectionList
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   133
        FontPanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   134
        FramedBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   135
        HVScrollableView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   136
        HorizontalMiniScroller
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   137
        HorizontalPanelView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   138
        HorizontalScrollBar
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   139
        HorizontalScroller
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   140
        InfoBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   141
        Label
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   142
        ListSelectionBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   143
        ListView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   144
        (ListViewController autoload)
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   145
        MenuView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   146
        MiniScroller
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   147
        MultiSelectionInList
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   148
        ObjectView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   149
        OptionBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   150
        PanelView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   151
        PopUpList
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   152
        PopUpListController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   153
        PopUpMenu
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   154
        PullDownMenu
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   155
        RadioButton
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   156
        RadioButtonController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   157
        RadioButtonGroup
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   158
        ScrollBar
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   159
        ScrollableView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   160
        Scroller
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   161
        SelectionInList
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   162
        SelectionInListView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   163
        SequenceView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   164
        TextCollector
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   165
        TextView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   166
        Toggle
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   167
        ToggleController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   168
        VariableHorizontalPanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   169
        VariableHorizontalPanelController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   170
        VariablePanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   171
        VariablePanelController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   172
        VariableVerticalPanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   173
        VariableVerticalPanelController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   174
        VerticalPanelView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   175
        WarningBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   176
        Workspace
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   177
        YesNoBox
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   178
        #'stx_libwidg'
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   179
        MultiColumnPanelView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   180
        GenericToolbarIconLibrary
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   181
        XPToolbarIconLibrary
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   182
        VistaToolbarIconLibrary
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   183
        MenuEvent
4520
c199ec1f7d7b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4465
diff changeset
   184
        Windows8ToolbarIconLibrary
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   185
    )
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   186
!
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   187
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   188
extensionMethodNames
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   189
    "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
   190
     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
   191
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   192
    ^ #(
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   193
    )
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   194
! !
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   195
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
!stx_libwidg class methodsFor:'description - project information'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   198
applicationIconFileName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   199
    "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
   200
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   201
    ^ nil
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   202
    "/ ^ self applicationName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   203
!
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   204
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   205
companyName
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   206
    "Return a companyname which will appear in <lib>.rc"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   207
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   208
    ^ 'eXept Software AG'
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   209
!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   210
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   211
description
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   212
    "Return a description string which will appear in nt.def / bc.def"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   213
3342
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   214
    ^ 'Smalltalk/X Elementary Widgets'
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   215
!
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   216
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   217
legalCopyright
3939
70c39cad8959 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3922
diff changeset
   218
    "Return a copyright string which will appear in <lib>.rc"
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   219
4431
3f6526fc3b74 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
   220
    ^ '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
   221
4431
3f6526fc3b74 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
   222
    "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
   223
!
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   224
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   225
productName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   226
    "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
   227
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   228
    ^ 'Smalltalk/X'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   229
! !
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   230
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   231
!stx_libwidg class methodsFor:'documentation'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   233
version
4532
2d66114cfafc class: Expecco::LogSettingsApp
Claus Gittinger <cg@exept.de>
parents: 4529
diff changeset
   234
    ^ '$Header: /cvs/stx/stx/libwidg/stx_libwidg.st,v 1.33 2013-03-13 16:05:12 cg Exp $'
4084
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   235
!
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   236
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   237
version_CVS
4532
2d66114cfafc class: Expecco::LogSettingsApp
Claus Gittinger <cg@exept.de>
parents: 4529
diff changeset
   238
    ^ '$Header: /cvs/stx/stx/libwidg/stx_libwidg.st,v 1.33 2013-03-13 16:05:12 cg Exp $'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   239
! !
4520
c199ec1f7d7b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4465
diff changeset
   240