home *** CD-ROM | disk | FTP | other *** search
-
-
- !EwTableList privateMethods !
-
- etchLeftUsing: anRC
- "Paint etching along the left side of the EwRenderContext."
-
- anRC drawable
- fillRectangle: anRC gc
- x: anRC x
- y: anRC y
- width: self etchSize
- height: anRC height - 1!
-
- etchRightUsing: anRC
- "Paint etching along the right side of the EwRenderContext."
-
- anRC drawable
- fillRectangle: anRC gc
- x: anRC right - self etchSize
- y: anRC y + 1
- width: self etchSize
- height: anRC height - 1! !
-
- EwTableList commentFor: #etchLeftUsing: is:
- 'Copyright 1995 Object Technology International Inc.
- All rights reserved.
-
- !!'!
- EwTableList commentFor: #etchRightUsing: is:
- 'Copyright 1995 Object Technology International Inc.
- All rights reserved.
-
- !!'!