stx_libwidg.st
author Claus Gittinger <cg@exept.de>
Wed, 22 Sep 2010 14:22:56 +0200
changeset 4170 6bf83a2af71f
parent 4109 e3e3d6ec37ea
child 4221 25016934dc26
permissions -rw-r--r--
changed: #error:position:to:from:asWarning: do not raise a warning signal
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
"
04b4a5a268e6 comments
Claus Gittinger <cg@exept.de>
parents: 3330
diff changeset
    39
    Build-Information for creation of the st/x standard library: stx_libwidg.
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
    ^ #(
4109
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    48
	#'stx:goodies/soap'    "SOAP::SoapImplError - referenced by EditTextView>>googleSpellingSuggestion "
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    49
	#'stx:goodies/soap/examples'    "SOAP::BabelFishClient - referenced by EditTextView>>babelFishTranslate: "
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    50
	#'stx:libcomp'    "Parser - referenced by EditTextView>>executeKeyboardMacro: "
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    51
	#'stx:libhtml'    "HTMLDocumentView - referenced by DialogBox>>addHelpButtonFor: "
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    52
	#'stx:libtool'    "SystemBrowser - referenced by Workspace>>browseImplementorsOfIt "
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    53
	#'stx:libwidg2'    "FilenameEditField - referenced by DialogBox>>addFilenameInputFieldOn:in:tabable: "
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    )
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
extensionMethodNames
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    ^ #(
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    )
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    60
!
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    61
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    62
preRequisites
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    63
    ^ #(
4109
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    64
	#'stx:libbasic'    "Object - superclass of ListView "
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    65
	#'stx:libbasic2'    "List - referenced by SelectionInList>>initialize "
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    66
	#'stx:libui'    "PopUpListSpec - referenced by PopUpList>>specClass "
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    67
	#'stx:libview'    "DeviceGraphicsContext - superclass of WarningBox "
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    68
	#'stx:libview2'    "ValueHolder - superclass of SelectionInList "
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    69
    )
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
! !
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
    72
!stx_libwidg class methodsFor:'description - compilation'!
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
    73
3922
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
    74
additionalBaseAddressDefinition_bc_dot_mak
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
    75
    "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
    76
     on win32 systems."
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
    77
3374
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
    78
    ^ '
3435
eeca718e5c33 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 3391
diff changeset
    79
# see stdHeader_bc for LIBWIDG_BASE
3922
257d62c0b29b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3826
diff changeset
    80
LIB_BASE=$(LIBWIDG_BASE)
3374
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
    81
'
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
    82
!
66bc355d092e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3364
diff changeset
    83
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
    84
stcOptimizationOptions
4084
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
    85
    ^ '+optinline'
3351
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
    86
! !
df60a6248d21 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3342
diff changeset
    87
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    88
!stx_libwidg class methodsFor:'description - contents'!
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    89
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    90
classNamesAndAttributes
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
    91
    ^ #(
4109
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    92
	"<className> or (<className> attributes...) in load order"
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    93
	ArrowButton
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    94
	Button
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    95
	ButtonController
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    96
	CheckLabel
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    97
	CheckToggle
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    98
	ClickMenuView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
    99
	CodeView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   100
	DialogBox
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   101
	EditField
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   102
	EditTextView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   103
	EnterBox
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   104
	EnterBox2
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   105
	EnterFieldGroup
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   106
	FileSaveBox
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   107
	FileSelectionBox
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   108
	FileSelectionList
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   109
	FontPanel
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   110
	FramedBox
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   111
	HVScrollableView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   112
	HorizontalMiniScroller
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   113
	HorizontalPanelView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   114
	HorizontalScrollBar
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   115
	HorizontalScroller
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   116
	InfoBox
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   117
	Label
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   118
	ListSelectionBox
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   119
	ListView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   120
	(ListViewController autoload)
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   121
	MenuView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   122
	MiniScroller
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   123
	MultiSelectionInList
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   124
	ObjectView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   125
	OptionBox
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   126
	PanelView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   127
	PopUpList
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   128
	PopUpListController
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   129
	PopUpMenu
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   130
	PullDownMenu
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   131
	RadioButton
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   132
	RadioButtonController
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   133
	RadioButtonGroup
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   134
	ScrollBar
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   135
	ScrollableView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   136
	Scroller
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   137
	SelectionInList
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   138
	SelectionInListView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   139
	SequenceView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   140
	TextCollector
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   141
	TextView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   142
	Toggle
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   143
	ToggleController
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   144
	VariableHorizontalPanel
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   145
	VariableHorizontalPanelController
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   146
	VariablePanel
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   147
	VariablePanelController
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   148
	VariableVerticalPanel
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   149
	VariableVerticalPanelController
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   150
	VerticalPanelView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   151
	WarningBox
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   152
	Workspace
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   153
	YesNoBox
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   154
	#'stx_libwidg'
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   155
	MultiColumnPanelView
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   156
	GenericToolbarIconLibrary
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   157
	XPToolbarIconLibrary
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   158
	VistaToolbarIconLibrary
3488
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   159
    )
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   160
! !
e36f203dec13 Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 3472
diff changeset
   161
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
!stx_libwidg class methodsFor:'description - project information'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
companyName
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
    "Return a companyname which will appear in <lib>.rc"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
    ^ 'eXept Software AG'
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
description
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
    "Return a description string which will appear in nt.def / bc.def"
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
3342
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   173
    ^ 'Smalltalk/X Elementary Widgets'
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   174
!
78f1864f3466 comments
Claus Gittinger <cg@exept.de>
parents: 3341
diff changeset
   175
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
legalCopyright
3939
70c39cad8959 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3922
diff changeset
   177
    "Return a copyright string which will appear in <lib>.rc"
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
3826
5881722165c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3684
diff changeset
   179
    ^ 'Copyright Claus Gittinger 1988-2009\nCopyright eXept Software AG 1998-2009'
3513
83bb6dbd0a97 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3512
diff changeset
   180
83bb6dbd0a97 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3512
diff changeset
   181
    "Modified: / 08-11-2007 / 16:59:22 / cg"
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
! !
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   184
!stx_libwidg class methodsFor:'documentation'!
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   186
version
4109
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   187
    ^ '$Header: /cvs/stx/stx/libwidg/stx_libwidg.st,v 1.26 2009-11-16 16:19:17 cg Exp $'
4084
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   188
!
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   189
7e41d96add36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 3939
diff changeset
   190
version_CVS
4109
e3e3d6ec37ea *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   191
    ^ '$Header: /cvs/stx/stx/libwidg/stx_libwidg.st,v 1.26 2009-11-16 16:19:17 cg Exp $'
3330
8f02e6804c8f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   192
! !