当应用程序处于后台Symbian时,在QML中暂停应用程序

时间:2012-05-25 10:09:34

标签: background symbian qml

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

2 个答案:

答案 0 :(得分: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()
            }
        }
    }
}

享受:)

答案 1 :(得分:1)

为什么需要纯QML方式?

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

对于“纯”QML方式,有Symbian QML元素: 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()
        }
    }
}