~ubuntu-branches/ubuntu/vivid/ekiga/vivid-proposed

« back to all changes in this revision

Viewing changes to lib/engine/components/call-history/history-contact.h

  • Committer: Bazaar Package Importer
  • Author(s): Kilian Krause
  • Date: 2011-07-17 00:24:50 UTC
  • mfrom: (5.1.5 upstream) (7.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110717002450-ytg3wsrc1ptd3153
Tags: 3.3.1-1
* New upstream release.
 - Required libpt-dev 2.10 and libopal-dev 3.10
* Fix debian/watch to catch new version
* Remove libnotify0.7.patch - included upstream
* Add libboost-dev and libboost-signals-dev to Build-Depends
* debian/rules: Don't install *.la files for new internal shared libs
* Fix Vcs URIs to point to correct desktop/experimental/ekiga tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
 * Ekiga -- A VoIP and Video-Conferencing application
 
4
 * Copyright (C) 2000-2009 Damien Sandras <dsandras@seconix.com>
 
5
 
 
6
 * This program is free software; you can  redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or (at
 
9
 * your option) any later version. This program is distributed in the hope
 
10
 * that it will be useful, but WITHOUT ANY WARRANTY; without even the
 
11
 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
12
 * See the GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License along
 
15
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
16
 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
17
 *
 
18
 * Ekiga is licensed under the GPL license and as a special exception, you
 
19
 * have permission to link or otherwise combine this program with the
 
20
 * programs OPAL, OpenH323 and PWLIB, and distribute the combination, without
 
21
 * applying the requirements of the GNU GPL to the OPAL, OpenH323 and PWLIB
 
22
 * programs, as long as you do follow the requirements of the GNU GPL for all
 
23
 * the rest of the software thus combined.
 
24
 */
 
25
 
 
26
 
 
27
/*
 
28
 *                         history-contact.h  -  description
 
29
 *                         ------------------------------------------
 
30
 *   begin                : written in 2007 by Julien Puydt
 
31
 *   copyright            : (c) 2007 by Julien Puydt
 
32
 *   description          : declaration of a call history entry
 
33
 *
 
34
 */
 
35
 
 
36
#ifndef __HISTORY_CONTACT_H__
 
37
#define __HISTORY_CONTACT_H__
 
38
 
 
39
#include <libxml/tree.h>
 
40
 
 
41
#include <boost/smart_ptr.hpp>
 
42
 
 
43
#include "services.h"
 
44
#include "contact-core.h"
 
45
 
 
46
namespace History
 
47
{
 
48
 
 
49
/**
 
50
 * @addtogroup contacts
 
51
 * @internal
 
52
 * @{
 
53
 */
 
54
 
 
55
  typedef enum {
 
56
 
 
57
    RECEIVED,
 
58
    PLACED,
 
59
    MISSED
 
60
  } call_type;
 
61
 
 
62
  class Contact: public Ekiga::Contact
 
63
  {
 
64
  public:
 
65
 
 
66
    Contact (Ekiga::ServiceCore &_core,
 
67
             boost::shared_ptr<xmlDoc> _doc,
 
68
             xmlNodePtr _node);
 
69
 
 
70
    Contact (Ekiga::ServiceCore &_core,
 
71
             boost::shared_ptr<xmlDoc> _doc,
 
72
             const std::string _name,
 
73
             const std::string _uri,
 
74
             time_t call_start,
 
75
             const std::string call_duration,
 
76
             call_type c_t);
 
77
 
 
78
    ~Contact ();
 
79
 
 
80
    /*** generic contact api ***/
 
81
 
 
82
    const std::string get_name () const;
 
83
 
 
84
    bool has_uri (const std::string uri_) const;
 
85
 
 
86
    const std::set<std::string> get_groups () const;
 
87
 
 
88
    bool populate_menu (Ekiga::MenuBuilder &builder);
 
89
 
 
90
    /*** more specific api ***/
 
91
 
 
92
    xmlNodePtr get_node ();
 
93
 
 
94
    call_type get_type () const;
 
95
 
 
96
    time_t get_call_start () const;
 
97
 
 
98
    const std::string get_call_duration () const;
 
99
 
 
100
  private:
 
101
 
 
102
    Ekiga::ServiceCore &core;
 
103
 
 
104
    boost::shared_ptr<xmlDoc> doc;
 
105
    xmlNodePtr node;
 
106
    std::string name;
 
107
    std::string uri;
 
108
    time_t call_start;
 
109
    std::string call_duration;
 
110
    call_type m_type;
 
111
  };
 
112
 
 
113
  typedef boost::shared_ptr<Contact> ContactPtr;
 
114
 
 
115
/**
 
116
 * @}
 
117
 */
 
118
 
 
119
};
 
120
 
 
121
#endif