~ubuntu-branches/ubuntu/saucy/ekiga/saucy

« back to all changes in this revision

Viewing changes to lib/engine/presence/uri-presentity.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
 *                         uri-presentity.h  -  description
 
29
 *                         ------------------------------------------
 
30
 *   begin                : written in 2008 by Julien Puydt
 
31
 *   copyright            : (c) 2008 by Julien Puydt
 
32
 *   description          : declaration of a presentity around a simple URI
 
33
 *
 
34
 */
 
35
 
 
36
 
 
37
 
 
38
#ifndef __URI_PRESENTITY_H__
 
39
#define __URI_PRESENTITY_H__
 
40
 
 
41
#include "form.h"
 
42
#include "presence-core.h"
 
43
#include "presentity.h"
 
44
 
 
45
/* The basic use-case is when one has only an uri (and a name), but not much
 
46
 * data, and the presence core is supposed to take care of making it live.
 
47
 */
 
48
 
 
49
namespace Ekiga
 
50
{
 
51
 
 
52
  /**
 
53
   * @addtogroup presence
 
54
   * @internal
 
55
   * @{
 
56
   */
 
57
 
 
58
  /**
 
59
   * This class implements an Ekiga::Presentity.
 
60
   */
 
61
  class URIPresentity:
 
62
    public Ekiga::Presentity,
 
63
    public boost::signals::trackable
 
64
  {
 
65
  public:
 
66
 
 
67
    /**
 
68
     * Constructor and destructor
 
69
     */
 
70
    URIPresentity (Ekiga::ServiceCore& _core,
 
71
                   std::string name_,
 
72
                   std::string uri_,
 
73
                   std::set<std::string> groups_);
 
74
 
 
75
    ~URIPresentity ();
 
76
 
 
77
 
 
78
    /**
 
79
     * Getters for the presentity
 
80
     */
 
81
    const std::string get_name () const;
 
82
 
 
83
    const std::string get_presence () const;
 
84
 
 
85
    const std::string get_status () const;
 
86
 
 
87
    const std::set<std::string> get_groups () const;
 
88
 
 
89
    bool has_uri (const std::string uri_) const;
 
90
 
 
91
    const std::string get_uri () const;
 
92
 
 
93
    /** Populates the given Ekiga::MenuBuilder with the actions.
 
94
     * @param: A MenuBuilder.
 
95
     */
 
96
    bool populate_menu (Ekiga::MenuBuilder& builder);
 
97
 
 
98
  private:
 
99
 
 
100
    Ekiga::ServiceCore &core;
 
101
 
 
102
    std::string name;
 
103
    std::string uri;
 
104
    std::string presence;
 
105
    std::set<std::string> groups;
 
106
    std::string status;
 
107
 
 
108
    void on_presence_received (std::string uri_,
 
109
                               std::string presence_);
 
110
 
 
111
    void on_status_received (std::string uri_,
 
112
                             std::string status_);
 
113
  };
 
114
 
 
115
  /**
 
116
   * @}
 
117
   */
 
118
};
 
119
 
 
120
#endif