stx_projects_smalltalk.st
author Claus Gittinger <cg@exept.de>
Thu, 01 Mar 2007 20:28:29 +0100
changeset 901 7ee4e9a3330c
parent 900 1aeab4fa33b2
child 902 db523b233ec8
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     1
"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     4
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    10
 hereby transferred.
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    11
"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:projects/smalltalk' }"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    14
ApplicationDefinition subclass:#stx_projects_smalltalk
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	category:'* Projects *'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    21
!stx_projects_smalltalk class methodsFor:'documentation'!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    22
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    23
copyright
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    24
"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    27
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    33
 hereby transferred.
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    34
"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    35
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    36
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    37
documentation
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    38
"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    39
    The Smalltalk executable (with GUI)
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    40
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    41
    [Author:]
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    42
        Claus Gittinger
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    43
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    44
    [startWith:]
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    45
        Start the ST/X application from the command line
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    46
"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    47
! !
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    48
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    49
!stx_projects_smalltalk class methodsFor:'description'!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    50
842
2ffca1cb987c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
    51
applicationIconFileName
2ffca1cb987c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
    52
    ^ 'stx_32x32'
2ffca1cb987c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
    53
!
2ffca1cb987c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
    54
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    55
applicationNameConsole
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    56
    "normally, the appName is constructed from the package,
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    57
     and the consoleApp has '_debug' added to the name.
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    58
     Here, the consoleApp is called 'stx' and the non-console app is called 'winstx'.
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    59
     This might change in the future."
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    60
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    61
    ^ 'stx'
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    62
!
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    63
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    64
applicationNameNoConsole
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    65
    "normally, the appName is constructed from the package,
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    66
     and the consoleApp has '_debug' added to the name.
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    67
     Here, the consoleApp is called 'stx' and the non-console app is called 'winstx'.
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    68
     This might change in the future."
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    69
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    70
    ^ 'winstx'
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    71
!
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    72
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    73
buildTarget
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    74
    "redefined, so by default, the executable file is only built - not an installer.
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    75
     For the installer to be built, we must explicitly type 'bmake setup'"
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    76
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    77
     ^ 'exe'
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    78
!
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    79
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    80
isConsoleApplication
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    81
    ^ true "actually, we do both the console and the non-console app (see additionalTargets_bc_dot_mak)"
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    82
!
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    83
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    84
isGUIApplication
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    85
    ^ true
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    86
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    87
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    88
needResources
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    89
    "my resources are already in place"
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    90
849
ec22a78174ee automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
    91
    ^ true    
ec22a78174ee automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
    92
"/    ^ false
ec22a78174ee automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
    93
ec22a78174ee automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
    94
    "Modified: / 01-03-2007 / 17:30:30 / cg"
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    95
!
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    96
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    97
preRequisites
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    98
    ^ #(
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    99
        #'stx:libbasic'    
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   100
        #'stx:libbasic2'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   101
        #'stx:libbasic3'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   102
        #'stx:libcomp'    
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   103
        #'stx:libhtml'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   104
        #'stx:libtool'    
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   105
        #'stx:libtool2'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   106
        #'stx:libui'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   107
        #'stx:libview'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   108
        #'stx:libview2'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   109
        #'stx:libwidg'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   110
        #'stx:libwidg2'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   111
        #'stx:libwidg3'
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   112
        #'stx:goodies/refactoryBrowser/helpers'
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   113
        #'stx:goodies/refactoryBrowser/parser'
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   114
        #'stx:goodies/refactoryBrowser/refactoring'
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   115
        #'stx:goodies/refactoryBrowser/changes'
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   116
        #'stx:libboss'
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   117
    )
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   118
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   119
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   120
subProjects
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   121
    ^ #(
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   122
)
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   123
! !
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   124
762
9cdba58d9a60 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 748
diff changeset
   125
!stx_projects_smalltalk class methodsFor:'description - building'!
9cdba58d9a60 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 748
diff changeset
   126
893
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   127
additionalFilesToInstall
901
7ee4e9a3330c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
   128
    "becomes part of the nsi list of files to install"
7ee4e9a3330c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
   129
893
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   130
    ^ #(
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   131
        '"d_*.rc" "h_*.rc" "private.rc" "smalltalk*.rc"'
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   132
        '"${STX_ROOT}\stx\projects\smalltalk\patches"'
900
1aeab4fa33b2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 893
diff changeset
   133
        '/r "${STX_ROOT}\stx\include"'
1aeab4fa33b2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 893
diff changeset
   134
        '/r CVS "${STX_ROOT}\stx\libview\styles"'
893
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   135
       )
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   136
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   137
    "Created: / 01-03-2007 / 20:03:15 / cg"
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   138
!
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   139
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
   140
additionalTargets_bc_dot_mak
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
   141
    ^ 'winstx'
762
9cdba58d9a60 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 748
diff changeset
   142
!
9cdba58d9a60 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 748
diff changeset
   143
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
   144
iconFileName
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
   145
    ^ 'stx_32x32.ico'
826
a47dc6abc5d2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   146
!
a47dc6abc5d2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   147
a47dc6abc5d2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   148
nsiDeliveredExecutables
a47dc6abc5d2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   149
    ^ '"stx.exe" "winstx.exe"'
762
9cdba58d9a60 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 748
diff changeset
   150
! !
9cdba58d9a60 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 748
diff changeset
   151
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   152
!stx_projects_smalltalk class methodsFor:'description - contents'!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   153
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   154
classNamesAndAttributes
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   155
    ^ #(
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   156
        "<className> or (<className> attributes...) in load order"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   157
        #'stx_projects_smalltalk'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   158
    )
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   159
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   160
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   161
extensionMethodNames
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   162
    ^ #(
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   163
    )
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   164
! !
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   165
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   166
!stx_projects_smalltalk class methodsFor:'description - project information'!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   167
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   168
companyName
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   169
    "Return a companyname which will appear in <lib>.rc"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   170
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   171
    ^ 'eXept Software AG'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   172
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   173
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   174
description
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   175
    "Return a description string which will appear in nt.def / bc.def"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   176
795
d7e661fdd09c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   177
    ^ 'Smalltalk/X IDE'
d7e661fdd09c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   178
d7e661fdd09c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   179
    "Modified: / 10-02-2007 / 18:36:19 / cg"
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   180
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   181
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   182
legalCopyright
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   183
    "Return a copyright string which will appear in <lib>.rc"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   184
795
d7e661fdd09c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   185
    ^ 'Copyright Claus Gittinger 1988-2007\nCopyright eXept Software AG 1998-2007'
d7e661fdd09c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   186
d7e661fdd09c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   187
    "Modified: / 10-02-2007 / 18:36:27 / cg"
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   188
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   189
886
e2b59c951e8f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
   190
productFilename
e2b59c951e8f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
   191
    ^ 'SmalltalkX'
e2b59c951e8f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
   192
e2b59c951e8f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
   193
    "Modified: / 01-03-2007 / 19:34:15 / cg"
e2b59c951e8f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
   194
!
e2b59c951e8f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
   195
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   196
productName
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   197
    "Return a product name which will appear in <lib>.rc"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   198
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   199
    ^ 'Smalltalk/X'
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   200
! !
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   201
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   202
!stx_projects_smalltalk class methodsFor:'description - startup'!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   203
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   204
startupClassName
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   205
    ^ #Smalltalk
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   206
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   207
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   208
startupSelector
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   209
    ^ #start
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   210
! !
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   211
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   212
!stx_projects_smalltalk class methodsFor:'documentation'!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   213
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   214
version
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   215
    ^ '$Header$'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   216
! !