1

我想知道任何纯 QML 方法来确定应用程序是否在后台,然后相应地停止或播放音乐。在 meego 中,另一种方法是通过 PlatformWindow 元素,但在 Symbian QML 中不存在。请需要帮助

4

2 回答 2

2

最后我让它工作了:)我通过Qt方式做到了......这里是步骤

1) 创建一个类 MyEventFilter

class myEventFilter : public QObject
{

bool eventFilter(QObject *obj, QEvent *event) {
    switch(event->type()) {
    case QEvent::WindowActivate:
        emit qmlvisiblechange(true);
        qDebug() << "Window activated";

        bis_foreground=true;
        return true;
    case QEvent::WindowDeactivate:
        emit qmlvisiblechange(false);
        qDebug() << "Window deactivated";

        bis_foreground=false;
        return true;
    default:
    return false;
    }
}


 void dosomething();

private:
   int something;
public:
   bool bis_foreground;
      Q_OBJECT
 public slots:
   Q_INVOKABLE QString checkvisibility() {
       if (bis_foreground==true) return "true";
       else return "false";
   }
signals:
    void qmlvisiblechange(bool is_foreground);

}; 

2)然后在 main.cpp 中包含这个文件,包括该类并像这样添加 setContext 属性

context->setContextProperty("myqmlobject", &ef);

3)在qml文件中这样调用它:

 Item {
    id: name
    Connections
    {
        target:myqmlobject
        onQmlvisiblechange:
        {


            if(is_foreground)
            {
              //dont do anything...
            }
            else
            {


                playSound.stop()
            }
        }
    }
}

享受 :)

于 2012-05-28T08:20:48.913 回答
1

为什么需要纯 QML 方式?

您可以通过安装事件过滤器来检测应用程序是否已发送到后台。检查: http: //www.developer.nokia.com/Community/Wiki/Detecting_when_a_Qt_application_has_been_switched_to_the_background_and_when_resumed

对于“纯”QML 方式,有SymbianQML 元素: http ://doc.qt.nokia.com/qt-components-symbian/qml-symbian.html

它有一个foreground属性,指示应用程序是在前台还是在后台。您可以尝试连接到onForegroundChanged.

从文档中,该Symbian元素不是“可创建的”。它作为名为 的上下文属性存在symbian。所以一个示例用法是:

import QtQuick 1.1
import com.nokia.symbian 1.1

    PageStackWindow {
        id: window
        initialPage: MainPage {tools: toolBarLayout}
        showStatusBar: true
        showToolBar: true

        function appForegroundChanged() {
             console.log("Foreground: " + symbian.foreground)
         }
        function appCurrentTimeChanged() {
             console.log("Current time: " + symbian.currentTime)
         }
        Component.onCompleted: {
            symbian.currentTimeChanged.connect(appCurrentTimeChanged)
            symbian.foregroundChanged.connect(appForegroundChanged)
        }

        ToolBarLayout {


      id: toolBarLayout
        ToolButton {
            flat: true
            iconSource: "toolbar-back"
            onClicked: window.pageStack.depth <= 1 ? Qt.quit() : window.pageStack.pop()
        }
    }
}
于 2012-05-27T13:52:46.773 回答