stx_libwidg.st
author Claus Gittinger <cg@exept.de>
Sat, 08 Aug 2015 16:48:38 +0200
changeset 5394 bd2329beafbc
parent 5365 98fed6b394c4
child 5386 26b17b83a19b
child 5442 be96eea39ba2
permissions -rw-r--r--
class: EditTextView changed: #doKeyPress:x:y: any keypress should stop any ongoing completion. fix for the case when a key was entered (which starts a completion process) and then another key (such as a cursor-down) is pressed before completion view appears. The bug was that the completion view appeared for the wrong charater position...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5365
98fed6b394c4 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 5312
diff changeset
     1
"{ Encoding: utf8 }"
98fed6b394c4 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 5312
diff changeset
     2
3341
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     3
"
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     4
 COPYRIGHT (c) 2006 by eXept Software AG
4109
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
     5
	      All Rights Reserved
3341
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     6
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     7
 This software is furnished under a license and may be used
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     8
 only in accordance with the terms of that license and with the
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    10
 be provided or otherwise made available to, or used by, any
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    11
 other person.  No title to or ownership of the software is
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    12
 hereby transferred.
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    13
"
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libwidg' }"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
5243
cbd28c5f47ea comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
    16
"{ NameSpace: Smalltalk }"
cbd28c5f47ea comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
    17
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
LibraryDefinition subclass:#stx_libwidg
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	instanceVariableNames:''
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	classVariableNames:''
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	poolDictionaries:''
3472
3754048433f7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3435
diff changeset
    22
	category:'* Projects & Packages *'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
3341
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    25
!stx_libwidg class methodsFor:'documentation'!
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    26
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    27
copyright
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    28
"
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    29
 COPYRIGHT (c) 2006 by eXept Software AG
4109
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    30
	      All Rights Reserved
3341
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    31
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    32
 This software is furnished under a license and may be used
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    33
 only in accordance with the terms of that license and with the
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    35
 be provided or otherwise made available to, or used by, any
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    36
 other person.  No title to or ownership of the software is
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    37
 hereby transferred.
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    38
"
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    39
!
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    40
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    41
documentation
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    42
"
5243
cbd28c5f47ea comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
    43
    Package Documentation
cbd28c5f47ea comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
    44
5275
ce7b9390336c class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 5272
diff changeset
    45
    This library contains elementary GUI components (widgets), such as Buttons, InputFields,
5243
cbd28c5f47ea comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
    46
    TextEditors, Scrollbars etc.
5275
ce7b9390336c class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 5272
diff changeset
    47
ce7b9390336c class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 5272
diff changeset
    48
    All of these widgets are written in 100% pure Smalltalk. They do not depend upon any particular
ce7b9390336c class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 5272
diff changeset
    49
    underlying graphic system (by the operating system). 
ce7b9390336c class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 5272
diff changeset
    50
    Instead, they build upon the abstraction layer as provided by libview.
3341
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    51
"
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    52
! !
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
!stx_libwidg class methodsFor:'description'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    56
excludedFromPreRequisites
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    ^ #(
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    58
        #'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
    59
        #'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
    60
        #'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
    61
        #'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
    62
        #'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
    63
        #'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
    64
        #'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
    65
        #'stx:libwidg2'    "FilenameEditField - referenced by DialogBox>>addFilenameInputFieldOn:in:tabable: "
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
    )
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    69
mandatoryPreRequisites
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    70
    "list all required mandatory packages.
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    71
     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
    72
     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
    73
     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
    74
     updated by scanning the superclass hierarchies
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    75
     (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
    76
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
    ^ #(
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    78
        #'stx:libbasic'    "Autoload - superclass of ListViewController "
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    79
        #'stx:libview'    "Controller - superclass of ButtonController "
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    80
        #'stx:libview2'    "Model - superclass of MultiSelectionInList "
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
    )
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    82
!
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    83
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    84
referencedPreRequisites
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
    85
    "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
    86
     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
    87
     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
    88
     (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
    89
     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
    90
     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
    91
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    92
    ^ #(
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    93
        #'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
    94
        #'stx:libbasic3'    "MessageTally - referenced by Workspace>>spyOnIt "
4663
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    95
        #'stx:libui'    "ActionButtonSpec - referenced by Button>>specClass "
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    96
    )
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    97
!
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    98
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
    99
subProjects
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
   100
    "list packages which are known as subprojects.
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
   101
     The generated makefile will enter those and make there as well.
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
   102
     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
   103
     for those, redefine requiredPrerequisites"
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
   104
cd4d1a3e58b3 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4532
diff changeset
   105
    ^ #(
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   106
    )
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
! !
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   109
!stx_libwidg class methodsFor:'description - compilation'!
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   110
3922
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
   111
additionalBaseAddressDefinition_bc_dot_mak
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
   112
    "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
   113
     on win32 systems."
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
   114
3374
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   115
    ^ '
3435
eeca718e5c33 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 3391
diff changeset
   116
# see stdHeader_bc for LIBWIDG_BASE
3922
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
   117
LIB_BASE=$(LIBWIDG_BASE)
3374
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   118
'
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   119
!
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
   120
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   121
stcOptimizationOptions
4084
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   122
    ^ '+optinline'
5151
dff9b289c195 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4837
diff changeset
   123
!
dff9b289c195 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4837
diff changeset
   124
