cg@2071: " cg@2071: COPYRIGHT (c) 2006 by eXept Software AG cg@2071: All Rights Reserved cg@2071: cg@2071: This software is furnished under a license and may be used cg@2071: only in accordance with the terms of that license and with the cg@2071: inclusion of the above copyright notice. This software may not cg@2071: be provided or otherwise made available to, or used by, any cg@2071: other person. No title to or ownership of the software is cg@2071: hereby transferred. cg@2071: " cg@2068: "{ Package: 'stx:libtool2' }" cg@2068: cg@2068: LibraryDefinition subclass:#stx_libtool2 cg@2381: instanceVariableNames:'' cg@2381: classVariableNames:'' cg@2381: poolDictionaries:'' cg@2381: category:'* Projects & Packages *' cg@2068: ! cg@2068: cg@2071: !stx_libtool2 class methodsFor:'documentation'! cg@2071: cg@2071: copyright cg@2071: " cg@2071: COPYRIGHT (c) 2006 by eXept Software AG cg@2071: All Rights Reserved cg@2071: cg@2071: This software is furnished under a license and may be used cg@2071: only in accordance with the terms of that license and with the cg@2071: inclusion of the above copyright notice. This software may not cg@2071: be provided or otherwise made available to, or used by, any cg@2071: other person. No title to or ownership of the software is cg@2071: hereby transferred. cg@2071: " cg@2071: ! cg@2071: cg@2071: documentation cg@2071: " cg@2071: Build-Information for creation of the st/x standard library: stx_libtool2. cg@2071: This library contains additional developer tools. cg@2071: " cg@2071: ! ! cg@2068: boris@2145: !stx_libtool2 class methodsFor:'description'! boris@2145: sv@2172: excludedFromPreRequisites sv@2172: ^ #( sv@2172: #'stx:libhtml' "HTMLDocumentView - referenced by UIPainter>>doOpenWidgetDocumentation " sv@2172: ) sv@2172: ! sv@2172: boris@2145: preRequisites boris@2145: ^ #( sv@2172: #'stx:libbasic' "Object - superclass of UIPainter::TreeView " boris@2145: #'stx:libbasic2' "List - referenced by DataSetBuilder>>updateColumnView " boris@2145: #'stx:libtool' "SystemBrowser - referenced by ResourceSelectionBrowser::ResourceMethod>>iconOn: " boris@2145: #'stx:libui' "SpecCollection - referenced by UIPainterView>>fullSpecFor: " sv@2172: #'stx:libview' "SimpleView - superclass of UIObjectView " sv@2172: #'stx:libview2' "Model - superclass of UILayoutTool::Point " sv@2172: #'stx:libwidg' "ObjectView - superclass of UIPainterView " sv@2172: #'stx:libwidg2' "HierarchicalItem - superclass of MenuEditor::Item " boris@2145: ) boris@2145: ! ! boris@2145: cg@2068: !stx_libtool2 class methodsFor:'description - compilation'! cg@2068: sv@2149: additionalDefinitions_bc_dot_mak cg@2068: ^ ' sv@2149: # see stdHeader_bc for LIBTOOL2_BASE cg@2068: # LIBTOOL2_BASE =0x65000000 cg@2068: LIB_BASE_LD_ARG=-b:$(LIBTOOL2_BASE) cg@2068: ' cg@2068: ! ! cg@2068: cg@2068: !stx_libtool2 class methodsFor:'description - contents'! cg@2068: cg@2068: classNamesAndAttributes cg@2068: ^ #( boris@2145: " or ( attributes...) in load order" boris@2145: ColorEditDialog boris@2145: DataSetBuilder sv@2172: (DirectoryView autoload) sv@2172: (HierarchicalListEditor autoload) boris@2145: ImageEditor boris@2145: MenuEditor sv@2172: (MethodFinderWindow autoload) sv@2172: (MethodSelectionBrowser autoload) sv@2172: (#'NewInspector::NewInspectorList' autoload) sv@2172: (#'NewInspector::NewInspectorListView' autoload) sv@2172: (#'NewInspector::NewInspectorPanelView' autoload) sv@2172: (#'NewInspector::NewInspectorView' autoload) sv@2172: (ProjectBrowser autoload) sv@2172: (STXInstaller autoload) boris@2145: SelectionBrowser sv@2172: (ShellView autoload) sv@2172: (SnapShotImage autoload) sv@2172: (SnapShotImageMemory autoload) cg@2466: TabListEditor sv@2172: (#'Tools::InternationalLanguageTranslationEditor' autoload) sv@2172: (#'Tools::ProjectDefinitionEditor' autoload) boris@2145: UIGalleryView boris@2145: UIHelpTool boris@2145: UILayoutTool boris@2145: UIObjectView boris@2145: UIPainter boris@2145: UISelectionPanel boris@2145: UISpecificationTool boris@2145: #'stx_libtool2' boris@2145: FileSelectionBrowser boris@2145: ResourceSelectionBrowser boris@2145: UIPainterView ca@2179: (#'Tools::ViewTreeModel' autoload) ca@2179: (#'Tools::ViewTreeApplication' autoload) ca@2179: (#'Tools::ViewTreeItem' autoload) cg@2182: (#'Tools::ObjectModuleInformation' autoload) cg@2307: FlyByWindowInformation sv@2292: UIListEditor cg@2068: ) cg@2068: ! cg@2068: cg@2068: extensionMethodNames cg@2068: ^ #( cg@2068: ) cg@2068: ! ! cg@2068: cg@2068: !stx_libtool2 class methodsFor:'description - project information'! cg@2068: cg@2068: companyName cg@2068: "Return a companyname which will appear in .rc" cg@2068: cg@2068: ^ 'eXept Software AG' cg@2068: ! cg@2068: cg@2068: description cg@2068: "Return a description string which will appear in nt.def / bc.def" cg@2068: cg@2474: ^ 'Smalltalk/X Additional Tools' cg@2068: ! cg@2068: cg@2068: legalCopyright cg@2068: "Return a copyright string which will appear in .rc" cg@2068: cg@2467: ^ 'Copyright Claus Gittinger 1988-2009\nCopyright eXept Software AG 1998-2009' cg@2194: cg@2194: "Modified: / 08-11-2007 / 16:58:56 / cg" cg@2068: ! ! cg@2068: cg@2068: !stx_libtool2 class methodsFor:'documentation'! cg@2068: cg@2068: version cg@2068: ^ '$Header$' cg@2068: ! !