stx_libwidg2.st
author Claus Gittinger <cg@exept.de>
Tue, 22 Aug 2006 23:21:17 +0200
changeset 3028 c4aaaac3bbc0
parent 3027 6bd1a676128a
child 3029 20769e7a1aea
permissions -rw-r--r--
comments

"
 COPYRIGHT (c) 2006 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

"{ Package: 'stx:libwidg2' }"

LibraryDefinition subclass:#stx_libwidg2
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'* Projects *'
!

!stx_libwidg2 class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2006 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    Build-Information for creation of the st/x standard library: stx_libwidg.
    This library contains additional gui components (widgets).
"
! !

!stx_libwidg2 class methodsFor:'description'!

additionalClassNamesAndAttributes
    ^ #(
        "/ <className> or (<className> attributes...)
        'LicenceBox'
    )

    "Created: / 21-08-2006 / 19:52:03 / cg"
!

classNamesAndAttributes
    ^ #(
	"/ <className> or (<className> attributes...)
	('CharacterSetView' #autoload)
	'CheckBox'
	'ColorMenu'
	('ColoredListEntry' #autoload)
	'ComboBoxButton'
	'ComboBoxView'
	('ComboBrowseView' #autoload)
	'ComboListView'
	('ComboUpDownView' #autoload)
	'ComboView'
	'DSVColumnView'
	'DSVLabelView'
	'DataSetColumn'
	'DataSetLabel'
	'DataSetView'
	'DoWhatIMeanSupport'
	'EnterBoxWithList'
	'ExtendedComboBox'
	'FileSelectionItem'
	'FileSelectionTree'
	'FilenameComboBoxView'
	'FilenameEditField'
	'FilenameEnterBox'
	'FontMenu'
	('GraphColumn' #autoload)
	('GraphColumnView' #autoload)
	('GraphColumnView2D' #autoload)
	('GraphColumnView2DSpec' #autoload)
	('GraphColumnView3D' #autoload)
	('GraphColumnView3DSpec' #autoload)
	('GraphColumnViewSpec' #autoload)
	'GridBagConstraints'
	'GridBagLayoutInfo'
	'GridBagLayoutView'
	'HierarchicalFileList'
	'HierarchicalItem'
	'HierarchicalItemWithLabel'
	'HierarchicalItemWithLabelAndIcon'
	'HierarchicalItemWithLabelAndIconAndValue'
	'HierarchicalList'
	'HierarchicalListView'
	'HierarchyNode'
	('HorizontalScale' #autoload)
	'HorizontalSlider'
	('HorizontalSteppingSlider' #autoload)
	('ImageEditView' #autoload)
	('ImageSelectionBox' #autoload)
	'ImageView'
	'LabelAndIcon'
	'LabelledEnterField'
	('ListEditor' #autoload)
	'ListEntry'
	'ListModelView'
	('MenuButton' #autoload)
	'MenuPanel'
	'ModelListEntry'
	('MotionButton' #autoload)
	'MultiColListEntry'
	'MultipleItemSelectionWidget'
	('NoteBookFrameView' #autoload)
	'NoteBookView'
	('ParagraphSpecification' #autoload)
	'PrintAbortDialog'
	'PrintingDialog'
	'ProgressIndicator'
	('RoundButton' #autoload)
	('Ruler' #autoload)
	('Scale' #autoload)
	'SelectionInHierarchy'
	('SelectionInHierarchyView' #autoload)
	'SelectionInListModelView'
	'SelectionInTree'
	'SelectionInTreeView'
	'Separator'
	'Slider'
	('SteppingSlider' #autoload)
	('StrokeView' #autoload)
	'SubCanvas'
	'SyncedMultiColumnTextView'
	('TabControl' #autoload)
	'TabItem'
	'TabSpecRuler'
	'TabView'
	'TabWidget'
	'TabulatorSpecification'
	('TerminalView' #autoload)
	'TextBox'
	('TextRuler' #autoload)
	('ThreeColumnTextView' #autoload)
	'TreeItem'
	'TreeItemWithImage'
	'TwoColumnTextView'
	'UpDownButton'
	('VT100TerminalView' #autoload)
	('VT52TerminalView' #autoload)
	('VerticalRuler' #autoload)
	'ViewScroller'
	'stx_libwidg2'
    )
!

extensionMethodNames
    ^ #(
    )
! !

!stx_libwidg2 class methodsFor:'description - project information'!

companyName
    "Return a companyname which will appear in <lib>.rc"

    ^ 'eXept Software AG'
!

description
    "Return a description string which will appear in nt.def / bc.def"

    ^ 'Smalltalk/X Class library'
!

legalCopyright
    "Return copyright string which will appear in <lib>.rc"

    ^ 'Copyright eXept Software AG 1998-2006'
!

productName
    "Return a product name which will appear in <lib>.rc"

    ^ 'Smalltalk/X'
! !

!stx_libwidg2 class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libwidg2/stx_libwidg2.st,v 1.4 2006-08-22 21:21:17 cg Exp $'
! !