All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Fcitx. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 03:34, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/54/zh-cn (Created page with "= 实现输入法逻辑 = 区位码的基本逻辑是键入 4 位数的区位代码。区位码可以看成区码 xx 和位码 yy。区位码到GB2312的映射是(0xA0 + 区...")
- 03:33, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/53/zh-cn (Created page with "从这里可以知道您的输入法引擎现在可以正常工作了。")
- 03:32, 19 April 2023 Matrikslee talk contribs created page 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...")
- 03:32, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/51/zh-cn (Created page with "切换到区位码输入法后,应用程序中的按键将使 Fcitx 5 打印出如下内容:")
- 03:32, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/50/zh-cn (Created page with "现在您可以使用 <code>fcitx5 -rd</code> 重新启动 fcitx5,并使用 配置工具(Fcitx 5) 将 Quwei 添加到您的...")
- 03:31, 19 April 2023 Matrikslee talk contribs created page 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...")
- 03:31, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/48/zh-cn (Created page with "如果一切正常,安装命令应该打印出如下内容:")
- 03:31, 19 April 2023 Matrikslee talk contribs created page 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...")
- 03:31, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/46/zh-cn (Created page with "这里假设您的 fcitx 安装前缀是 /usr。构建这个项目的命令是:")
- 03:31, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/45/zh-cn (Created page with "在这里,我们使用类似于宏 <code>FCITX_INFO()</code> 的 iostream 将我们按下的每个键写入日志。")
- 03:31, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/44/zh-cn (Created page with "一个输入法引擎的最小植入只需要包含keyEvent函数的实现。")
- 03:30, 19 April 2023 Matrikslee talk contribs created page 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...")
- 03:30, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/42/zh-cn (Created page with "FCITX_ADDON_FACTORY(QuweiEngineFactory);</nowiki>")
- 03:30, 19 April 2023 Matrikslee talk contribs created page 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...")
- 03:30, 19 April 2023 Matrikslee talk contribs created page 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"")
- 03:30, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/39/zh-cn (Created page with "版本 1 的 quwei.cpp")
- 03:30, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/38/zh-cn (Created page with "#endif // _FCITX5_QUWEI_QUWEI_H_</nowiki>")
- 03:30, 19 April 2023 Matrikslee talk contribs created page 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...")
- 03:30, 19 April 2023 Matrikslee talk contribs created page 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; };")
- 03:30, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/35/zh-cn (Created page with "#include <fcitx/inputmethodengine.h> #include <fcitx/addonfactory.h>")
- 03:29, 19 April 2023 Matrikslee talk contribs created page 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...")
- 03:29, 19 April 2023 Matrikslee talk contribs created page 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 Matrikslee talk contribs created page 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 Matrikslee talk contribs created page Translations:Develop an simple input method/31/zh-cn (Created page with "[Addon/OptionalDependencies] 0=fullwidth 1=quickphrase 2=chttrans</nowiki>")
- 03:28, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/30/zh-cn (Created page with "[Addon/Dependencies] 0=punctuation")
- 03:28, 19 April 2023 Matrikslee talk contribs created page 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")
- 03:28, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/28/zh-cn (Created page with "quwei-addon.conf.in 示例:")
- 03:28, 19 April 2023 Matrikslee talk contribs created page 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 Matrikslee talk contribs created page 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...")
- 03:28, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/25/zh-cn (Created page with "quwei.conf.in 示例:")
- 03:27, 19 April 2023 Matrikslee talk contribs created page 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>")
- 03:27, 19 April 2023 Matrikslee talk contribs created page 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...")
- 03:27, 19 April 2023 Matrikslee talk contribs created page 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...")
- 03:27, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/21/zh-cn (Created page with "src/CMakeLists.txt 示例如下:")
- 03:27, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/20/zh-cn (Created page with "add_subdirectory(src)</nowiki>")
- 03:26, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/19/zh-cn (Created page with "find_package(Fcitx5Core REQUIRED) # Setup some compiler option that is generally useful and compatible with Fcitx 5 (C++17) include("${FCITX_INSTALL_CMAKECONFIG_DIR}/Fcitx5Uti...")
- 03:26, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/18/zh-cn (Created page with "<nowiki> cmake_minimum_required(VERSION 3.21) project(fcitx5-quwei)")
- 03:26, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/17/zh-cn (Created page with "CMakeLists.txt 在根目录查找依赖项。")
- 03:26, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/16/zh-cn (Created page with "您也许需要查看一些 CMake 教程以了解一些基本的 CMake 用法。")
- 03:26, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/15/zh-cn (Created page with "<nowiki>├── CMakeLists.txt ├── LICENSES │ └── BSD-3-Clause.txt # License for this project ├── po # Optional I18n...")
- 03:26, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/14/zh-cn (Created page with "== 项目框架 == 因此,让我们从这个项目的框架开始。")
- 03:25, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/13/zh-cn (Created page with "= 快速入门:区位码 = 区位码 输入法是一种输入法,基本上允许您输入GB2312的数字并产生与该代码匹配的汉...")
- 03:25, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/12/zh-cn (Created page with "= 使用 CMake 构建系统 = 理论上只要能生成正确的文件,就可以自由选择要使用的构建系统。但是Fcitx 5 对 CMake 提供了大量支持,因此...")
- 03:24, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/11/zh-cn (Created page with "该文件采用类似 ini 的格式,具有某些 fcitx 特定的扩展名和规则。它还支持 XDG 桌面文件样式 i18n 进行翻译。")
- 03:23, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/10/zh-cn (Created page with "<nowiki>[InputMethod] Name[ca]=Pinyin Name[da]=Pinyin Name[de]=Pinyin Name[he]=פיניין: Name[ko]=병음 Name[ru]=Пиньинь Name[zh_CN]=拼音 Name=Pinyin Icon=fcitx-...")
- 03:23, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/9/zh-cn (Created page with "<code>[输入法名称].conf</code>示例")
- 03:23, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/8/zh-cn (Created page with "[Addon/OptionalDependencies] 0=fullwidth 1=quickphrase 2=cloudpinyin 3=notifications 4=spell 5=pinyinhelper 6=chttrans 7=imeapi </nowiki>")
- 03:23, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/7/zh-cn (Created page with "[Addon/Dependencies] 0=punctuation")
- 03:23, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/6/zh-cn (Created page with "<nowiki>[Addon] Name[ca]=Pinyin Name[da]=Pinyin Name[de]=Pinyin Name[he]=פיניין: Name[ko]=병음 Name[ru]=Пиньинь Name[zh_CN]=拼音 Name=Pinyin Category=InputMet...")
- 03:23, 19 April 2023 Matrikslee talk contribs created page Translations:Develop an simple input method/5/zh-cn (Created page with "<code>[addon name].conf</code> 示例")