Home | History | Annotate | Download | only in graphics
      1 /*
      2  * Copyright (C) 2010 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package android.graphics;
     18 
     19 import com.android.layoutlib.bridge.impl.DelegateManager;
     20 import com.android.tools.layoutlib.annotations.LayoutlibDelegate;
     21 
     22 /**
     23  * Delegate implementing the native methods of android.graphics.ColorMatrixColorFilter
     24  *
     25  * Through the layoutlib_create tool, the original native methods of ColorMatrixColorFilter have
     26  * been replaced by calls to methods of the same name in this delegate class.
     27  *
     28  * This class behaves like the original native implementation, but in Java, keeping previously
     29  * native data into its own objects and mapping them to int that are sent back and forth between
     30  * it and the original ColorMatrixColorFilter class.
     31  *
     32  * Because this extends {@link ColorFilter_Delegate}, there's no need to use a
     33  * {@link DelegateManager}, as all the Shader classes will be added to the manager
     34  * owned by {@link ColorFilter_Delegate}.
     35  *
     36  * @see ColorFilter_Delegate
     37  *
     38  */
     39 public class ColorMatrixColorFilter_Delegate extends ColorFilter_Delegate {
     40 
     41     // ---- delegate data ----
     42 
     43     // ---- Public Helper methods ----
     44 
     45     @Override
     46     public String getSupportMessage() {
     47         return "ColorMatrix Color Filters are not supported.";
     48     }
     49 
     50     // ---- native methods ----
     51 
     52     @LayoutlibDelegate
     53     /*package*/ static long nativeColorMatrixFilter(float[] array) {
     54         ColorMatrixColorFilter_Delegate newDelegate = new ColorMatrixColorFilter_Delegate();
     55         return sManager.addNewDelegate(newDelegate);
     56     }
     57 
     58     // ---- Private delegate/helper methods ----
     59 }
     60