~ubuntu-branches/ubuntu/wily/sflphone/wily

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/****************************************************************************
 *   Copyright (C) 2013-2014 by Savoir-Faire Linux                          *
 *   Author : Emmanuel Lepage Vallee <emmanuel.lepage@savoirfairelinux.com> *
 *                                                                          *
 *   This library is free software; you can redistribute it and/or          *
 *   modify it under the terms of the GNU Lesser General Public             *
 *   License as published by the Free Software Foundation; either           *
 *   version 2.1 of the License, or (at your option) any later version.     *
 *                                                                          *
 *   This library is distributed in the hope that it will be useful,        *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of         *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU      *
 *   Lesser General Public License for more details.                        *
 *                                                                          *
 *   You should have received a copy of the GNU General Public License      *
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
 ***************************************************************************/
#ifndef NUMBERCOMPLETIONMODEL_H
#define NUMBERCOMPLETIONMODEL_H

#include <QtCore/QAbstractTableModel>
#include "typedefs.h"
#include "phonedirectorymodel.h"


class PhoneNumber;
class Call;

class LIB_EXPORT NumberCompletionModel : public QAbstractTableModel {
   Q_OBJECT

public:

   //Properties
   Q_PROPERTY(QString prefix READ prefix WRITE setPrefix)

   enum Role {
      ALTERNATE_ACCOUNT= 100,
      FORCE_ACCOUNT    = 101,
      ACCOUNT          = 102,
   };

   NumberCompletionModel();
   virtual ~NumberCompletionModel();

   //Abstract model member
   QVariant data(const QModelIndex& index, int role = Qt::DisplayRole ) const;
   int rowCount(const QModelIndex& parent = QModelIndex()             ) const;
   Qt::ItemFlags flags(const QModelIndex& index                       ) const;
   virtual bool setData(const QModelIndex& index, const QVariant &value, int role);
   virtual int columnCount(const QModelIndex& parent = QModelIndex()  ) const;
   virtual QVariant headerData (int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const;

   //Setters
   void setCall(Call* call);
   void setUseUnregisteredAccounts(bool value);

   //Getters
   Call* call() const;
   PhoneNumber* number(const QModelIndex& idx) const;
   bool isUsingUnregisteredAccounts();
   QString prefix() const;

protected:
   //Helper
   void getRange(QMap<QString,PhoneDirectoryModel::NumberWrapper*> map, const QString& prefix, QSet<PhoneNumber*>& set) const;

private:
   enum class Columns {
      CONTENT = 0,
      NAME    = 1,
      ACCOUNT = 2,
      WEIGHT  = 3,
   };

   //Methods
   void updateModel();

   //Helper
   void locateNameRange  (const QString& prefix, QSet<PhoneNumber*>& set);
   void locateNumberRange(const QString& prefix, QSet<PhoneNumber*>& set);
   uint getWeight(PhoneNumber* number);

   //Attributes
   QMultiMap<int,PhoneNumber*> m_hNumbers              ;
   QString                     m_Prefix                ;
   Call*                       m_pCall                 ;
   bool                        m_Enabled               ;
   bool                        m_UseUnregisteredAccount;


public Q_SLOTS:
   void setPrefix(const QString& str);

Q_SIGNALS:
   void enabled(bool);

};

#endif