Linux下QtCreator和应用输入中文

2024-06-15 00:48

本文主要是介绍Linux下QtCreator和应用输入中文,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

原先在Debian系下的Qtcreator无法输入中文时,可以直接在软件源下载fcitx-libs-qtfcitx-libs-qt5,然后复制到相应的目录下即可实现输入中文,但是现在Qtcreator已经发布了很多新版本了,软件园的fcitx已经太旧,下载下来也没有什么用了。所以得自己编译最新的的版本才能让Qtcreator支持中文。

系统环境介绍

我的系统是Deepin 15.11Qt 5.12.3QtCreator 4.9(base on 5.12.2)

操作方法

1. 安装fcitx-libs-dev
sudo apt-get install fcitx-libs-dev

不装这个会出现'fcitx-utils' not found错误

2. 设置qmake环境

这里需要找到你自己的安装目录

export PATH="~/Qt5.12.3/5.12.3/gcc_64/bin":$PATH
3. 下载fcitx-qt5源码并解压
wget https://download.fcitx-im.org/fcitx-qt5/fcitx-qt5-1.0.5.tar.xz
tar -xJf fcitx-qt5-1.0.5.tar.xz
4. 编译安装

这里如果一次没出问题,那运气不错,直接下一步。

cd fcitx-qt5-1.2.3
cmake .
make 
sudo make install
5. 拷贝so文件
  • 为了使Qtcreator能够输入中文,将编译好的so文件放在以下目录
~/Qt5.12.3/Tools/QtCreator/lib/Qt/plugins/platforminputcontexts
  • 为了使Qtcreator开发的程序能够输入中文,要将so放在以下目录
~Qt5.12.3/5.12.3/gcc_64/plugins/platforminputcontexts

错误解决

编译fcitx-qt5会遇到一箩筐的问题,这里记录下我遇到的问题

1. 找不到ECM 包配置文件
cmake ..
-- The C compiler identification is GNU 5.2.1
-- The CXX compiler identification is Clang 3.7.0
... ...
-- Detecting CXX compile features - done
CMake Error at CMakeLists.txt:8 (find_package):Could not find a package configuration file provided by "ECM" (requestedversion 1.4.0) with any of the following names:ECMConfig.cmakeecm-config.cmakeAdd the installation prefix of "ECM" to CMAKE_PREFIX_PATH or set "ECM_DIR"to a directory containing one of the above files.  If "ECM" provides aseparate development package or SDK, be sure it has been installed.-- Configuring incomplete, errors occurred!
See also "~/fcitx/fcitx-qt5/CMakeFiles/CMakeOutput.log".

这里的提示说明,需要1.4.0版本的ECM配置文件,所以到下面的网址下载并安装这个东西即可。但是安装这个东西有可能也安装不成,还需要下一步来解决

