User contributions
Jump to navigation
Jump to search
- 03:32, 19 April 2023 diff hist +1,036 N Translations:Develop an simple input method/52/zh-cn Created page with "<nowiki>I2021-11-16 12:29:32.352702 quwei.cpp:12] Key(f states=0) isRelease=1 I2021-11-16 12:29:32.389935 quwei.cpp:12] Key(s states=0) isRelease=0 I2021-11-16 12:29:32.413689..." current
- 03:32, 19 April 2023 diff hist -2 Develop an simple input method/zh-cn Created page with "切换到区位码输入法后,应用程序中的按键将使 Fcitx 5 打印出如下内容:"
- 03:32, 19 April 2023 diff hist +96 N Translations:Develop an simple input method/51/zh-cn Created page with "切换到区位码输入法后,应用程序中的按键将使 Fcitx 5 打印出如下内容:" current
- 03:32, 19 April 2023 diff hist +19 Develop an simple input method/zh-cn Created page with "现在您可以使用 <code>fcitx5 -rd</code> 重新启动 fcitx5,并使用 配置工具(Fcitx 5) 将 Quwei 添加到您的..."
- 03:32, 19 April 2023 diff hist +185 N Translations:Develop an simple input method/50/zh-cn Created page with "现在您可以使用 <code>fcitx5 -rd</code> 重新启动 fcitx5,并使用 配置工具(Fcitx 5) 将 Quwei 添加到您的..." current
- 03:31, 19 April 2023 diff hist +196 N Translations:Develop an simple input method/49/zh-cn Created page with "<nowiki>-- Install configuration: "Debug" -- Installing: /usr/lib/fcitx5/quwei.so -- Installing: /usr/share/fcitx5/addon/quwei.conf -- Installing: /usr/share/fcitx5/inputmetho..." current
- 03:31, 19 April 2023 diff hist -15 Develop an simple input method/zh-cn Created page with "如果一切正常,安装命令应该打印出如下内容:"
- 03:31, 19 April 2023 diff hist +63 N Translations:Develop an simple input method/48/zh-cn Created page with "如果一切正常,安装命令应该打印出如下内容:" current
- 03:31, 19 April 2023 diff hist +227 N Translations:Develop an simple input method/47/zh-cn Created page with "<nowiki> mkdir -p build cd build cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug # use Debug for easy debugging with gdb make # or ninja, depending on your syste..." current
- 03:31, 19 April 2023 diff hist -13 Develop an simple input method/zh-cn Created page with "这里假设您的 fcitx 安装前缀是 /usr。构建这个项目的命令是:"
- 03:31, 19 April 2023 diff hist +81 N Translations:Develop an simple input method/46/zh-cn Created page with "这里假设您的 fcitx 安装前缀是 /usr。构建这个项目的命令是:" current
- 03:31, 19 April 2023 diff hist +16 Develop an simple input method/zh-cn Created page with "在这里,我们使用类似于宏 <code>FCITX_INFO()</code> 的 iostream 将我们按下的每个键写入日志。"
- 03:31, 19 April 2023 diff hist +118 N Translations:Develop an simple input method/45/zh-cn Created page with "在这里,我们使用类似于宏 <code>FCITX_INFO()</code> 的 iostream 将我们按下的每个键写入日志。" current
- 03:31, 19 April 2023 diff hist -39 Develop an simple input method/zh-cn Created page with "一个输入法引擎的最小植入只需要包含keyEvent函数的实现。"
- 03:31, 19 April 2023 diff hist +77 N Translations:Develop an simple input method/44/zh-cn Created page with "一个输入法引擎的最小植入只需要包含keyEvent函数的实现。" current
- 03:30, 19 April 2023 diff hist -26 Develop an simple input method/zh-cn Created page with "当实现 Fcitx 插件时,它应该是 [https://codedocs.xyz/fcitx/fcitx5/classfcitx_1_1AddonInstance.html AddonInstance] 的子类。AddonInstance 的实例化是通过 [ht..."
- 03:30, 19 April 2023 diff hist +443 N Translations:Develop an simple input method/43/zh-cn Created page with "当实现 Fcitx 插件时,它应该是 [https://codedocs.xyz/fcitx/fcitx5/classfcitx_1_1AddonInstance.html AddonInstance] 的子类。AddonInstance 的实例化是通过 [ht..." current
- 03:30, 19 April 2023 diff hist +49 N Translations:Develop an simple input method/42/zh-cn Created page with "FCITX_ADDON_FACTORY(QuweiEngineFactory);</nowiki>" current
- 03:30, 19 April 2023 diff hist +197 N Translations:Develop an simple input method/41/zh-cn Created page with "void QuweiEngine::keyEvent(const fcitx::InputMethodEntry& entry, fcitx::KeyEvent& keyEvent) { FCITX_UNUSED(entry); FCITX_INFO() << keyEvent.key() << " isRelease=" << k..." current
- 03:30, 19 April 2023 diff hist +145 N Translations:Develop an simple input method/40/zh-cn Created page with "<nowiki>→* SPDX-FileCopyrightText: 2021~2021 CSSlayer <wengxt@gmail.com> * * SPDX-License-Identifier: BSD-3-Clause *: #include "quwei.h"" current
- 03:30, 19 April 2023 diff hist 0 Develop an simple input method/zh-cn Created page with "版本 1 的 quwei.cpp"
- 03:30, 19 April 2023 diff hist +22 N Translations:Develop an simple input method/39/zh-cn Created page with "版本 1 的 quwei.cpp" current
- 03:30, 19 April 2023 diff hist +41 N Translations:Develop an simple input method/38/zh-cn Created page with "#endif // _FCITX5_QUWEI_QUWEI_H_</nowiki>" current
- 03:30, 19 April 2023 diff hist +203 N Translations:Develop an simple input method/37/zh-cn Created page with "class QuweiEngineFactory : public fcitx::AddonFactory { fcitx::AddonInstance * create(fcitx::AddonManager * manager) override { FCITX_UNUSED(manager); retu..." current
- 03:30, 19 April 2023 diff hist +153 N Translations:Develop an simple input method/36/zh-cn Created page with "class QuweiEngine : public fcitx::InputMethodEngineV2 { void keyEvent(const fcitx::InputMethodEntry & entry, fcitx::KeyEvent & keyEvent) override; };" current
- 03:30, 19 April 2023 diff hist +68 N Translations:Develop an simple input method/35/zh-cn Created page with "#include <fcitx/inputmethodengine.h> #include <fcitx/addonfactory.h>" current
- 03:29, 19 April 2023 diff hist 0 Develop an simple input method/zh-cn Created page with "版本 1 的 quwei.h <nowiki>→* SPDX-FileCopyrightText: 2021~2021 CSSlayer <wengxt@gmail.com> * * SPDX-License-Identifier: BSD-3-Clause *: #ifndef _FCITX5_QUWEI_QUWE..."
- 03:29, 19 April 2023 diff hist +210 N Translations:Develop an simple input method/34/zh-cn Created page with "版本 1 的 quwei.h <nowiki>→* SPDX-FileCopyrightText: 2021~2021 CSSlayer <wengxt@gmail.com> * * SPDX-License-Identifier: BSD-3-Clause *: #ifndef _FCITX5_QUWEI_QUWE..." current
- 03:29, 19 April 2023 diff hist +1 Develop an simple input method/zh-cn
- 03:29, 19 April 2023 diff hist +1 Translations:Develop an simple input method/27/zh-cn current
- 03:29, 19 April 2023 diff hist -3 Develop an simple input method/zh-cn
- 03:29, 19 April 2023 diff hist -3 Translations:Develop an simple input method/32/zh-cn current
- 03:29, 19 April 2023 diff hist -21 Develop an simple input method/zh-cn Created page with "== InputMethodEngine 的基本实现 == 您可以参考github中[https://github.com/fcitx/fcitx5-quwei/commit/02c32b07e47e0e75db4f248dbb33c31137d8df74 first commit]的代码。"
- 03:29, 19 April 2023 diff hist +176 N Translations:Develop an simple input method/33/zh-cn Created page with "== InputMethodEngine 的基本实现 == 您可以参考github中[https://github.com/fcitx/fcitx5-quwei/commit/02c32b07e47e0e75db4f248dbb33c31137d8df74 first commit]的代码。"
- 03:29, 19 April 2023 diff hist -1 Develop an simple input method/zh-cn Created page with "此文件将作为 [https://codedocs.xyz/fcitx/fcitx5/classfcitx_1_1AddonInfo.html 插件信息] 对象加载。"
- 03:29, 19 April 2023 diff hist +112 N Translations:Develop an simple input method/32/zh-cn Created page with "此文件将作为 [https://codedocs.xyz/fcitx/fcitx5/classfcitx_1_1AddonInfo.html 插件信息] 对象加载。"
- 03:28, 19 April 2023 diff hist +74 N Translations:Develop an simple input method/31/zh-cn Created page with "[Addon/OptionalDependencies] 0=fullwidth 1=quickphrase 2=chttrans</nowiki>" current
- 03:28, 19 April 2023 diff hist +34 N Translations:Develop an simple input method/30/zh-cn Created page with "[Addon/Dependencies] 0=punctuation" current
- 03:28, 19 April 2023 diff hist +138 N Translations:Develop an simple input method/29/zh-cn Created page with "<nowiki>[Addon] Name=Quwei Category=InputMethod Version=@PROJECT_VERSION@ Library=quwei Type=SharedLibrary OnDemand=True Configurable=True" current
- 03:28, 19 April 2023 diff hist -1 Develop an simple input method/zh-cn Created page with "quwei-addon.conf.in 示例:"
- 03:28, 19 April 2023 diff hist +29 N Translations:Develop an simple input method/28/zh-cn Created page with "quwei-addon.conf.in 示例:" current
- 03:28, 19 April 2023 diff hist +1 Develop an simple input method/zh-cn Created page with "此文件将作为 [https://codedocs.xyz/fcitx/fcitx5/classfcitx_1_1InputMethodEntry.html 输入法条目] 对象进行加载。"
- 03:28, 19 April 2023 diff hist +128 N Translations:Develop an simple input method/27/zh-cn Created page with "此文件将作为 [https://codedocs.xyz/fcitx/fcitx5/classfcitx_1_1InputMethodEntry.html 输入法条目] 对象进行加载。"
- 03:28, 19 April 2023 diff hist +314 N Translations:Develop an simple input method/26/zh-cn Created page with "<nowiki>[InputMethod] # Translatable name of the input method Name=Quwei # Icon name Icon=fcitx-quwei # A short label that present the name of input method Label=区 # ISO 639..." current
- 03:28, 19 April 2023 diff hist -6 Develop an simple input method/zh-cn Created page with "quwei.conf.in 示例:"
- 03:28, 19 April 2023 diff hist +23 N Translations:Develop an simple input method/25/zh-cn Created page with "quwei.conf.in 示例:" current
- 03:27, 19 April 2023 diff hist +123 N Translations:Develop an simple input method/24/zh-cn Created page with "# Input Method registration file install(FILES "quwei.conf" DESTINATION "${FCITX_INSTALL_PKGDATADIR}/inputmethod")</nowiki>" current
- 03:27, 19 April 2023 diff hist +280 N Translations:Develop an simple input method/23/zh-cn Created page with "# Addon config file # We need additional layer of conversion because we want PROJECT_VERSION in it. configure_file(quwei-addon.conf.in quwei-addon.conf) install(FILES "${CMAKE..." current
- 03:27, 19 April 2023 diff hist +266 N Translations:Develop an simple input method/22/zh-cn Created page with "<nowiki># Make sure it produce quwei.so instead of libquwei.so add_library(quwei SHARED quwei.cpp) target_link_libraries(quwei PRIVATE Fcitx5::Core) set_target_properties(quwe..." current
- 03:27, 19 April 2023 diff hist -5 Develop an simple input method/zh-cn Created page with "src/CMakeLists.txt 示例如下:"