Sha256: be1786763c9738dd8d38037ccdfcdec33e5264ca34e2f64e382c2650dcf684e7
Contents?: true
Size: 1.74 KB
Versions: 10
Compression:
Stored size: 1.74 KB
Contents
HCalendarPulldown = HMiniMenu.extend componentName: 'calendar_pulldown' defaultEvents: click: true resize: true preserveTime: true controlDefaults: HMiniMenu.prototype.controlDefaults.extend calendarAlign: 'right' label: '' calendarRect: -> [ x, y ] = [ @pageX(), @pageY() ] if @options.calendarAlign == 'right' return [ x-200+@rect.width, y, 200, 200 ] else return [ x, y, 200, 200 ] repositionMenuItems: -> @menuItemView.setRect( @calendarRect() ) @menuItemView.drawRect() menuShow: -> @base() @setLabel( @options.labelHide ) menuHide: -> @base() @setLabel( @options.labelShow ) setValueObj: (_valueObj)-> @base(_valueObj) if @calendar? @calendar.valueObj.release( @calendar ) @valueObj.bind(@calendar) refreshValue: -> _date = moment(@value).utc() @_timePreserve = [ _date.hours(), _date.minutes(), _date.seconds() ] if @options.preserveTime @calendar.setValue(@value) drawSubviews: -> @menuItemView = HView.new( @calendarRect(), @app, visible: false logicParent: @ style: overflow: 'visible' ) HControl.extend( defaultEvents: click: true click: -> @parent.options.logicParent.menuHide() true ).new( [ 0, 0, 200, 20 ], @menuItemView ) @calendar = HCalendar.extend( refreshValue: -> @base() @parent.options.logicParent.setValue(@value) ).new( [ 0, 20, 200, 180 ], @menuItemView, value: @value valueObj: @valueObj preserveTime: @options.preserveTime style: boxShadow: '0 0 5px #333' borderRadius: '5px' ) HCalendarPullDown = HCalendarPulldown HCalendarMenu = HCalendarPulldown HCalenderButton = HCalendarPulldown
Version data entries
10 entries across 10 versions & 1 rubygems