tesseract  3.03
/usr/local/google/home/jbreiden/tesseract-ocr-read-only/java/com/google/scrollview/events/SVEventType.java
Go to the documentation of this file.
00001 // Copyright 2007 Google Inc. All Rights Reserved.
00002 // 
00003 // Licensed under the Apache License, Version 2.0 (the "License"); You may not
00004 // use this file except in compliance with the License. You may obtain a copy of
00005 // the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by
00006 // applicable law or agreed to in writing, software distributed under the
00007 // License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
00008 // OF ANY KIND, either express or implied. See the License for the specific
00009 // language governing permissions and limitations under the License.
00010 
00011 package com.google.scrollview.events;
00012 
00020 public enum SVEventType {
00021   SVET_DESTROY, // Window has been destroyed by user.
00022   SVET_EXIT, // User has destroyed the last window by clicking on the 'X'
00023   SVET_CLICK, // Any button pressed thats not a popup trigger. 
00024   SVET_SELECTION, // Left button selection.
00025   SVET_INPUT, // Any kind of input
00026   SVET_MOUSE, // The mouse has moved with a button pressed.
00027   SVET_MOTION, // The mouse has moved with no button pressed.
00028   SVET_HOVER, // The mouse has stayed still for a second.
00029   SVET_POPUP, // A command selected through a popup menu
00030   SVET_MENU; // A command selected through the menubar
00031 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines