WAWindowDecoration


Seaside-Components-Decorations

Comment:



Hierarchy:

ProtoObject
Object
WAPresenter
WADecoration
WAWindowDecoration
  • SCDatabaseWindowDecoration

Summary:

instance variables:

title

methods:

instance class
as yet unclassified no messages

Detail:

instance variables:

title
inferredType:
UndefinedObject

instance methods:

as yet unclassified
isGlobal

	^ true
renderCloseButtonOn: html

	html anchorWithAction: [self component answer] text: 'close'
renderContentOn: html

	html divClass: 'window-titlebar' with: [
		html spanClass: 'window-close' with: [self renderCloseButtonOn: html].		
		html spanClass: 'window-title' with: title.
	].
	html divClass: 'window-content' with: [self renderOwnerOn: html].
style

	^ '.window-titlebar {background-color: #aaaaaa; padding: 5px; margin-bottom: 5px}
	    .window-close {float: right}
	   .window-title {}
	    .window-content {clear: both}
	'
title: aString

	title _ aString

class methods:

^top


- made by Dandelion -