~noskcaj/ubuntu/saucy/sflphone/merge-1.2.3-2

« back to all changes in this revision

Viewing changes to kde/plasma/dataengine/sflphonEngine.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-05-19 21:46:37 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120519214637-la8rbrford5kj6m3
Tags: 1.1.0-1
* New upstream release 
  - Fixes "FTBFS with libccrtp-dev/2.0.2 from experimental" (Closes: #663282)
* NEW Maintainer: Debian VoIP Team - Thanks Francois for your work.
  - (Closes: #665789: O: sflphone -- SIP and IAX2 compatible VoIP phone)
* Added Build-Depends: libdbus-c++-bin
* Add gcc47-fixes.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2009-2012 by Savoir-Faire Linux                         *
3
 
 *   Author : Emmanuel Lepage Valle <emmanuel.lepage@savoirfairelinux.com >*
4
 
 *                                                                         *
5
 
 *   This program is free software; you can redistribute it and/or modify  *
6
 
 *   it under the terms of the GNU General Public License as published by  *
7
 
 *   the Free Software Foundation; either version 3 of the License, or     *
8
 
 *   (at your option) any later version.                                   *
9
 
 *                                                                         *
10
 
 *   This program is distributed in the hope that it will be useful,       *
11
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 
 *   GNU General Public License for more details.                          *
14
 
 *                                                                         *
15
 
 *   You should have received a copy of the GNU General Public License     *
16
 
 *   along with this program; if not, write to the                         *
17
 
 *   Free Software Foundation, Inc.,                                       *
18
 
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 
 **************************************************************************/
20
 
 
21
 
#ifndef SFLPHONEENGINE_H
22
 
#define SFLPHONEENGINE_H
23
 
 
24
 
#include <Plasma/DataEngine>
25
 
#include <QHash>
26
 
 
27
 
#include "../../src/lib/CallModel.h"
28
 
 
29
 
typedef QHash<QString,QVariant> HashStringString;
30
 
class Call;
31
 
 
32
 
class SFLPhoneEngine : public Plasma::DataEngine
33
 
{
34
 
   Q_OBJECT
35
 
 
36
 
   public:
37
 
      SFLPhoneEngine(QObject* parent, const QVariantList& args);
38
 
      virtual QStringList sources() const;
39
 
 
40
 
   protected:
41
 
      bool sourceRequestEvent(const QString& name);
42
 
      bool updateSourceEvent(const QString& source);
43
 
 
44
 
   private:
45
 
      QHash<QString, HashStringString > historyCall  ;
46
 
      QHash<QString, HashStringString > currentCall  ;
47
 
      QHash<QString, QStringList> currentConferences ;
48
 
      CallModelConvenience* m_pModel;
49
 
      QString getCallStateName(call_state state);
50
 
      void updateHistory        ();
51
 
      void updateCallList       ();
52
 
      void updateContacts       ();
53
 
      void updateConferenceList ();
54
 
      void updateInfo();
55
 
   private slots:
56
 
      void callStateChangedSignal  (Call* call);
57
 
      void incomingCallSignal      (Call* conf);
58
 
      void conferenceCreatedSignal (Call* conf);
59
 
      void conferenceChangedSignal (Call* conf);
60
 
      //void conferenceRemovedSignal(const QString& confId);
61
 
      void incomingMessageSignal( const QString& accountId, const QString& message );
62
 
      void voiceMailNotifySignal( const QString& accountId, int count              );
63
 
      void accountChanged();
64
 
};
65
 
 
66
 
#endif // SFLPHONEENGINE_H