Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F884045
TitlePane.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Subscribers
None
TitlePane.js
View Options
/*
Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
if
(
!
dojo
.
_hasResource
[
"dijit.TitlePane"
]){
dojo
.
_hasResource
[
"dijit.TitlePane"
]
=
true
;
dojo
.
provide
(
"dijit.TitlePane"
);
dojo
.
require
(
"dojo.fx"
);
dojo
.
require
(
"dijit._Templated"
);
dojo
.
require
(
"dijit.layout.ContentPane"
);
dojo
.
declare
(
"dijit.TitlePane"
,[
dijit
.
layout
.
ContentPane
,
dijit
.
_Templated
],{
title
:
""
,
open
:
true
,
toggleable
:
true
,
tabIndex
:
"0"
,
duration
:
dijit
.
defaultDuration
,
baseClass
:
"dijitTitlePane"
,
templateString
:
dojo
.
cache
(
"dijit"
,
"templates/TitlePane.html"
,
"<div class=\"${baseClass}\">\n\t<div dojoAttachEvent=\"onclick:_onTitleClick, onkeypress:_onTitleKey, onfocus:_handleFocus, onblur:_handleFocus, onmouseenter:_onTitleEnter, onmouseleave:_onTitleLeave\"\n\t\t\tclass=\"dijitTitlePaneTitle\" dojoAttachPoint=\"titleBarNode,focusNode\">\n\t\t<img src=\"${_blankGif}\" alt=\"\" dojoAttachPoint=\"arrowNode\" class=\"dijitArrowNode\" waiRole=\"presentation\"\n\t\t><span dojoAttachPoint=\"arrowNodeInner\" class=\"dijitArrowNodeInner\"></span\n\t\t><span dojoAttachPoint=\"titleNode\" class=\"dijitTitlePaneTextNode\"></span>\n\t</div>\n\t<div class=\"dijitTitlePaneContentOuter\" dojoAttachPoint=\"hideNode\" waiRole=\"presentation\">\n\t\t<div class=\"dijitReset\" dojoAttachPoint=\"wipeNode\" waiRole=\"presentation\">\n\t\t\t<div class=\"dijitTitlePaneContentInner\" dojoAttachPoint=\"containerNode\" waiRole=\"region\" tabindex=\"-1\" id=\"${id}_pane\">\n\t\t\t\t<!-- nested divs because wipeIn()/wipeOut() doesn't work right on node w/padding etc. Put padding on inner div. -->\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>\n"
),
attributeMap
:
dojo
.
delegate
(
dijit
.
layout
.
ContentPane
.
prototype
.
attributeMap
,{
title
:
{
node
:
"titleNode"
,
type
:
"innerHTML"
},
tooltip
:
{
node
:
"focusNode"
,
type
:
"attribute"
,
attribute
:
"title"
},
id
:
""
}),
postCreate
:
function
(){
if
(
!
this
.
open
){
this
.
hideNode
.
style
.
display
=
this
.
wipeNode
.
style
.
display
=
"none"
;
}
this
.
_setCss
();
dojo
.
setSelectable
(
this
.
titleNode
,
false
);
dijit
.
setWaiState
(
this
.
containerNode
,
"hidden"
,
this
.
open
?
"false"
:
"true"
);
dijit
.
setWaiState
(
this
.
focusNode
,
"pressed"
,
this
.
open
?
"true"
:
"false"
);
var
_1
=
this
.
hideNode
,
_2
=
this
.
wipeNode
;
this
.
_wipeIn
=
dojo
.
fx
.
wipeIn
({
node
:
this
.
wipeNode
,
duration
:
this
.
duration
,
beforeBegin
:
function
(){
_1
.
style
.
display
=
""
;
}});
this
.
_wipeOut
=
dojo
.
fx
.
wipeOut
({
node
:
this
.
wipeNode
,
duration
:
this
.
duration
,
onEnd
:
function
(){
_1
.
style
.
display
=
"none"
;
}});
this
.
inherited
(
arguments
);
},
_setOpenAttr
:
function
(
_3
){
if
(
this
.
open
!==
_3
){
this
.
toggle
();
}
},
_setToggleableAttr
:
function
(
_4
){
this
.
toggleable
=
_4
;
dijit
.
setWaiRole
(
this
.
focusNode
,
_4
?
"button"
:
"heading"
);
dojo
.
attr
(
this
.
focusNode
,
"tabIndex"
,
_4
?
this
.
tabIndex
:
"-1"
);
if
(
_4
){
dijit
.
setWaiState
(
this
.
focusNode
,
"controls"
,
this
.
id
+
"_pane"
);
}
this
.
_setCss
();
},
_setContentAttr
:
function
(
_5
){
if
(
!
this
.
open
||!
this
.
_wipeOut
||
this
.
_wipeOut
.
status
()
==
"playing"
){
this
.
inherited
(
arguments
);
}
else
{
if
(
this
.
_wipeIn
&&
this
.
_wipeIn
.
status
()
==
"playing"
){
this
.
_wipeIn
.
stop
();
}
dojo
.
marginBox
(
this
.
wipeNode
,{
h
:
dojo
.
marginBox
(
this
.
wipeNode
).
h
});
this
.
inherited
(
arguments
);
if
(
this
.
_wipeIn
){
this
.
_wipeIn
.
play
();
}
else
{
this
.
hideNode
.
style
.
display
=
""
;
}
}
},
toggle
:
function
(){
dojo
.
forEach
([
this
.
_wipeIn
,
this
.
_wipeOut
],
function
(
_6
){
if
(
_6
&&
_6
.
status
()
==
"playing"
){
_6
.
stop
();
}
});
var
_7
=
this
[
this
.
open
?
"_wipeOut"
:
"_wipeIn"
];
if
(
_7
){
_7
.
play
();
}
else
{
this
.
hideNode
.
style
.
display
=
this
.
open
?
""
:
"none"
;
}
this
.
open
=!
this
.
open
;
dijit
.
setWaiState
(
this
.
containerNode
,
"hidden"
,
this
.
open
?
"false"
:
"true"
);
dijit
.
setWaiState
(
this
.
focusNode
,
"pressed"
,
this
.
open
?
"true"
:
"false"
);
if
(
this
.
open
){
this
.
_onShow
();
}
else
{
this
.
onHide
();
}
this
.
_setCss
();
},
_setCss
:
function
(){
var
_8
=
this
.
titleBarNode
||
this
.
focusNode
;
if
(
this
.
_titleBarClass
){
dojo
.
removeClass
(
_8
,
this
.
_titleBarClass
);
}
this
.
_titleBarClass
=
"dijit"
+
(
this
.
toggleable
?
""
:
"Fixed"
)
+
(
this
.
open
?
"Open"
:
"Closed"
);
dojo
.
addClass
(
_8
,
this
.
_titleBarClass
);
this
.
arrowNodeInner
.
innerHTML
=
this
.
open
?
"-"
:
"+"
;
},
_onTitleKey
:
function
(
e
){
if
(
e
.
charOrCode
==
dojo
.
keys
.
ENTER
||
e
.
charOrCode
==
" "
){
if
(
this
.
toggleable
){
this
.
toggle
();
}
dojo
.
stopEvent
(
e
);
}
else
{
if
(
e
.
charOrCode
==
dojo
.
keys
.
DOWN_ARROW
&&
this
.
open
){
this
.
containerNode
.
focus
();
e
.
preventDefault
();
}
}
},
_onTitleEnter
:
function
(){
if
(
this
.
toggleable
){
dojo
.
addClass
(
this
.
focusNode
,
"dijitTitlePaneTitle-hover"
);
}
},
_onTitleLeave
:
function
(){
if
(
this
.
toggleable
){
dojo
.
removeClass
(
this
.
focusNode
,
"dijitTitlePaneTitle-hover"
);
}
},
_onTitleClick
:
function
(){
if
(
this
.
toggleable
){
this
.
toggle
();
}
},
_handleFocus
:
function
(
e
){
dojo
.
toggleClass
(
this
.
focusNode
,
this
.
baseClass
+
"Focused"
,
e
.
type
==
"focus"
);
},
setTitle
:
function
(
_9
){
dojo
.
deprecated
(
"dijit.TitlePane.setTitle() is deprecated. Use attr('title', ...) instead."
,
""
,
"2.0"
);
this
.
attr
(
"title"
,
_9
);
}});
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Apr 6, 10:24 (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
23325
Default Alt Text
TitlePane.js (4 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment