我的编程空间,编程开发者的网络收藏夹
学习永远不晚

QT中如何实现自定义quick-Popup弹出窗口

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

QT中如何实现自定义quick-Popup弹出窗口

小编给大家分享一下QT中如何实现自定义quick-Popup弹出窗口,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

1.Popup介绍

Popup是一个弹出窗口的控件
它的常用属性如下所示:

  • anchors.centerIn : Object,用来设置居中在谁窗口中.

  • closePolicy : enumeration,设置弹出窗口的关闭策略,默认值为默认值为Popup.CloseOnEscape|Popup.CloseOnPressOutside,取值有:

    • Popup.NoAutoClose : 只有在手动调用close()后,弹出窗口才会关闭(比如加载进度时,不XIANG)。

    • Popup.CloseOnPressOutside : 当鼠标按在弹出窗口外时,弹出窗口将关闭。

    • Popup.CloseOnPressOutsideParent : 当鼠标按在其父项之外时,弹出窗口将关闭。

    • Popup.CloseOnReleaseOutside : 当鼠标在弹出窗口外部松开按下时,弹出窗口将关闭。

    • Popup.CloseOnReleaseOutsideParent : 当鼠标在其父项松开按下时,弹出窗口将关闭。

    • Popup.CloseOnEscape : 当弹出窗口具有活动焦点时,按下ESC键时,弹出窗口将关闭。

  • dim : bool,昏暗属性,默认为undefined,设置为false,则模态窗口弹出后的其它背景不会昏暗

  • modal : bool,模态,默认为false(非模态,非阻塞调用,指出现该对话框时,也可以与父窗口进行交互,此时dim是无效果的)

  • enter : Transition,进入弹出窗口时的动画过渡

  • exit : Transition,退出弹出窗口时的动画过渡

它的信号如下所示:

  • void aboutToHide(): 当弹出窗口即将隐藏时,会发出此信号。

  • void aboutToShow(): 当弹出窗口即将显示时,会发出此信号。

  • void closed(): 当弹出窗口关闭时发出此信号。

  • void opened(): 打开弹出窗口时发出此信号。

它的方法如下所示:

  • void close(): 关闭弹出窗口。

  • forceActiveFocus(reason = Qt.OtherFocusReason): 强制设置焦点

  • void open() : 打开弹出窗口。

然后我们来自定义实现一个带指标的popup弹出窗口.

2.自定义Popup

由于Popup的锚布局只有一个anchors.centerIn,假如们想让Popup位于某个控件的左上方时,必须得自定义一个.
实现截图如下所示(已上传群里):

QT中如何实现自定义quick-Popup弹出窗口

实现效果如下所示:

QT中如何实现自定义quick-Popup弹出窗口

首先我们需要实现horizontalPosBase和verticalPosBase两个属性.来实现Popup位于目标对象的哪个方位.

  • 一个是设置popup在目标对象的水平方向的位置

  • 一个是popup在目标对象的垂直方向的位置.

由于我们已经知道了方位,那么指标的坐标也就可以自动计算出来了.
具体实现代码如下所示:

// 指示器方向,根据horizontalPosBase和verticalPosBase 自动计算     enum IndicatorStyle {         IndicatorLeft,         IndicatorRight,         IndicatorTop,         IndicatorBottom     }     function updateIndicatorPos(indicatorStyle) {          switch (indicatorStyle)         {             case IndicatorPopup.IndicatorLeft:                 indicator.x = - indicator.width*0.4;                 indicator.y =  back.height <= myTarget.height ? (back.height)/2-indicatorLen :                                verticalPosBase === IndicatorPopup.TopAlign ? (myTarget.height)/2 -indicatorLen :                                verticalPosBase === IndicatorPopup.VerticalAlign ? (back.height)/2 -indicatorLen :                                back.height -  (myTarget.height)/2 -indicatorLen;                 break;             case IndicatorPopup.IndicatorRight:                 indicator.x = width - indicator.width*1.2;                 indicator.y =  back.height <= myTarget.height ? (back.height)/2-indicatorLen :                                verticalPosBase === IndicatorPopup.TopAlign ? (myTarget.height)/2 -indicatorLen :                                verticalPosBase === IndicatorPopup.VerticalAlign ? (back.height)/2 -indicatorLen :                                back.height -  (myTarget.height)/2 -indicatorLen;                 break;             case IndicatorPopup.IndicatorTop:                 indicator.x =  back.width <= myTarget.width ? (back.width)/2-indicatorLen :                                horizontalPosBase === IndicatorPopup.PosBaseToRight ? (myTarget.width)/2 -indicatorLen :                                horizontalPosBase === IndicatorPopup.PosBaseToHorizontal ? (back.width)/2 -indicatorLen :                                back.width -  (myTarget.width)/2 -indicatorLen;                 indicator.y =  - indicator.width*0.4;                 break;             case IndicatorPopup.IndicatorBottom:                 indicator.x =  back.width <= myTarget.width ? (back.width)/2-indicatorLen :                                horizontalPosBase === IndicatorPopup.PosBaseToRight ? (myTarget.width)/2 -indicatorLen :                                horizontalPosBase === IndicatorPopup.PosBaseToHorizontal ? (back.width)/2 -indicatorLen :                                back.width -  (myTarget.width)/2 -indicatorLen;                 indicator.y =  height - indicator.height*1.2;                 break;         }         console.log("indicator",indicator.x,indicator.y,indicator.width,indicator.height)     }     function updatePopupPos() {        var indicatorStyle;         switch (horizontalPosBase)        {            case IndicatorPopup.PosBaseToLeft:     // popup位于目标水平左侧                x = myTarget.x - width - targetSpacing;                y = verticalPosBase === IndicatorPopup.TopAlign ? myTarget.y :                    verticalPosBase === IndicatorPopup.VerticalAlign ? myTarget.y + myTarget.height/2 - height/2 :                    myTarget.y - height + myTarget.height                indicatorStyle = IndicatorPopup.IndicatorRight;                break;            case IndicatorPopup.PosBaseToHorizontal: // popup水平中间                x = myTarget.x + myTarget.width/2 - width/2;                y = verticalPosBase === IndicatorPopup.PosBaseToTop ? myTarget.y - height - targetSpacing :                    verticalPosBase === IndicatorPopup.PosBaseToBottom ? myTarget.y + myTarget.height + targetSpacing :                    myTarget.y + myTarget.height + targetSpacing                indicatorStyle = verticalPosBase === IndicatorPopup.PosBaseToTop ? IndicatorPopup.IndicatorBottom :                                                                                   IndicatorPopup.IndicatorTop;                break;            case IndicatorPopup.PosBaseToRight:   // popup位于目标水平右侧                x = myTarget.x + myTarget.width + targetSpacing;                y = verticalPosBase === IndicatorPopup.TopAlign ? myTarget.y :                    verticalPosBase === IndicatorPopup.VerticalAlign ? myTarget.y + myTarget.height/2 - height/2 :                    myTarget.y - height + myTarget.height                indicatorStyle = IndicatorPopup.IndicatorLeft                console.log("PosBaseToRight",x,y,indicatorStyle);                break;        }        back.anchors.leftMargin = indicatorStyle === IndicatorPopup.IndicatorLeft ? indicatorLen : 0        back.anchors.rightMargin = indicatorStyle === IndicatorPopup.IndicatorRight ? indicatorLen : 0        back.anchors.bottomMargin = indicatorStyle === IndicatorPopup.IndicatorBottom ? indicatorLen : 0        back.anchors.topMargin = indicatorStyle === IndicatorPopup.IndicatorTop ? indicatorLen : 0        leftPadding = indicatorStyle === IndicatorPopup.IndicatorLeft ? indicatorLen : 0        rightPadding = indicatorStyle === IndicatorPopup.IndicatorRight ? indicatorLen : 0        bottomPadding = indicatorStyle === IndicatorPopup.IndicatorBottom ? indicatorLen : 0        topPadding = indicatorStyle === IndicatorPopup.IndicatorTop ? indicatorLen : 0        console.log(x,y,indicatorStyle);        updateIndicatorPos(indicatorStyle);     }

比如我们想让这个popup位于目标的左侧,顶部对齐,就可以这样写(无需指定popup的X,Y坐标了):

Button {        id: btn        text: "水平左侧-顶部对齐"        onClicked: {            popup.backgroundColor = "#12B7F5"            popup.horizontalPosBase = IndicatorPopup.PosBaseToLeft            popup.verticalPosBase = IndicatorPopup.TopAlign            popup.indicatorOpen(btn)        }    }        IndicatorPopup {        id: popup        width : 180        height: 200        modal: false        focus: true        parent: Overlay.overlay // Overlay.overlay表示主窗口的意思,附加到任何的item、popup中,避免当前界面不是主界面的情况,无法显示弹出窗口                TextArea {            anchors.fill: parent            text: "1234567890"            color: "#FFF"            font.pixelSize: 14            font.family: "Microsoft Yahei"            wrapMode: TextEdit.WrapAnywhere        }            closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside}

如果我们使用模态的弹出窗口,并且想设置弹出窗口外的背景色,可以设置Overlay.modal附加属性,比如设置为谈红色:

Overlay.modal: Rectangle {    color: "#aaffdbe7"}

效果如下所示:

QT中如何实现自定义quick-Popup弹出窗口

以上是“QT中如何实现自定义quick-Popup弹出窗口”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

QT中如何实现自定义quick-Popup弹出窗口

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

QT中如何实现自定义quick-Popup弹出窗口

小编给大家分享一下QT中如何实现自定义quick-Popup弹出窗口,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!1.Popup介绍Popup是一个弹出窗口的控件
2023-06-20

android实现百度地图自定义弹出窗口功能

我们使用百度地图的时候,点击地图上的Marker,会弹出一个该地点详细信息的窗口,如下左图所示,有时候,我们希望自己定义这个弹出窗口的内容,或者,干脆用自己的数据来构造这样的弹出窗口,但是,在百度地图最新的Android SDK中,没有方便
2022-06-06

微信小程序如何实现自定义弹窗组件

本篇内容主要讲解“微信小程序如何实现自定义弹窗组件”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“微信小程序如何实现自定义弹窗组件”吧!首先,放一下,最终的效果图:这是我们最后要实现的效果那么,首
2023-07-02

win10系统如何实现窗口自定义调整

这篇文章主要为大家展示了“win10系统如何实现窗口自定义调整”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“win10系统如何实现窗口自定义调整”这篇文章吧。1、按win+r打开运行窗口,输入r
2023-06-28

Android开发实现popupWindow弹出窗口自定义布局与位置控制方法

本文实例讲述了Android开发实现popupWindow弹出窗口自定义布局与位置控制方法。分享给大家供大家参考,具体如下:布局文件:主布局文件:activity_main:2023-05-30

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录