| /* |
| * Copyright (C) 2008,2009 OMRON SOFTWARE Co., Ltd. |
| * |
| * Licensed 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 jp.co.omronsoft.openwnn; |
| |
| import android.view.View; |
| import android.content.SharedPreferences; |
| |
| /** |
| * The interface of candidates view manager used by OpenWnn. |
| * |
| * @author Copyright (C) 2008, OMRON SOFTWARE CO., LTD. All Rights Reserved. |
| */ |
| public interface CandidatesViewManager { |
| /** Size of candidates view (normal) */ |
| public static final int VIEW_TYPE_NORMAL = 0; |
| /** Size of candidates view (full) */ |
| public static final int VIEW_TYPE_FULL = 1; |
| /** Size of candidates view (close/non-display) */ |
| public static final int VIEW_TYPE_CLOSE = 2; |
| |
| /** |
| * Attribute of a word (no attribute) |
| * @see jp.co.omronsoft.openwnn.WnnWord |
| */ |
| public static final int ATTRIBUTE_NONE = 0; |
| /** |
| * Attribute of a word (a candidate in the history list) |
| * @see jp.co.omronsoft.openwnn.WnnWord |
| */ |
| public static final int ATTRIBUTE_HISTORY = 1; |
| /** |
| * Attribute of a word (the best candidate) |
| * @see jp.co.omronsoft.openwnn.WnnWord |
| */ |
| public static final int ATTRIBUTE_BEST = 2; |
| /** |
| * Attribute of a word (auto generated/not in the dictionary) |
| * @see jp.co.omronsoft.openwnn.WnnWord |
| */ |
| public static final int ATTRIBUTE_AUTO_GENERATED = 4; |
| |
| /** |
| * Initialize the view |
| * |
| * @param parent The OpenWnn object |
| * @param width The width of the display |
| * @param height The height of the display |
| * |
| * @return the view created in the initialize process; <code>null</code> if cannot create a view. |
| */ |
| public View initView(OpenWnn parent, int width, int height); |
| |
| /** |
| * Get the view being used currently. |
| * |
| * @return The view; <code>null</code> if no view is used currently. |
| */ |
| public View getCurrentView(); |
| |
| /** |
| * Set the view type |
| * |
| * @param type View type |
| */ |
| public void setViewType(int type); |
| |
| /** |
| * Get the view type |
| * |
| * @return View type |
| */ |
| public int getViewType(); |
| |
| /** |
| * Display candidates |
| * |
| * @param converter The <code>WnnEngine</code> from which <code>CandidateView</code> gets the candidates |
| * |
| * @see jp.co.omronsoft.openwnn.WnnEngine#getNextCandidate |
| */ |
| public void displayCandidates(WnnEngine converter); |
| |
| /** |
| * Non-display candidates |
| */ |
| public void clearCandidates(); |
| |
| /** |
| * Set preferences |
| * |
| * @param pref The preferences |
| */ |
| public void setPreferences(SharedPreferences pref); |
| } |