wget https://launchpad.net/ubuntu/+source/extra-cmake-modules/1.4.0-0ubuntu1 
cd extra-cmake-modules-1.4.0
cmake .
make
sudo make install
1.1 安装 extra-cmake-modules-1.4.0 失败
$:~/Downloads/extra-cmake-modules-1.4.0$ cmake .
CMake Warning at tests/CMakeLists.txt:28 (find_package):Could not find a package configuration file provided by "Qt5LinguistTools"with any of the following names:Qt5LinguistToolsConfig.cmakeqt5linguisttools-config.cmakeAdd the installation prefix of "Qt5LinguistTools" to CMAKE_PREFIX_PATH orset "Qt5LinguistTools_DIR" to a directory containing one of the abovefiles.  If "Qt5LinguistTools" provides a separate development package orSDK, be sure it has been installed.
-- Looking for Sphinx Documentation Builder...
-- Sphinx Documentation Builder not found - documentation will not be built (see http://sphinx-doc.org/)
-- Configuring done
-- Generating done

这里的解决方案比较简单,设置CMAKE_PREFIX_PATH的值为Qt自带的cmake目录即可

export CMAKE_PREFIX_PATH="~/Qt5.12.3/5.12.3/gcc_64/lib/cmake/"

这里设置完了就可以返回去重新编译安装 extra-cmake-modules-1.4.0

1.2 缺乏Qt5所提供的配置文件
-- Performing Test SUPPORT_CXX11
-- Performing Test SUPPORT_CXX11 - Success
CMake Error at CMakeLists.txt:29 (find_package):Could not find a package configuration file provided by "Qt5" (requestedversion 5.1.0) with any of the following names:Qt5Config.cmakeqt5-config.cmakeAdd the installation prefix of "Qt5" to CMAKE_PREFIX_PATH or set "Qt5_DIR"to a directory containing one of the above files.  If "Qt5" provides aseparate development package or SDK, be sure it has been installed.-- Configuring incomplete, errors occurred!

这个问题的解决方法同1.1的方法一样

2. 缺少xkbcommon
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.26") 
-- Could NOT find XKBCommon_XKBCommon (missing:  XKBCommon_XKBCommon_LIBRARY XKBCommon_XKBCommon_INCLUDE_DIR) 
CMake Error at /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:108 (message):Could NOT find XKBCommon (missing: XKBCommon_LIBRARIES XKBCommon) (Required is at least version "0.5.0") 

这个问题的修改需要额外额外额外注意,系统一般是已经带有这个包的了,如果按网上的方法去编译安装新的包,一顿操作猛如虎下去,会替换掉系统的包。最后的结果就是桌面环境崩溃。
网上提供的解决方案如下

sudo apt-get install bison
./configure --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu --disable-x11
make
sudo make install

安装bison的原因是需要用到YACC命令,然后因为系统的X11版本较高,所以得得禁用掉。我在桌面环境崩溃之后,在命令行中用旧版本的xkbcommon替换/usr/lib/x86_64-linux-gnu目录下的新装上的,然后在修改头文件。就可以恢复了,但是这个方法太粗暴了。

这篇关于Linux下QtCreator和应用输入中文的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1061967

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

linux-基础知识3

打包和压缩 zip 安装zip软件包 yum -y install zip unzip 压缩打包命令: zip -q -r -d -u 压缩包文件名 目录和文件名列表 -q:不显示命令执行过程-r:递归处理,打包各级子目录和文件-u:把文件增加/替换到压缩包中-d:从压缩包中删除指定的文件 解压:unzip 压缩包名 打包文件 把压缩包从服务器下载到本地 把压缩包上传到服务器(zip

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

hdu1394(线段树点更新的应用)

题意:求一个序列经过一定的操作得到的序列的最小逆序数 这题会用到逆序数的一个性质,在0到n-1这些数字组成的乱序排列,将第一个数字A移到最后一位,得到的逆序数为res-a+(n-a-1) 知道上面的知识点后,可以用暴力来解 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#in

zoj3820(树的直径的应用)

题意:在一颗树上找两个点,使得所有点到选择与其更近的一个点的距离的最大值最小。 思路:如果是选择一个点的话,那么点就是直径的中点。现在考虑两个点的情况,先求树的直径,再把直径最中间的边去掉,再求剩下的两个子树中直径的中点。 代码如下: #include <stdio.h>#include <string.h>#include <algorithm>#include <map>#

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

【测试】输入正确用户名和密码,点击登录没有响应的可能性原因

目录 一、前端问题 1. 界面交互问题 2. 输入数据校验问题 二、网络问题 1. 网络连接中断 2. 代理设置问题 三、后端问题 1. 服务器故障 2. 数据库问题 3. 权限问题: 四、其他问题 1. 缓存问题 2. 第三方服务问题 3. 配置问题 一、前端问题 1. 界面交互问题 登录按钮的点击事件未正确绑定,导致点击后无法触发登录操作。 页面可能存在