blob: 72ffe6f55834eeafd0eedf56961bfcb4e5ce5dc0 [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;
import org.apache.pivot.util.Vote;
/**
* Card pane listener interface.
*/
public interface CardPaneListener {
/**
* Card pane listener adapter.
*/
public static class Adapter implements CardPaneListener {
@Override
public Vote previewSelectedIndexChange(CardPane cardPane, int selectedIndex) {
return Vote.APPROVE;
}
@Override
public void selectedIndexChangeVetoed(CardPane cardPane, Vote reason) {
// empty block
}
@Override
public void selectedIndexChanged(CardPane cardPane, int previousSelectedIndex) {
// empty block
}
}
/**
* Called to preview a selected index change.
*
* @param cardPane The source of the event.
* @param selectedIndex The index that will be selected.
* @return The consensus vote as to whether to allow this change.
*/
public Vote previewSelectedIndexChange(CardPane cardPane, int selectedIndex);
/**
* Called when a selected index change has been vetoed.
*
* @param cardPane The source of the event.
* @param reason The reason the event was vetoed.
*/
public void selectedIndexChangeVetoed(CardPane cardPane, Vote reason);
/**
* Called when a card pane's selected index has changed.
*
* @param cardPane The source of the event.
* @param previousSelectedIndex If the selection changed directly, contains
* the index that was previously selected. Otherwise, contains the current
* selection.
*/
public void selectedIndexChanged(CardPane cardPane, int previousSelectedIndex);
}