blob: fa1cc19c6af75a0006cae45ed370bd3bc8b1935d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.pivot.wtk;
/**
* Color chooser button binding listener interface.
*/
public interface ColorChooserButtonBindingListener {
/**
* Color chooser button binding listener adapter.
*/
public static class Adapter implements ColorChooserButtonBindingListener {
@Override
public void selectedColorKeyChanged(ColorChooserButton colorChooserButton,
String previousSelectedColorKey) {
// empty block
}
@Override
public void selectedColorBindTypeChanged(ColorChooserButton colorChooserButton,
BindType previousSelectedColorBindType) {
// empty block
}
@Override
public void selectedColorBindMappingChanged(ColorChooserButton colorChooserButton,
ColorChooser.SelectedColorBindMapping previousSelectedColorBindMapping) {
// empty block
}
}
/**
* Called when a color chooser button's selected color key has changed.
*
* @param colorChooserButton The color chooser button that has changed.
* @param previousSelectedColorKey The previous binding key for the selected color.
*/
public void selectedColorKeyChanged(ColorChooserButton colorChooserButton,
String previousSelectedColorKey);
/**
* Called when a color chooser button's selected color bind type has
* changed.
*
* @param colorChooserButton The color chooser button that has changed.
* @param previousSelectedColorBindType The previous bind type for the selected color.
*/
public void selectedColorBindTypeChanged(ColorChooserButton colorChooserButton,
BindType previousSelectedColorBindType);
/**
* Called when a color chooser button's selected color bind mapping has
* changed.
*
* @param colorChooserButton The color chooser button that has changed.
* @param previousSelectedColorBindMapping The previous bind mapping for the selected color.
*/
public void selectedColorBindMappingChanged(ColorChooserButton colorChooserButton,
ColorChooser.SelectedColorBindMapping previousSelectedColorBindMapping);
}