stx_projects_smalltalk.st
author Claus Gittinger <cg@exept.de>
Sat, 01 Mar 2014 01:36:56 +0100
changeset 1343 405223afdc32
parent 1273 fe7868017551
child 1376 d37a3939d86d
permissions -rw-r--r--
removed obsolete image reader stuff
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
1221
705f0a94600f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1212
diff changeset
    15
	instanceVariableNames:''
705f0a94600f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1212
diff changeset
    16
	classVariableNames:''
705f0a94600f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1212
diff changeset
    17
	poolDictionaries:''
705f0a94600f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1212
diff changeset
    18
	category:'* Projects & Packages *'
740
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
"
1273
fe7868017551 comment
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    39
    Build- and package information for creation of the st/x executable itself (with GUI)
740
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
996
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    55
applicationName
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    56
    "History: we want the helper files to be named: smalltalk*.*"
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    57
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    58
    ^ 'smalltalk'
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    59
!
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    60
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    61
applicationNameConsole
996
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    62
    ^ 'stx.com'
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    63
!
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    64
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    65
applicationNameNoConsole
996
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    66
    ^ 'stx.exe'
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    67
!
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    68
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    69
buildTarget
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    70
    "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
    71
     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
    72
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    73
     ^ 'exe'
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    74
!
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    75
996
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    76
documentExtensions
1049
eede3d15659a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1035
diff changeset
    77
    ^ #()
eede3d15659a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1035
diff changeset
    78
"/    ^ #('st')
996
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    79
!
4a35e075fe05 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 978
diff changeset
    80
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    81
isConsoleApplication
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    82
    ^ 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
    83
!
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
    84
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    85
isGUIApplication
1072
f72bea187609 comment: #isGUIApplication
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
    86
    ^ true "actually, we do both the console and the non-console app (see additionalTargets_bc_dot_mak)"
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    87
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    88
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    89
preRequisites
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    90
    ^ #(
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
    91
        #'stx:libbasic'    
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    92
        #'stx:libbasic2'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    93
        #'stx:libbasic3'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    94
        #'stx:libcomp'    
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    95
        #'stx:libhtml'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    96
        #'stx:libtool'    
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    97
        #'stx:libtool2'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    98
        #'stx:libui'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    99
        #'stx:libview'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   100
        #'stx:libview2'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   101
        #'stx:libwidg'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   102
        #'stx:libwidg2'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   103
        #'stx:libwidg3'
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   104
        #'stx:goodies/refactoryBrowser/helpers'
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   105
        #'stx:goodies/refactoryBrowser/parser'
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   106
        #'stx:goodies/refactoryBrowser/refactoring'
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   107
        #'stx:goodies/refactoryBrowser/changes'
1148
8dcf623eed7d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1124
diff changeset
   108
        #'stx:goodies/refactoryBrowser/browser'
1101
09e39a04cae6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   109
        #'stx:goodies/refactoryBrowser/lint'
748
28d8f35e349a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 740
diff changeset
   110
        #'stx:libboss'
1212
34d137f91cb8 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1201
diff changeset
   111
        #'stx:libjavascript'
1233
988c2d89396d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
   112
"/        #'stx:goodies/petitparser'
988c2d89396d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
   113
"/        #'stx:libjava'
988c2d89396d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
   114
"/        #'stx:libsvn'
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   115
    )
1148
8dcf623eed7d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1124
diff changeset
   116
1233
988c2d89396d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
   117
    "Modified: / 13-01-2012 / 13:03:52 / cg"
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   118
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   119
971
2c9807ced80f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 939
diff changeset
   120
splashFileName
2c9807ced80f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 939
diff changeset
   121
    ^ 'stx_splash'
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   122
! !
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   123
762
9cdba58d9a60 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 748
diff changeset
   124
!stx_projects_smalltalk class methodsFor:'description - building'!
9cdba58d9a60 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 748
diff changeset
   125
893
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   126
additionalFilesToInstall
901
7ee4e9a3330c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
   127
    "becomes part of the nsi list of files to install"
7ee4e9a3330c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 900
diff changeset
   128
893
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   129
    ^ #(
1035
ef310c7da196 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1028
diff changeset
   130
        '"*.wsp"'
1021
f36cbe90d694 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1011
diff changeset
   131
        '/x CVS "${STX_ROOT}\stx\projects\smalltalk\patches"'
f36cbe90d694 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1011
diff changeset
   132
        '/r /x CVS "${STX_ROOT}\stx\include"'
1028
9bdd8915250f automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1021
diff changeset
   133
        '/x CVS "${STX_ROOT}\stx\libview\styles\*"'
