Qt 可否实现类似QQ发光字?

Qt 能否实现类似QQ发光字??
就是实现那种个类似QQ个性签名字体,字的边缘有种淡淡的白色

------解决方案--------------------
看此帖 http://bbs.csdn.net/topics/390438470

- GlowEffect
   class GlowEffect: 发光效果的QGraphicsEffect
------解决方案--------------------
建议你使用qml,在描述界面上非常的简单好用
ShaderEffect可以容你很容易的利用openGL
对图形进行渲染,作出各种很炫的效果


import QtQuick 2.0
import QtGraphicalEffects 1.0

Rectangle {
    id: root

    width: 800
    height: 480

    Text{
        id: text

        anchors.centerIn: root

        width: 500
        height: 500
        text: "wahaha"
    }

    Glow{
        source: ShaderEffectSource{sourceItem: text; hideSource: true}
        anchors.fill: text
        radius: 8
        samples: 16
        color: "green"
    }



Qt5.1加入了一个叫control的module,专门供qml开发桌面程序

qml入门
http://qt-project.org/wiki/Developer-Guides

其他的就读一读QtCreator附上的文件和google罢
KDE社区早就在进行利用qml对既有apps进行重构的工作了
------解决方案--------------------
引用:
建议你使用qml,在描述界面上非常的简单好用
ShaderEffect可以容你很容易的利用openGL
对图形进行渲染,作出各种很炫的效果


import QtQuick 2.0
import QtGraphicalEffects 1.0

Rectangle {
    id: root

    width: 800
    height: 480

    Text{
        id: text

        anchors.centerIn: root