javauis/amms_qt/javasrc/javax/microedition/amms/control/imageeffect/ImageTonalityControl.java
branchRCL_3
changeset 24 0fd27995241b
equal deleted inserted replaced
20:f9bb0fca356a 24:0fd27995241b
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 package javax.microedition.amms.control.imageeffect;
       
    18 
       
    19 import javax.microedition.media.MediaException;
       
    20 import javax.microedition.amms.control.*;
       
    21 
       
    22 /**
       
    23  * Please refer to JSR 234 for more details.
       
    24  */
       
    25 public interface ImageTonalityControl extends EffectControl
       
    26 {
       
    27 
       
    28     /**
       
    29      * Please refer to JSR 234 for more details.
       
    30      */
       
    31     public final static int AUTO = -1000;
       
    32 
       
    33     /**
       
    34      * Please refer to JSR 234 for more details.
       
    35      */
       
    36     public final static int NEXT = -1001;
       
    37 
       
    38     /**
       
    39      * Please refer to JSR 234 for more details.
       
    40      */
       
    41     public final static int PREVIOUS = -1002;
       
    42 
       
    43     /**
       
    44      * Please refer to JSR 234 for more details.
       
    45      */
       
    46     int setBrightness(int level);
       
    47 
       
    48     /**
       
    49      * Please refer to JSR 234 for more details.
       
    50      */
       
    51     int getBrightness();
       
    52 
       
    53     /**
       
    54      * Please refer to JSR 234 for more details.
       
    55      */
       
    56     int getBrightnessLevels();
       
    57 
       
    58 
       
    59     /**
       
    60      * Please refer to JSR 234 for more details.
       
    61      */
       
    62     int setContrast(int level);
       
    63 
       
    64     /**
       
    65      * Please refer to JSR 234 for more details.
       
    66      */
       
    67     int getContrast();
       
    68 
       
    69     /**
       
    70      * Please refer to JSR 234 for more details.
       
    71      */
       
    72     int getContrastLevels();
       
    73 
       
    74     /**
       
    75      * Please refer to JSR 234 for more details.
       
    76      */
       
    77     int setGamma(int level);
       
    78 
       
    79     /**
       
    80      * Please refer to JSR 234 for more details.
       
    81      */
       
    82     int getGamma();
       
    83 
       
    84     /**
       
    85      * Please refer to JSR 234 for more details.
       
    86      */
       
    87     int getGammaLevels();
       
    88 
       
    89 }