stx_libtool2.st
changeset 2068 c8e0136dc692
child 2071 54af4d66b0fa
equal deleted inserted replaced
2067:027ddb65a851 2068:c8e0136dc692
       
     1 "{ Package: 'stx:libtool2' }"
       
     2 
       
     3 LibraryDefinition subclass:#stx_libtool2
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'* Projects *'
       
     8 !
       
     9 
       
    10 
       
    11 !stx_libtool2 class methodsFor:'description - compilation'!
       
    12 
       
    13 additionalDefinitions_nt_dot_mak
       
    14     ^ '
       
    15 # see stdHeader_nt for LIBTOOL2_BASE
       
    16 # LIBTOOL2_BASE   =0x65000000
       
    17 LIB_BASE_LD_ARG=-b:$(LIBTOOL2_BASE)
       
    18 '
       
    19 ! !
       
    20 
       
    21 !stx_libtool2 class methodsFor:'description - contents'!
       
    22 
       
    23 classNamesAndAttributes
       
    24     ^ #(
       
    25 	"/ <className> or (<className> attributes...)
       
    26 	('ColorEditDialog' #autoload)
       
    27 	'DataSetBuilder'
       
    28 	('DirectoryView' #autoload)
       
    29 	'FileSelectionBrowser'
       
    30 	('HierarchicalListEditor' #autoload)
       
    31 	'ImageEditor'
       
    32 	'MenuEditor'
       
    33 	('MethodFinderWindow' #autoload)
       
    34 	('MethodSelectionBrowser' #autoload)
       
    35 	('NewInspector::NewInspectorList' #autoload)
       
    36 	('NewInspector::NewInspectorListView' #autoload)
       
    37 	('NewInspector::NewInspectorPanelView' #autoload)
       
    38 	('NewInspector::NewInspectorView' #autoload)
       
    39 	('ProjectBrowser' #autoload)
       
    40 	'ResourceSelectionBrowser'
       
    41 	('STXInstaller' #autoload)
       
    42 	'SelectionBrowser'
       
    43 	('ShellView' #autoload)
       
    44 	('SnapShotImage' #autoload)
       
    45 	('SnapShotImageMemory' #autoload)
       
    46 	('TabListEditor' #autoload)
       
    47 	('Tools::InternationalLanguageTranslationEditor' #autoload)
       
    48 	'UIGalleryView'
       
    49 	'UIHelpTool'
       
    50 	'UILayoutTool'
       
    51 	'UIObjectView'
       
    52 	'UIPainter'
       
    53 	'UIPainterView'
       
    54 	'UISelectionPanel'
       
    55 	'UISpecificationTool'
       
    56 	'stx_libtool2'
       
    57     )
       
    58 !
       
    59 
       
    60 extensionMethodNames
       
    61     ^ #(
       
    62     )
       
    63 ! !
       
    64 
       
    65 !stx_libtool2 class methodsFor:'description - project information'!
       
    66 
       
    67 companyName
       
    68     "Return a companyname which will appear in <lib>.rc"
       
    69 
       
    70     ^ 'eXept Software AG'
       
    71 !
       
    72 
       
    73 description
       
    74     "Return a description string which will appear in nt.def / bc.def"
       
    75 
       
    76     ^ 'Smalltalk/X Class library'
       
    77 !
       
    78 
       
    79 legalCopyright
       
    80     "Return a copyright string which will appear in <lib>.rc"
       
    81 
       
    82     ^ 'Copyright Claus Gittinger 1988-2006\nCopyright eXept Software AG 1998-2006'
       
    83 !
       
    84 
       
    85 productName
       
    86     "Return a product name which will appear in <lib>.rc"
       
    87 
       
    88     ^ 'Smalltalk/X'
       
    89 ! !
       
    90 
       
    91 !stx_libtool2 class methodsFor:'documentation'!
       
    92 
       
    93 version
       
    94     ^ '$Header$'
       
    95 ! !