Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: experimental/conways_life/events/eventtype.js

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2011 (c) The Native Client Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * @fileoverview Definitions of common modeler events triggered by various
7 * toolbars, keyboard shortcuts, and other interface elements.
8 */
9
10 goog.provide('uikit.events.EventType');
11
12 /**
13 * Event types triggered by the various user interface elements.
14 * @enum {string}
15 */
16 uikit.events.EventType = {
17 ACTION: 'uikit_action', // General UI action event.
18 DRAG_START: 'drag_start', // Start of a mouse-drag event sequence.
19 DRAG: 'drag', // Sent while the mouse is dragging.
20 DRAG_END: 'drag_end', // End of a mouse-drag sequence.
21 ORBIT: 'orbit', // Orbit tool events.
22 LINE: 'line', // Line tool events
23 PUSH_PULL: 'pushpull' // Push-pull tool events.
24 }
OLDNEW
« no previous file with comments | « experimental/conways_life/events/event_test.html ('k') | experimental/conways_life/img/dead_cell.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698