[Qt/qml]程序之外显示的弹幕

/ 44,205评论 / 217033阅读 / 4点赞

前几天课设做个聊天系统,顺便实现了这个在程序外显示弹幕作为消息提示的功能,这里记录一下怎么搞。

效果

思路

实操

import QtQuick 2.3
import QtQuick.Controls 2.5
//窗口
ApplicationWindow  {
    id:root
    property string str: "我的洛天依"  //弹幕文本内容
    width: 300
    height: 40

    flags:  Qt.FramelessWindowHint  //去掉窗口标题栏
    color:"#00000000"   //设置背景透明

    Rectangle {     //使用矩形包裹Text是为了在Text外面可以增加圆角矩形边框效果
        anchors.fill: parent
        border.width: 1     //设置边框
        border.color: "#66ccff"
        color:"#00000000"
        radius: 20          //边框圆角
        clip: true          //超出矩形范围的内容隐藏

        Text {      //弹幕文本
            anchors.fill: parent
            text: str
            font.bold: true
            font.pointSize: 15
            color: "#66ccff"
            style: Text.Outline     //设置文本样式,在字体轮廓加一层styleColor指定的颜色边缘,防止背景导致文本不明显
            styleColor: "#fff"
            horizontalAlignment: Text.AlignHCenter  //居中
            verticalAlignment:   Text.AlignVCenter
            clip: true
        }
    }
}
import QtQuick
import QtQuick.Window 2.3
import QtQuick.Controls 2.5

Window {
    id:mainWin
    width: 700
    height: 500
    visible: true
    title: qsTr("MimicryChat")

    //添加弹幕
    function addBarrage(in_str) {
        var newCom = Qt.createComponent("Barrage.qml");   //创建弹幕窗口
        var newWin = newCom.createObject();
        newWin.x   = 200;
        newWin.y   = Math.random() * 900;   //随机竖直位置
        newWin.str = in_str;   //设置弹幕文本
        newWin.show();         //显示弹幕窗口

        //设置定时控制器
        let timer = Qt.createQmlObject("import QtQuick 2.14; Timer {}", mainWin);
        timer.interval = 20;    //执行间隔时间(单位ms)
        timer.repeat = true;    //重复执行
        timer.triggered.connect(function() {  //执行内容
            if(newWin.x < 1700) {  //如果没到右边缘就移动2个像素点
                newWin.x += 2;
            } else {
                timer.stop();      //到达右边缘,则停止定时控制器,并销毁弹幕
                newWin.close();
            }
        });
        timer.start();   //启动定时器
    }
    Rectangle {   //主窗口背景颜色
        anchors.fill: parent
        color: "#dde8fc"
        radius: 20
    }
    Button {
        width:100
        height: 40
        text:"发送弹幕"
        anchors.bottom: parent.bottom
        anchors.bottomMargin: 10
        //水平居中
        anchors.horizontalCenter: parent.horizontalCenter
        onClicked: {
            addBarrage("嘿嘿,我的洛天依");
        }
    }
}

