~phablet-team/dialer-app/trunk

« back to all changes in this revision

Viewing changes to src/dialerapplication.h

  • Committer: Tarmac
  • Author(s): Gustavo Pichorim Boiko
  • Date: 2013-10-10 04:29:32 UTC
  • mfrom: (60.3.7 dialer-app)
  • Revision ID: tarmac-20131010042932-gbponq2kqam9afrk
Change the dialer-app to use the new URL dispatcher mechanism. Fixes: https://bugs.launchpad.net/bugs/1230404.

Approved by Bill Filler, Tiago Salem Herrmann, Michael Terry, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <QQuickView>
24
24
#include <QGuiApplication>
25
25
 
26
 
class DialerAppDBus;
27
 
 
28
26
class DialerApplication : public QGuiApplication
29
27
{
30
28
    Q_OBJECT
37
35
 
38
36
public Q_SLOTS:
39
37
    void activateWindow();
40
 
 
41
 
private:
42
38
    void parseArgument(const QString &arg);
43
39
 
44
40
private Q_SLOTS:
45
 
    void onMessageReceived(const QString &message);
46
41
    void onViewStatusChanged(QQuickView::Status status);
47
42
    void onApplicationReady();
48
43
 
49
44
private:
50
45
    QQuickView *m_view;
51
 
    DialerAppDBus *m_dbus;
52
46
    QString m_arg;
53
47
    bool m_applicationIsReady;
54
48
};