~renatofilho/dialer-app/fix-phone-formatter

« back to all changes in this revision

Viewing changes to src/dialerapplication.h

  • Committer: Gustavo Pichorim Boiko
  • Date: 2013-10-04 20:22:17 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: gustavo.boiko@canonical.com-20131004202217-lwajfmt6bljyc4xp
Change the dialer-app to use the new URL dispatcher mechanism.

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
};