stx_libview.st
author Claus Gittinger <cg@exept.de>
Mon, 04 Dec 2006 13:19:10 +0100
changeset 4687 d1ea98e5e2e8
parent 4605 d102d44d28a1
child 4698 139537a14285
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4582
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libview' }"
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
LibraryDefinition subclass:#stx_libview
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'* Projects *'
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
!stx_libview class methodsFor:'description - contents'!
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
classNamesAndAttributes
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
    ^ #(
4687
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    15
	"/ <className> or (<className> attributes...)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    16
	('AlphaMask' #autoload)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    17
	('BitmapFont' #autoload)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    18
	('Border' #autoload)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    19
	'Color'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    20
	'ColorPalette'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    21
	'Colormap'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    22
	('CompoundFont' #autoload)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    23
	'Controller'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    24
	('ControllerWithMenu' #autoload)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    25
	'Cursor'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    26
	'Depth16Image'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    27
	'Depth1Image'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    28
	'Depth24Image'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    29
	'Depth2Image'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    30
	'Depth32Image'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    31
	'Depth4Image'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    32
	'Depth8Image'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    33
	'DeviceGraphicsContext'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    34
	'DeviceHandle'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    35
	'DeviceWorkstation'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    36
	'DisplayRootView'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    37
	'DisplaySurface'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    38
	('FixedPalette' #autoload)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    39
	'Font'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    40
	'FontDescription'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    41
	'Form'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    42
	('GLXWorkstation' #unix)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    43
	('GraphicsAttributes' #autoload)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    44
	'GraphicsContext'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    45
	'GraphicsDevice'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    46
	'GraphicsMedium'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    47
	'HostGraphicsDevice'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    48
	'Image'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    49
	'ImageMask'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    50
	'ImageReader'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    51
	'KeyboardForwarder'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    52
	'KeyboardMap'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    53
	('MDIChildView' #autoload)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    54
	'MappedPalette'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    55
	'ModalBox'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    56
	'MonoMappedPalette'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    57
	('NeXTWorkstation' #autoload)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    58
	'OpenGLConstants'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    59
	'PopUpView'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    60
	'ResourcePack'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    61
	'ShadowView'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    62
	'SimpleView'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    63
	'StandardSystemView'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    64
	'SynchronousWindowSensor'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    65
	'TopView'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    66
	('TranslucentColor' #autoload)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    67
	'View'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    68
	'ViewStyle'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    69
	('WinWorkstation'  #win32)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    70
	('WinPrinter'   #win32)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    71
	'WindowEvent'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    72
	'WindowGroup'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    73
	'WindowSensor'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    74
	'WindowingTransformation'
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    75
	('XWorkstation' #unix)
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
    76
	'stx_libview'
4582
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
    )
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
    "Modified: / 14-09-2006 / 11:04:02 / cg"
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
!
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
extensionMethodNames
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
    ^ #(
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
    )
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
! !
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
4583
400d845f6bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    87
!stx_libview class methodsFor:'description - files'!
400d845f6bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    88
400d845f6bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    89
protectedFileNames
400d845f6bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    90
    "do NOT overwrite the hand-written Make.proto"
400d845f6bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    91
4599
e734a44eae11 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4593
diff changeset
    92
    ^ #( 'Make.proto' )
4583
400d845f6bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    93
400d845f6bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    94
    "Created: / 14-09-2006 / 14:39:33 / cg"
4599
e734a44eae11 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 4593
diff changeset
    95
    "Modified: / 14-09-2006 / 16:15:22 / cg"
4583
400d845f6bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    96
! !
400d845f6bf0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    97
4582
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
!stx_libview class methodsFor:'description - project information'!
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
companyName
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
    "Return a companyname which will appear in <lib>.rc"
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
    ^ 'eXept Software AG'
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
!
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
description
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
    "Return a description string which will appear in nt.def / bc.def"
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
    ^ 'Smalltalk/X Low Level Graphic Interfacing'
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
    "Modified: / 14-09-2006 / 10:54:54 / cg"
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
!
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
legalCopyright
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
    "Return a copyright string which will appear in <lib>.rc"
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
    ^ 'Copyright Claus Gittinger 1988-2006\nCopyright eXept Software AG 1998-2006'
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
!
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
productName
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
    "Return a product name which will appear in <lib>.rc"
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
    ^ 'Smalltalk/X'
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
! !
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
!stx_libview class methodsFor:'documentation'!
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
version
4687
d1ea98e5e2e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4605
diff changeset
   129
    ^ '$Header: /cvs/stx/stx/libview/stx_libview.st,v 1.6 2006-12-04 12:19:10 cg Exp $'
4582
b3b3644b1751 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
! !