Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F884307
Gallery.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
Gallery.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
[
"dojox.image.Gallery"
]){
dojo
.
_hasResource
[
"dojox.image.Gallery"
]
=
true
;
dojo
.
provide
(
"dojox.image.Gallery"
);
dojo
.
experimental
(
"dojox.image.Gallery"
);
dojo
.
require
(
"dojo.fx"
);
dojo
.
require
(
"dijit._Widget"
);
dojo
.
require
(
"dijit._Templated"
);
dojo
.
require
(
"dojox.image.ThumbnailPicker"
);
dojo
.
require
(
"dojox.image.SlideShow"
);
dojo
.
declare
(
"dojox.image.Gallery"
,[
dijit
.
_Widget
,
dijit
.
_Templated
],{
imageHeight
:
375
,
imageWidth
:
500
,
pageSize
:
dojox
.
image
.
SlideShow
.
prototype
.
pageSize
,
autoLoad
:
true
,
linkAttr
:
"link"
,
imageThumbAttr
:
"imageUrlThumb"
,
imageLargeAttr
:
"imageUrl"
,
titleAttr
:
"title"
,
slideshowInterval
:
3
,
templateString
:
dojo
.
cache
(
"dojox.image"
,
"resources/Gallery.html"
,
"<div dojoAttachPoint=\"outerNode\" class=\"imageGalleryWrapper\">\n\t<div dojoAttachPoint=\"thumbPickerNode\"></div>\n\t<div dojoAttachPoint=\"slideShowNode\"></div>\n</div>\n"
),
postCreate
:
function
(){
this
.
widgetid
=
this
.
id
;
this
.
inherited
(
arguments
);
this
.
thumbPicker
=
new
dojox
.
image
.
ThumbnailPicker
({
linkAttr
:
this
.
linkAttr
,
imageLargeAttr
:
this
.
imageLargeAttr
,
imageThumbAttr
:
this
.
imageThumbAttr
,
titleAttr
:
this
.
titleAttr
,
useLoadNotifier
:
true
,
size
:
this
.
imageWidth
},
this
.
thumbPickerNode
);
this
.
slideShow
=
new
dojox
.
image
.
SlideShow
({
imageHeight
:
this
.
imageHeight
,
imageWidth
:
this
.
imageWidth
,
autoLoad
:
this
.
autoLoad
,
linkAttr
:
this
.
linkAttr
,
imageLargeAttr
:
this
.
imageLargeAttr
,
titleAttr
:
this
.
titleAttr
,
slideshowInterval
:
this
.
slideshowInterval
,
pageSize
:
this
.
pageSize
},
this
.
slideShowNode
);
var
_1
=
this
;
dojo
.
subscribe
(
this
.
slideShow
.
getShowTopicName
(),
function
(
_2
){
_1
.
thumbPicker
.
_showThumbs
(
_2
.
index
);
});
dojo
.
subscribe
(
this
.
thumbPicker
.
getClickTopicName
(),
function
(
_3
){
_1
.
slideShow
.
showImage
(
_3
.
index
);
});
dojo
.
subscribe
(
this
.
thumbPicker
.
getShowTopicName
(),
function
(
_4
){
_1
.
slideShow
.
moveImageLoadingPointer
(
_4
.
index
);
});
dojo
.
subscribe
(
this
.
slideShow
.
getLoadTopicName
(),
function
(
_5
){
_1
.
thumbPicker
.
markImageLoaded
(
_5
);
});
this
.
_centerChildren
();
},
setDataStore
:
function
(
_6
,
_7
,
_8
){
this
.
thumbPicker
.
setDataStore
(
_6
,
_7
,
_8
);
this
.
slideShow
.
setDataStore
(
_6
,
_7
,
_8
);
},
reset
:
function
(){
this
.
slideShow
.
reset
();
this
.
thumbPicker
.
reset
();
},
showNextImage
:
function
(
_9
){
this
.
slideShow
.
showNextImage
();
},
toggleSlideshow
:
function
(){
dojo
.
deprecated
(
"dojox.widget.Gallery.toggleSlideshow is deprecated. Use toggleSlideShow instead."
,
""
,
"2.0"
);
this
.
toggleSlideShow
();
},
toggleSlideShow
:
function
(){
this
.
slideShow
.
toggleSlideShow
();
},
showImage
:
function
(
_a
,
_b
){
this
.
slideShow
.
showImage
(
_a
,
_b
);
},
resize
:
function
(
_c
){
this
.
thumbPicker
.
resize
(
_c
);
},
_centerChildren
:
function
(){
var
_d
=
dojo
.
marginBox
(
this
.
thumbPicker
.
outerNode
);
var
_e
=
dojo
.
marginBox
(
this
.
slideShow
.
outerNode
);
var
_f
=
(
_d
.
w
-
_e
.
w
)
/
2
;
if
(
_f
>
0
){
dojo
.
style
(
this
.
slideShow
.
outerNode
,
"marginLeft"
,
_f
+
"px"
);
}
else
{
if
(
_f
<
0
){
dojo
.
style
(
this
.
thumbPicker
.
outerNode
,
"marginLeft"
,(
_f
*-
1
)
+
"px"
);
}
}
}});
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Apr 6, 10:25 (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26153
Default Alt Text
Gallery.js (2 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment