加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
IconFont.qml 869 Bytes
一键复制 编辑 原始数据 按行查看 历史
hudejie 提交于 2022-09-27 18:36 . 初始化项目
import QtQuick 2.6
/*!
\qmltype TAwesomeIcon
\inqmlmodule QtQuick 2.6
\brief Font Icon
\since 5.9.x
\ingroup qtquicktest
has been supported to the latest version
\code
TAwesomeIcon{
source:T2D.FA_apple
}
\endcode
Theme ini file is configured to 'FA_apple'.
*/
Item {
id:toou2d_awesomeicon
width: 16;
height: 16;
property color color;
/*! \sa TAwesomeType */
property alias source : content_text.text;
Text {
id:content_text
anchors.fill: parent;
enabled: false;
color: toou2d_awesomeicon.color;
font.family: "fontawesome"
font.pixelSize: Math.max(toou2d_awesomeicon.width,toou2d_awesomeicon.height);
horizontalAlignment: Text.AlignHCenter;
verticalAlignment: Text.AlignVCenter;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化