stx_libtool2.st
author Claus Gittinger <cg@exept.de>
Wed, 23 Sep 2009 20:16:37 +0200
changeset 2586 21543455e209
parent 2577 0ede5715d72e
child 2610 2fbaaa0e8e33
permissions -rw-r--r--
*** empty log message ***

"
 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:libtool2' }"

LibraryDefinition subclass:#stx_libtool2
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'* Projects & Packages *'
!

!stx_libtool2 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_libtool2.
    This library contains additional developer tools.
"
! !

!stx_libtool2 class methodsFor:'description'!

excludedFromPreRequisites
    ^ #(
        #'stx:libhtml'    "HTMLDocumentView - referenced by UIPainter>>doOpenWidgetDocumentation "
    )
!

preRequisites
    ^ #(
        #'stx:libbasic'    "Object - superclass of UIPainter::TreeView "
        #'stx:libbasic2'    "List - referenced by DataSetBuilder>>updateColumnView "
        #'stx:libtool'    "SystemBrowser - referenced by ResourceSelectionBrowser::ResourceMethod>>iconOn: "
        #'stx:libui'    "SpecCollection - referenced by UIPainterView>>fullSpecFor: "
        #'stx:libview'    "SimpleView - superclass of UIObjectView "
        #'stx:libview2'    "Model - superclass of UILayoutTool::Point "
        #'stx:libwidg'    "ObjectView - superclass of UIPainterView "
        #'stx:libwidg2'    "HierarchicalItem - superclass of MenuEditor::Item "
    )
! !

!stx_libtool2 class methodsFor:'description - compilation'!

additionalBaseAddressDefinition_bc_dot_mak
    "this is an optional definition, which (if present) may speed up the dll-loading a little
     on win32 systems."

    ^ '
# see stdHeader_bc for LIBTOOL2_BASE
LIB_BASE=$(LIBTOOL2_BASE)
'
! !

!stx_libtool2 class methodsFor:'description - contents'!

classNamesAndAttributes
    ^ #(
        "<className> or (<className> attributes...) in load order"
        ColorEditDialog
        DataSetBuilder
        (DirectoryView autoload)
        (HierarchicalListEditor autoload)
        ImageEditor
        MenuEditor
        (MethodFinderWindow autoload)
        (MethodSelectionBrowser autoload)
        (#'NewInspector::NewInspectorList' autoload)
        (#'NewInspector::NewInspectorListView' autoload)
        (#'NewInspector::NewInspectorPanelView' autoload)
        (#'NewInspector::NewInspectorView' autoload)
        (ProjectBrowser autoload)
        (STXInstaller autoload)
        SelectionBrowser
        (ShellView autoload)
        (SnapShotImage autoload)
        (SnapShotImageMemory autoload)
        TabListEditor 
        (#'Tools::InternationalLanguageTranslationEditor' autoload)
        (#'Tools::ProjectDefinitionEditor' autoload)
        UIGalleryView
        UIHelpTool
        UILayoutTool
        UIObjectView
        UIPainter
        UISelectionPanel
        UISpecificationTool
        #'stx_libtool2'
        FileSelectionBrowser
        ResourceSelectionBrowser
        UIPainterView
        (#'Tools::ViewTreeModel' autoload)
        (#'Tools::ViewTreeApplication' autoload)
        (#'Tools::ViewTreeItem' autoload)
        (#'Tools::ObjectModuleInformation' autoload)
        FlyByWindowInformation
        UIListEditor
    )
!

extensionMethodNames
    ^ #(
    )
! !

!stx_libtool2 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 Additional Tools'
!

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

    ^ 'Copyright Claus Gittinger 1988-2009\nCopyright eXept Software AG 1998-2009'

    "Modified: / 08-11-2007 / 16:58:56 / cg"
! !

!stx_libtool2 class methodsFor:'documentation'!

version
    ^ '$Header$'
! !