dff9b289c195 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4837
diff changeset
   125
stcWarningOptions
dff9b289c195 class: stx_libwidg
Claus Gittinger <cg@exept.de>
parents: 4837
diff changeset
   126
    ^ '-warnNonStandard -warnUnused'
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   127
! !
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
   128
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   129
!stx_libwidg class methodsFor:'description - contents'!
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   130
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   131
classNamesAndAttributes
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   132
    "lists the classes which are to be included in the project.
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   133
     Each entry in the list may be: a single class-name (symbol),
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   134
     or an array-literal consisting of class name and attributes.
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   135
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   136
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   137
    ^ #(
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   138
        "<className> or (<className> attributes...) in load order"
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   139
        ButtonController
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   140
        DialogBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   141
        EditTextViewCompletionSupport
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   142
        EnterFieldGroup
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   143
        FramedBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   144
        GenericToolbarIconLibrary
4800
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   145
        Label
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   146
        ListView
4837
ac279fb76bb0 Make ListViewController compiled instead of autoloaded
Stefan Vogel <sv@exept.de>
parents: 4800
diff changeset
   147
        ListViewController
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   148
        MenuEvent
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   149
        ObjectView
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
        PopUpMenu
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   152
        PullDownMenu
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   153
        RadioButtonGroup
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   154
        ScrollBar
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   155
        ScrollableView
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   156
        Scroller
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   157
        SelectionInList
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   158
        VariablePanel
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   159
        VariablePanelController
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   160
        #'stx_libwidg'
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   161
        Button
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   162
        CheckLabel
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   163
        EnterBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   164
        FontPanel
4800
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   165
        HVScrollableView
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   166
        HorizontalPanelView
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   167
        HorizontalScrollBar
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   168
        HorizontalScroller
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   169
        InfoBox
4800
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   170
        MiniScroller
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   171
        MultiColumnPanelView
4800
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   172
        MultiSelectionInList
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   173
        OptionBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   174
        PopUpListController
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   175
        SelectionInListView
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   176
        SequenceView
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   177
        TextView
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   178
        ToggleController
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   179
        VariableHorizontalPanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   180
        VariableHorizontalPanelController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   181
        VariableVerticalPanel
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   182
        VariableVerticalPanelController
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   183
        VerticalPanelView
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   184
        WorkspaceCompletionSupport
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   185
        XPToolbarIconLibrary
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   186
        ArrowButton
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   187
        EditTextView
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   188
        EnterBox2
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   189
        FileSelectionList
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   190
        HorizontalMiniScroller
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   191
        ListSelectionBox
5312
3a5a65f4cb7b compiled: MacOSXToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5275
diff changeset
   192
        MacOSXToolbarIconLibrary
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   193
        MenuView
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   194
        PopUpList
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   195
        RadioButtonController
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   196
        Toggle
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   197
        VistaToolbarIconLibrary
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   198
        WarningBox
5272
72cb0a50d237 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5243
diff changeset
   199
        AdwaitaToolbarIconLibrary
5165
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   200
        CheckToggle
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   201
        ClickMenuView
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   202
        EditField
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   203
        FileSelectionBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   204
        RadioButton
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   205
        TextCollector
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   206
        Windows8ToolbarIconLibrary
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   207
        YesNoBox
840cd63c9788 initial checkin
Claus Gittinger <cg@exept.de>
parents: 5151
diff changeset
   208
        FileSaveBox
4270
467c7e653589 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4221
diff changeset
   209
        Workspace
4800
72484439b233 Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4663
diff changeset
   210
        CodeView
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   211
    )
4529
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
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   214
extensionMethodNames
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   215
    "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
   216
     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
   217
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
    )
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   220
! !
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   221
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
!stx_libwidg class methodsFor:'description - project information'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   223
4529
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   224
applicationIconFileName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   225
    "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
   226
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   227
    ^ nil
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   228
    "/ ^ self applicationName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   229
!
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   230
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   231
companyName
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
    "Return a companyname which will appear in <lib>.rc"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   233
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
    ^ 'eXept Software AG'
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   235
!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   236
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   237
description
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   238
    "Return a description string which will appear in nt.def / bc.def"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   239
3342
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   240
    ^ 'Smalltalk/X Elementary Widgets'
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   241
!
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   242
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   243
legalCopyright
3939
70c39cad8959 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3922
diff changeset
   244
    "Return a copyright string which will appear in <lib>.rc"
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   245
5365
98fed6b394c4 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 5312
diff changeset
   246
    ^ 'Copyright Claus Gittinger 1988-2012\nCopyright eXept Software AG 2012'
3513
83bb6dbd0a97 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3512
diff changeset
   247
4431
3f6526fc3b74 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 4270
diff changeset
   248
    "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
   249
!
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   250
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   251
productName
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   252
    "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
   253
ec75c190f714 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 4520
diff changeset
   254
    ^ 'Smalltalk/X'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   255
! !
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   256
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   257
!stx_libwidg class methodsFor:'documentation'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   258
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   259
version
5365
98fed6b394c4 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 5312
diff changeset
   260
    ^ '$Header$'
4084
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   261
!
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   262
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   263
version_CVS
5365
98fed6b394c4 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 5312
diff changeset
   264
    ^ '$Header$'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
! !
4520
c199ec1f7d7b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4465
diff changeset
   266