< prev index next >

modules/javafx.graphics/src/main/java/com/sun/glass/events/ViewEvent.java

Print this page
rev 10044 : 8166230: use @Native annotation in graphics, media classes
Reviewed-by: kcr
   1 /*
   2  * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package com.sun.glass.events;
  26 


  27 public class ViewEvent {
  28     final static public int ADD                 = 411;
  29     final static public int REMOVE              = 412;
  30 
  31     final static public int REPAINT             = 421;
  32     final static public int RESIZE              = 422;
  33     final static public int MOVE                = 423; // a-la "insets changed"
  34 
  35     final static public int FULLSCREEN_ENTER    = 431;
  36     final static public int FULLSCREEN_EXIT     = 432;
  37 
  38     static public String getTypeString(int type) {
  39         String string = "UNKNOWN";
  40         switch (type) {
  41             case ADD: string = "ADD"; break;
  42             case REMOVE: string = "REMOVE"; break;
  43 
  44             case REPAINT: string = "REPAINT"; break;
  45             case RESIZE: string = "RESIZE"; break;
  46             case MOVE: string = "MOVE"; break;
  47 
  48             case FULLSCREEN_ENTER: string = "FULLSCREEN_ENTER"; break;
  49             case FULLSCREEN_EXIT: string = "FULLSCREEN_EXIT"; break;
  50 
  51             default:
  52                 System.err.println("Unknown view event type: " + type);
  53                 break;
  54         }
  55         return string;
  56     }
   1 /*
   2  * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package com.sun.glass.events;
  26 
  27 import java.lang.annotation.Native;
  28 
  29 public class ViewEvent {
  30     @Native final static public int ADD                 = 411;
  31     @Native final static public int REMOVE              = 412;
  32 
  33     @Native final static public int REPAINT             = 421;
  34     @Native final static public int RESIZE              = 422;
  35     @Native final static public int MOVE                = 423; // a-la "insets changed"
  36 
  37     @Native final static public int FULLSCREEN_ENTER    = 431;
  38     @Native final static public int FULLSCREEN_EXIT     = 432;
  39 
  40     static public String getTypeString(int type) {
  41         String string = "UNKNOWN";
  42         switch (type) {
  43             case ADD: string = "ADD"; break;
  44             case REMOVE: string = "REMOVE"; break;
  45 
  46             case REPAINT: string = "REPAINT"; break;
  47             case RESIZE: string = "RESIZE"; break;
  48             case MOVE: string = "MOVE"; break;
  49 
  50             case FULLSCREEN_ENTER: string = "FULLSCREEN_ENTER"; break;
  51             case FULLSCREEN_EXIT: string = "FULLSCREEN_EXIT"; break;
  52 
  53             default:
  54                 System.err.println("Unknown view event type: " + type);
  55                 break;
  56         }
  57         return string;
  58     }
< prev index next >