9bdd8915250f automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1021
diff changeset
   134
        'SetOutPath "$INSTDIR\bin\doc"'
1021
f36cbe90d694 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1011
diff changeset
   135
        '/r /x CVS "${STX_ROOT}\stx\doc\online"'
1035
ef310c7da196 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1028
diff changeset
   136
        'SetOutPath "$INSTDIR\bin\source"'
1028
9bdd8915250f automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1021
diff changeset
   137
        '/r /x CVS /x "not*" "${STX_ROOT}\stx\*.st"'
893
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
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   140
    "Created: / 01-03-2007 / 20:03:15 / cg"
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   141
!
c8f33507784d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   142
807
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
   143
iconFileName
a88ba24aad4a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 795
diff changeset
   144
    ^ 'stx_32x32.ico'
762
9cdba58d9a60 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 748
diff changeset
   145
! !
9cdba58d9a60 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 748
diff changeset
   146
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   147
!stx_projects_smalltalk class methodsFor:'description - contents'!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   148
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   149
classNamesAndAttributes
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   150
    ^ #(
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   151
        "<className> or (<className> attributes...) in load order"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   152
        #'stx_projects_smalltalk'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   153
    )
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   154
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   155
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   156
extensionMethodNames
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   157
    ^ #(
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   158
    )
902
db523b233ec8 Keep Make.proto
Stefan Vogel <sv@exept.de>
parents: 901
diff changeset
   159
!
db523b233ec8 Keep Make.proto
Stefan Vogel <sv@exept.de>
parents: 901
diff changeset
   160
db523b233ec8 Keep Make.proto
Stefan Vogel <sv@exept.de>
parents: 901
diff changeset
   161
protectedFileNames
1122
715da7750a21 changed: #protectedFileNames
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
   162
    "names of files which should NOT be generated (because they are hand-maintained)"
902
db523b233ec8 Keep Make.proto
Stefan Vogel <sv@exept.de>
parents: 901
diff changeset
   163
    "do NOT overwrite the hand-written Make.proto for now"
db523b233ec8 Keep Make.proto
Stefan Vogel <sv@exept.de>
parents: 901
diff changeset
   164
db523b233ec8 Keep Make.proto
Stefan Vogel <sv@exept.de>
parents: 901
diff changeset
   165
    ^ #( 'Make.proto' )
1122
715da7750a21 changed: #protectedFileNames
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
   166
715da7750a21 changed: #protectedFileNames
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
   167
    "Modified: / 21-12-2010 / 11:37:05 / cg"
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   168
! !
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   169
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   170
!stx_projects_smalltalk class methodsFor:'description - project information'!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   171
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   172
companyName
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   173
    "Return a companyname which will appear in <lib>.rc"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   174
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   175
    ^ 'eXept Software AG'
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   176
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   177
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   178
description
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   179
    "Return a description string which will appear in nt.def / bc.def"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   180
795
d7e661fdd09c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   181
    ^ 'Smalltalk/X IDE'
d7e661fdd09c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   182
d7e661fdd09c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   183
    "Modified: / 10-02-2007 / 18:36:19 / cg"
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   184
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   185
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   186
legalCopyright
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   187
    "Return a copyright string which will appear in <lib>.rc"
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   188
1249
744a7b1e6af7 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
   189
    ^ 'Copyright Claus Gittinger 1988-2012\nCopyright eXept Software AG 1998-2012'
795
d7e661fdd09c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   190
1249
744a7b1e6af7 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
   191
    "Modified: / 18-07-2012 / 19:12:22 / cg"
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   192
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   193
886
e2b59c951e8f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
   194
productFilename
e2b59c951e8f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
   195
    ^ 'SmalltalkX'
e2b59c951e8f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
   196
e2b59c951e8f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
   197
    "Modified: / 01-03-2007 / 19:34:15 / cg"
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   198
! !
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   199
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   200
!stx_projects_smalltalk class methodsFor:'description - startup'!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   201
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   202
startupClassName
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   203
    ^ #Smalltalk
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   204
!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   205
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   206
startupSelector
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   207
    ^ #start
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   208
! !
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   209
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   210
!stx_projects_smalltalk class methodsFor:'documentation'!
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   211
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   212
version
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   213
    ^ '$Header$'
1072
f72bea187609 comment: #isGUIApplication
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
   214
!
f72bea187609 comment: #isGUIApplication
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
   215
f72bea187609 comment: #isGUIApplication
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
   216
version_CVS
f72bea187609 comment: #isGUIApplication
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
   217
    ^ '$Header$'
740
9ea5f8935edf initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
   218
! !