1 /* ***************************************************************************
2 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 * ***************************************************************************
23 * Authors: Wonseop Kim ( wonseop.kim@samsung.com )
27 * "Handler" is a widget helping a user to scroll a window or panel.
28 * It is different from the scrollview feature in that the handler has a fixed size
29 * and disappears when a scroll size is smaller than a parent window's size.
30 * If the handler widget is activated, a scroll bar on the screen will be deactivated.
31 * The handler widget supports scrolling up and down and indicates the position of the scrolled window.
35 * data-handler : This attribute is indicating that whether enable.
36 * If you want to use, you will set 'true'.
37 * data-handler-theme : Set the widget theme ( optional )
41 * enableHandler ( boolean )
42 * : Get or set the use of handler widget.
43 * If the value is "true", it will be run handler widget.
44 * If the value is "false", it will be not run handler widget.
45 * If no value is specified, will act as a getter.
51 * <div data-role="content" data-scroll="y" data-handler="true">
52 * <ul data-role="listview">
53 * <li data-role="list-divider">A</li>
54 * <li><a href="#">Adam Kinkaid</a></li>
62 The handler widget enables the user to vertically scroll through a page or panel using a fixed-size handle. The widget indicates the position of the scrolled window, and only appears on the screen if the parent page or panel's scroll size is larger than the screen size. <br/> To add a handler widget to the application, use the following code:
64 <div data-role="content" data-scroll="y" data-handler="true">
65 <ul data-role="listview">
66 <li data-role="list-divider">A</li>
67 <li><a href="#">Adam Kinkaid</a></li>
72 You can use the enableHandler method with the handler widget to get (if no value is defined) or set the handler usage status. If the [enable] value is true, the handler is enabled; otherwise the handler is not used.
74 $("#.selector").scrollview("enableHandler", [enable]);
77 @property {Boolean} data-handler
78 Enables the handler widget. The value must be set to true.
81 @property {String} data-handler-theme
82 Sets the handler widget theme.
84 ( function ( $, document, undefined ) {
85 // The options of handler in scrollview
86 $.tizen.scrollview.prototype.options.handler = false;
87 $.tizen.scrollview.prototype.options.handlerTheme = "s";
89 var originSetOption = $.tizen.scrollview.prototype._setOption,
90 createHandler = function ( target ) {
92 prefix = "<div class=\"ui-handler ui-handler-",
93 suffix = "\"><div class=\"ui-handler-track\"><div class=\"ui-handler-thumb\"></div></div></div>",
94 scrollview = $view.data( "scrollview" ),
95 direction = scrollview.options.direction,
96 isHorizontal = ( scrollview.options.direction === "x" ),
97 _$view = scrollview._$view,
98 _$clip = scrollview._$clip,
106 isTouchable = $.support.touch,
107 dragStartEvt = ( isTouchable ? "touchstart" : "mousedown" ) + ".handler",
108 dragMoveEvt = ( isTouchable ? "touchmove" : "mousemove" ) + ".handler",
109 dragStopEvt = ( isTouchable ? "touchend" : "mouseup" ) + ".handler",
110 calculateLength = function () {
111 clipLength = ( isHorizontal ? _$clip.width() : _$clip.height() );
112 viewLength = ( isHorizontal ? _$view.outerWidth( true ) : _$view.outerHeight( true ) ) - clipLength;
113 trackLength = clipLength - handlerHeight - handlerMargin * 2;
115 setHanderPostion = function ( scrollPos ) {
116 var handlerPos = Math.round( ( isHorizontal ? scrollPos.x : scrollPos.y ) / viewLength * trackLength );
117 handlerThumb.css( isHorizontal ? "left" : "top", handlerPos );
120 if ( $view.find( ".ui-handler-thumb" ).length !== 0 || typeof direction !== "string" ) {
124 $view.append( prefix + direction + suffix );
125 handler = $view.find( ".ui-handler" );
126 handlerThumb = $view.find( ".ui-handler-thumb" ).hide();
127 handlerHeight = ( isHorizontal ? handlerThumb.width() : handlerThumb.height() );
128 handlerMargin = ( isHorizontal ? parseInt( handler.css( "right" ), 10 ) : parseInt( handler.css( "bottom" ), 10 ) );
130 scrollview.enableHandler( scrollview.options.handler );
137 handlerThumb.bind( dragStartEvt, {
139 }, function ( event ) {
140 scrollview._stopMScroll();
142 var target = event.data.e,
143 t = ( isTouchable ? event.originalEvent.targetTouches[0] : event );
145 target.css( "opacity", 1.0 );
149 X : parseInt( target.css( 'left' ), 10 ) || 0,
150 Y : parseInt( target.css( 'top' ), 10 ) || 0,
156 _$view.trigger( "scrollstart" );
157 event.preventDefault();
158 event.stopPropagation();
160 $( document ).bind( dragMoveEvt, function ( event ) {
161 var moveData = $view.moveData,
164 t = ( isTouchable ? event.originalEvent.targetTouches[0] : event );
166 handlePos = ( isHorizontal ? moveData.X + t.pageX - moveData.pX : moveData.Y + t.pageY - moveData.pY );
168 if ( handlePos < 0 ) {
172 if ( handlePos > trackLength ) {
173 handlePos = trackLength;
175 scrollPos = - Math.round( handlePos / trackLength * viewLength );
177 $view.attr( "display", "none" );
178 if ( isHorizontal ) {
179 scrollview._setScrollPosition( scrollPos, 0 );
180 moveData.target.css( {
184 scrollview._setScrollPosition( 0, scrollPos );
185 moveData.target.css( {
189 $view.attr( "display", "inline" );
191 event.preventDefault();
192 event.stopPropagation();
193 }).bind( dragStopEvt, function ( event ) {
194 $( document ).unbind( dragMoveEvt ).unbind( dragStopEvt );
196 $view.moveData = null;
197 _$view.trigger( "scrollstop" );
199 event.preventDefault();
203 $( document ).bind( dragMoveEvt, function ( event ) {
204 var isVisible = false,
205 vclass = "ui-scrollbar-visible";
207 if ( scrollview._$vScrollBar ) {
208 isVisible = scrollview._$vScrollBar.hasClass( vclass );
209 } else if ( scrollview._$hScrollBar ) {
210 isVisible = scrollview._$hScrollBar.hasClass( vclass );
213 if ( isVisible || $view.moveData !== null ) {
214 if ( handlerThumb.hasClass( "ui-handler-visible" ) ) {
215 _$view.trigger( "scrollupdate" );
217 _$view.trigger( "scrollstop" );
220 }).bind( dragStopEvt, function ( event ) {
221 if ( handlerThumb.hasClass( "ui-handler-visible" ) ) {
222 _$view.trigger( "scrollstop" );
226 $view.bind( "scrollstart", function ( event ) {
227 if ( !scrollview.enableHandler() ) {
232 if ( clipLength > viewLength || trackLength < ( handlerHeight * 4 / 3 ) ) {
236 handlerThumb.addClass( "ui-handler-visible" )
240 event.preventDefault();
241 event.stopPropagation();
242 }).bind( "scrollupdate", function ( event, data ) {
243 if ( !scrollview.enableHandler() || clipLength > viewLength || trackLength < ( handlerHeight * 4 / 3 ) ) {
247 setHanderPostion( scrollview.getScrollPosition() );
249 event.preventDefault();
250 event.stopPropagation();
251 }).bind( "scrollstop", function ( event ) {
252 if ( !scrollview.enableHandler() || clipLength > viewLength ) {
256 if ( scrollview._handlerTimer ) {
257 clearTimeout( scrollview._handlerTimer );
258 scrollview._handlerTimer = 0;
260 scrollview._handlerTimer = setTimeout( function () {
261 if ( scrollview._timerID === 0 && $view.moveData === null ) {
262 handlerThumb.removeClass( "ui-handler-visible" )
264 .css( "opacity", 1.0 )
266 scrollview._handlerTimer = 0;
270 event.preventDefault();
271 }).bind( "mousewheel", function ( event ) {
272 handlerThumb.removeClass( "ui-handler-visible" ).hide();
273 setHanderPostion( scrollview.getScrollPosition() );
277 $.extend( $.tizen.scrollview.prototype, {
278 enableHandler: function ( enabled ) {
279 if ( typeof enabled === 'undefined' ) {
280 return this.options.handler;
283 this.options.handler = !!enabled;
285 var view = this.element;
286 if ( this.options.handler ) {
287 if ( view.find( ".ui-handler" ).length === 0 ) {
288 createHandler( view );
291 view.find( ".ui-scrollbar" ).hide();
292 view.find( ".ui-handler" ).show();
294 view.find( ".ui-handler" ).hide();
295 view.find( ".ui-scrollbar" ).show();
299 _setOption: function ( key, value ) {
300 if ( key === "handler") {
301 this.enableHandler( value );
303 originSetOption.call( this, key, value );
310 $( document ).delegate( ":jqmData(scroll)", "scrollviewcreate", function () {
311 var widget = $( this );
312 if ( widget.attr( "data-" + $.mobile.ns + "scroll" ) === "none"
313 || widget.jqmData( "handler" ) !== true ) {
316 widget.scrollview( "enableHandler", "true" );
318 } ( jQuery, document ) );