ImageSequence.st
author ca
Mon, 09 Mar 1998 17:06:35 +0100
changeset 861 10bbb13fcb05
parent 631 5e1743a03c89
child 886 1f614850a058
permissions -rw-r--r--
add more simple drag & drop functionality: support one icon for a set of drag objects
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
617
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG 
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
	      All Rights Reserved
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
Object subclass:#ImageSequence
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:'frames'
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'Graphics-Images'
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!ImageSequence class methodsFor:'documentation'!
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
copyright
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
"
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
 COPYRIGHT (c) 1997 by eXept Software AG 
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
	      All Rights Reserved
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 This software is furnished under a license and may be used
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 only in accordance with the terms of that license and with the
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 be provided or otherwise made available to, or used by, any
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 other person.  No title to or ownership of the software is
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 hereby transferred.
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
"
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
!
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
documentation
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
"
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    An ImageSequence represents a sequence of images as contained
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    in an animated gif or in a movie file.
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    ImageSequence itself is abstract and possibly redefined to hold
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
    additional attributes by specific movie representations.
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    [author:]
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
        Claus Gittinger
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
    [see also:]
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
        ImageFrame
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
        Image
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
"
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
! !
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
631
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    56
!ImageSequence methodsFor:'accessing'!
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    57
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    58
frames
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    59
    "return the value of the instance variable 'frames' (automatically generated)"
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    60
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    61
    ^ frames
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    62
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    63
    "Created: 24.6.1997 / 20:43:20 / cg"
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    64
!
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    65
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    66
frames:something
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    67
    "set the value of the instance variable 'frames' (automatically generated)"
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    68
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    69
    frames := something.
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    70
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    71
    "Created: 24.6.1997 / 20:43:21 / cg"
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    72
! !
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    73
617
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
!ImageSequence class methodsFor:'documentation'!
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
version
631
5e1743a03c89 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
    77
    ^ '$Header: /cvs/stx/stx/libview2/ImageSequence.st,v 1.2 1997-06-27 17:24:28 cg Exp $'
617
20a86b0e23d2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
! !