1 /* 2 * Copyright (C) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef FM_IMMS_PROJECT_INPUTMETHODPROPERTY_H 17 #define FM_IMMS_PROJECT_INPUTMETHODPROPERTY_H 18 #include <vector> 19 #include <string> 20 #include "parcel.h" 21 #include "keyboard_type.h" 22 23 namespace OHOS { 24 namespace MiscServices { 25 class InputMethodProperty : public Parcelable { 26 public: 27 std::u16string mImeId; 28 std::u16string mPackageName; 29 std::u16string mAbilityName; 30 std::u16string mConfigurationPage; 31 bool isSystemIme; 32 int32_t mDefaultImeId; 33 std::vector<KeyboardType*> mTypes; 34 int32_t labelId; 35 int32_t descriptionId; 36 std::u16string label; 37 std::u16string description; 38 39 InputMethodProperty(); 40 ~InputMethodProperty(); 41 InputMethodProperty(const InputMethodProperty& property); 42 InputMethodProperty& operator =(const InputMethodProperty& property); 43 virtual bool Marshalling(Parcel &parcel) const override; 44 static InputMethodProperty *Unmarshalling(Parcel &parcel); 45 }; 46 } 47 } 48 #endif // FM_IMMS_PROJECT_INPUTMETHODPROPERTY_H 49