问题

  1. ThomasInace说道:

    http://doxycyclinedelivery.pro/# buy doxycycline united states

  2. MyronEvown说道:

    http://amoxildelivery.pro/# over the counter amoxicillin
    amoxicillin 500 [url=https://amoxildelivery.pro/#]amoxicillin 500 mg cost[/url] buy amoxicillin online mexico

  3. 슬롯说道:

    슬롯 무료 쿠폰
    “네, 네, 알아요.” 덩젠은 닭이 밥을 쪼아먹듯 고개를 끄덕였다.

  4. ThomasInace说道:

    https://ciprodelivery.pro/# cipro for sale

  5. Dnrtahe说道:

    Добрый день!
    Купить документ ВУЗа можно в нашей компании.
    diplomasx24.ru/kupit-diplom-nizhnij-novgorod
    Успешной учебы!

  6. ThomasInace说道:

    https://doxycyclinedelivery.pro/# doxycycline 100mg lowest price

  7. Lazrcif说道:

    Добрый день!
    Где заказать диплом по нужной специальности?
    Купить диплом университета.
    http://www.art-gsm.ru/forum/?PAGE_NAME=profile_view&UID=34599

  8. Jamesjer说道:

    paxlovid buy: paxlovid pill – paxlovid pharmacy

  9. Lariorxfi说道:

    Легальная покупка диплома о среднем образовании в Москве и регионах
    diploms-x24.ru/kupit-diplom-krasnoyarsk

  10. ThomasInace说道:

    https://clomiddelivery.pro/# cost of clomid now

  11. Jamesjer说道:

    cost of cheap clomid without a prescription: can i get generic clomid price – can i get clomid

  12. Trefcoi说道:

    Добрый день!
    Официальное получение диплома техникума с упрощенным обучением в Москве
    imladrisproduction.free.fr/index.php?file=Members&op=detail&autor=ofonuke
    Поможем вам всегда!.

  13. Lazrytz说道:

    Здравствуйте!
    Мы готовы предложить дипломы любой профессии по приятным ценам.
    http://www.lafornacella.com/диплом-специалиста-2014-2024-фото/

  14. Lazrcpc说道:

    Добрый день!
    Заказать диплом ВУЗа.
    logan.in.ua/people/user/7276/blog/7929/

  15. BomesMix说道:

    Lorem Ipsum has been the industry’s standard dummy text https://korepetytorek.pl/ktvxank of type and scrambled it to make a type specimen book.

  16. MichaelLix说道:

    FC Bayern Munich (Munich) https://germany.bayern-munchen-ar.com is one of the most famous and recognized football clubs in Germany and Europe

  17. TimothySkymn说道:

    Real Madrid’s https://spain.real-madrid-ar.com history goes back more than a century. The club was founded in 1902 by a group of football enthusiasts led by Juan Padilla

  18. RandallWhirm说道:

    Arsenal https://england.arsenal-ar.com is one of the most famous and successful football clubs in the history of English football.

  19. ThomasInace说道:

    http://clomiddelivery.pro/# where to get cheap clomid without dr prescription

  20. Jamesjer说道:

    ciprofloxacin mail online: buy cipro no rx – ciprofloxacin generic

  21. порно коллекции бесплатно porn-library.ru .

  22. Jamesjer说道:

    order clomid prices: how to buy cheap clomid online – where to buy cheap clomid no prescription

  23. Sazrgna说道:

    Добрый день!
    Как купить диплом о высшем образовании с минимальными рисками
    fremontrp.listbb.ru/viewtopic.php?f=18&t=432
    Рады помочь!

  24. Trefjzg说道:

    Привет!
    Быстрая схема покупки диплома старого образца: что важно знать?
    redhawkclan.free.fr/index.php?file=Members&op=detail&autor=utawejav
    Рады оказаться полезными!.

  25. Trefpro说道:

    Привет, друзья!
    Официальная покупка диплома вуза с упрощенной программой обучения
    ud-kultura.ru/index.php?subaction=userinfo&user=afywiryr
    Рады помочь!.

  26. Uazrhmq说道:

    Привет!
    Где приобрести диплом по нужной специальности?
    http://www.leenkup.com/read-blog/16408

  27. Trefelr说道:

    Добрый день!
    Официальная покупка диплома вуза с сокращенной программой обучения в Москве
    dosaaf64.com/index.php?subaction=userinfo&user=oquwoze
    Поможем вам всегда!.

  28. essay writer说道:

    An interesting discussion is definitely worth comment. I do believe that you need to publish more on this topic, it may not be a taboo matter but typically folks don’t speak about such topics. To the next! All the best.

  29. BomesMix说道:

    Lorem Ipsum has been the industry’s standard dummy text https://btelectricshop.es/cugrar of type and scrambled it to make a type specimen book.

  30. Dnrtvlw说道:

    Привет!
    Приобрести документ о получении высшего образования вы можете в нашем сервисе.
    diploms-x24.ru/kupit-diplom-rostov-na-donu
    Удачи!

  31. Yreftxq说道:

    Добрый день!
    Приобрести диплом любого университета.
    rcdrift.ru/forum/member.php?u=21074
    Успехов в учебе!

  32. ByCasino说道:

    Hello! I could have sworn I’ve been to this blog before but after browsing through some of the post I realized it’s new to me.Seo Paketi Skype: By_uMuT@KRaLBenim.Com -_- live:by_umut

  33. ByCasino说道:

    Nice article inspiring thanks. Hello Administ . Seo Paketi Skype: By_uMuT@KRaLBenim.Com -_- live:by_umut

  34. By Casino说道:

    Great post thank you. Hello Administ . Seo Paketi Skype: By_uMuT@KRaLBenim.Com -_- live:by_umut

  35. ByCasino说道:

    Thank you great posting about essential oil. Hello Administ . Seo Paketi Skype: By_uMuT@KRaLBenim.Com -_- live:by_umut

  36. hacklink说道:

    Great post thank you. Hello Administ . Seo Paketi Skype: By_uMuT@KRaLBenim.Com -_- live:by_umut

  37. Lazrdhm说道:

    Добрый день!
    Купить диплом о высшем образовании.
    rugladyseminars.com/cb-profile/pluginclass/cbblogs?action=blogs&func=show&id=399

  38. ThomasInace说道:

    http://ciprodelivery.pro/# buy generic ciprofloxacin

  39. Cazrtbz说道:

    Привет, друзья!
    Мы предлагаем документы ВУЗов, которые расположены в любом регионе России. Вы можете купить качественный диплом от любого учебного заведения, за любой год, в том числе документы старого образца СССР. Документы делаются на “правильной” бумаге высшего качества. Это позволяет делать государственные дипломы, не отличимые от оригинала. Они будут заверены необходимыми печатями и подписями.
    bizinhome.mn.co/posts/61837993

  40. BomesMix说道:

    Lorem Ipsum has been the industry’s standard dummy text https://kroatiereis.nl/uwpxq of type and scrambled it to make a type specimen book.

  41. Mazrsye说道:

    Привет, друзья!
    Легальная покупка школьного аттестата с упрощенной программой обучения
    http://www.lafornacella.com/диплом-специалиста-2014-2024-фото/

  42. Sazrobd说道:

    Привет, друзья!
    Сколько стоит диплом высшего и среднего образования и как это происходит?
    msfo-soft.ru/msfo/forum/messages/forum24/topic10394/message292502/?result=new#message292502
    Рады помочь!

  43. child porn site说道:

    You�re so awesome! I don�t believe I have read a single thing like that before. So great to find someone with some original thoughts on this topic. Really.. thank you for starting this up. This website is something that is needed on the internet, someone with a little originality!

  44. Jamesjer说道:

    amoxicillin discount coupon: amoxicillin order online – buy amoxil

  45. ThomasInace说道:

    https://clomiddelivery.pro/# buying clomid prices

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注