Created
September 15, 2010 08:05
-
-
Save cboulanger/580398 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A simple time chooser widget based on the combobox | |
*/ | |
qx.Class.define("TimeChooser", | |
{ | |
extend : qx.ui.form.ComboBox, | |
/* | |
***************************************************************************** | |
CONSTRUCTOR | |
***************************************************************************** | |
*/ | |
/** | |
* Constructor. Creates time dropdown | |
*/ | |
construct : function( date, format ) | |
{ | |
this.base(arguments); | |
this.setDate( date || new Date() ); | |
this.setTimeFormat( | |
format || | |
new qx.util.format.DateFormat(qx.locale.Date.getTimeFormat("short") ) | |
); | |
/* | |
* create list items with 15 minute increments | |
*/ | |
var item, | |
f = this.getTimeFormat(), | |
m15 = 1000*60*15, | |
hour = 1000*60*60, | |
day = hour*24, | |
t = this.getDate().getTime(), | |
d = new Date( day * Math.floor( t / day) + ( this.isExcludeNight() ? 4 * hour:0) ); | |
while ( d.getDay() == this.getDate().getDay() ) | |
{ | |
this.add( new qx.ui.form.ListItem( f.format(d) ) ); | |
d.setTime( d.getTime() + m15 ); | |
} | |
/* | |
* set the time, rounded by 15 minutes | |
*/ | |
t = new Date( m15 * Math.floor( t / m15 ) ); | |
this.setValue( f.format( t ) ); | |
}, | |
/* | |
***************************************************************************** | |
PROPERTIES | |
***************************************************************************** | |
*/ | |
properties : | |
{ | |
date : | |
{ | |
check : "Date", | |
nullable : false | |
}, | |
timeFormat : | |
{ | |
check : "qx.util.format.DateFormat", | |
nullable : false | |
}, | |
excludeNight : | |
{ | |
check : "Boolean", | |
init : true | |
} | |
}, | |
}); | |
this.getRoot().add( new TimeChooser().set({ | |
width : 70 | |
}), {top: 10, left:10}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment