/usr/include/ossim/base/ossimEventIds.h is in libossim-dev 1.7.21-3ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// Author: Garrett Potts
// Description: A brief description of the contents of the file.
//
//
//*************************************************************************
// $Id: ossimEventIds.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimEventIds_HEADER
#define ossimEventIds_HEADER
#define OSSIM_EVENT_NULL_ID -1
// destruction event
#define OSSIM_EVENT_OBJECT_DESTRUCTING_ID 1
// connection events
#define OSSIM_EVENT_CONNECTION_DISCONNECT_ID 3
#define OSSIM_EVENT_CONNECTION_CONNECT_ID 4
#define OSSIM_EVENT_REFRESH_ID 5
#define OSSIM_EVENT_PROCESS_PROGRESS_ID 20
#define OSSIM_EVENT_ADD_OBJECT_ID 40
#define OSSIM_EVENT_REMOVE_OBJECT_ID 41
#define OSSIM_EVENT_PROPERTY_ID 80
#define OSSIM_EVENT_STATE_CHANGED_ID 90
#define OSSIM_EVENT_AOI_RECTANGLE_ID 200
#define OSSIM_EVENT_AOI_POLYGON_ID 201
#define OSSIM_MOUSE_EVENT_ID 400
#define OSSIM_MOUSE_EVENT_LEAVE_WINDOW_ID 401
#define OSSIM_MOUSE_EVENT_MOTION_ID 402
#define OSSIM_MOUSE_EVENT_LEFT_DOWN_ID 403
#define OSSIM_MOUSE_EVENT_RIGHT_DOWN_ID 404
#define OSSIM_MOUSE_EVENT_MIDDLE_DOWN_ID 405
#define OSSIM_MOUSE_EVENT_LEFT_UP_ID 406
#define OSSIM_MOUSE_EVENT_RIGHT_UP_ID 407
#define OSSIM_MOUSE_EVENT_MIDDLE_UP_ID 408
#define OSSIM_MOUSE_EVENT_LEFT_DCLICK_ID 409
#define OSSIM_MOUSE_EVENT_RIGHT_DCLICK_ID 410
#define OSSIM_MOUSE_EVENT_MIDDLE_DCLICK_ID 411
#define OSSIM_MOUSE_EVENT_ENTER_WINDOW_ID 412
#define OSSIM
#define OSSIM_KEYBOARD_EVENT_ID 500
#define OSSIM_EVENT_VIEW_ID 600
#define OSSIM_EVENT_DISPLAY_LIST_ID 700
#define OSSIM_EVENT_DISPLAY_REFRESH_ID 701
#define OSSIM_EVENT_IMAGE_GEOMETRY_ID 800
// this is the first user defined id. If users want to add
// additional id's they need to start at this id. That way
// we have no conflicts.
//
#define OSSIM_FIRST_USER_DEFINED_EVENT_ID 1000000
#endif
|