OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // require: listselectionmodel.js | 5 // require: listselectionmodel.js |
6 | 6 |
7 /** | 7 /** |
8 * @fileoverview This implements a list control. | 8 * @fileoverview This implements a list control. |
9 */ | 9 */ |
10 | 10 |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
263 this.afterFiller_ = this.ownerDocument.createElement('div'); | 263 this.afterFiller_ = this.ownerDocument.createElement('div'); |
264 this.beforeFiller_.className = 'spacer'; | 264 this.beforeFiller_.className = 'spacer'; |
265 this.afterFiller_.className = 'spacer'; | 265 this.afterFiller_.className = 'spacer'; |
266 this.appendChild(this.beforeFiller_); | 266 this.appendChild(this.beforeFiller_); |
267 this.appendChild(this.afterFiller_); | 267 this.appendChild(this.afterFiller_); |
268 | 268 |
269 var length = this.dataModel ? this.dataModel.length : 0; | 269 var length = this.dataModel ? this.dataModel.length : 0; |
270 this.selectionModel = new ListSelectionModel(length); | 270 this.selectionModel = new ListSelectionModel(length); |
271 | 271 |
272 this.addEventListener('dblclick', this.handleDoubleClick_); | 272 this.addEventListener('dblclick', this.handleDoubleClick_); |
273 this.addEventListener('mousedown', this.handleMouseDownUp_); | 273 this.addEventListener('mousedown', this.handleMouseDownUp_, false); |
274 this.addEventListener('mouseup', this.handleMouseDownUp_); | 274 this.addEventListener('mouseup', this.handleMouseDownUp_, false); |
stuartmorgan
2011/01/06 19:27:33
Isn't false the default? Why do we need this here
James Hawkins
2011/01/06 20:06:43
Removing per off-list conversation.
| |
275 this.addEventListener('keydown', this.handleKeyDown); | 275 this.addEventListener('keydown', this.handleKeyDown); |
276 this.addEventListener('scroll', this.redraw.bind(this)); | 276 this.addEventListener('scroll', this.redraw.bind(this)); |
277 | 277 |
278 // Make list focusable | 278 // Make list focusable |
279 if (!this.hasAttribute('tabindex')) | 279 if (!this.hasAttribute('tabindex')) |
280 this.tabIndex = 0; | 280 this.tabIndex = 0; |
281 }, | 281 }, |
282 | 282 |
283 /** | 283 /** |
284 * Returns the height of an item, measuring it if necessary. | 284 * Returns the height of an item, measuring it if necessary. |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
608 } | 608 } |
609 }, | 609 }, |
610 }; | 610 }; |
611 | 611 |
612 cr.defineProperty(List, 'disabled', cr.PropertyKind.BOOL_ATTR); | 612 cr.defineProperty(List, 'disabled', cr.PropertyKind.BOOL_ATTR); |
613 | 613 |
614 return { | 614 return { |
615 List: List | 615 List: List |
616 } | 616 } |
617 }); | 617 }); |
OLD | NEW |