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

« back to all changes in this revision

Viewing changes to plugins/loudmouth/loudmouth-heap.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-2008 Damien Sandras
 
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
 *                         loudmouth-heap.h  -  description
 
29
 *                         ------------------------------------------
 
30
 *   begin                : written in 2008 by Julien Puydt
 
31
 *   copyright            : (c) 2008 by Julien Puydt
 
32
 *   description          : declaration of a loudmouth heap
 
33
 *
 
34
 */
 
35
 
 
36
#ifndef __LOUDMOUTH_HEAP_H__
 
37
#define __LOUDMOUTH_HEAP_H__
 
38
 
 
39
#include "heap-impl.h"
 
40
#include "personal-details.h"
 
41
#include "loudmouth-dialect.h"
 
42
 
 
43
namespace LM
 
44
{
 
45
  class Heap:
 
46
    public Ekiga::HeapImpl<Presentity>,
 
47
    public boost::signals::trackable
 
48
  {
 
49
  public:
 
50
 
 
51
    Heap (boost::shared_ptr<Ekiga::PersonalDetails> details_,
 
52
          DialectPtr dialect_,
 
53
          LmConnection* connection_);
 
54
 
 
55
    ~Heap ();
 
56
 
 
57
    const std::string get_name () const;
 
58
 
 
59
    bool populate_menu (Ekiga::MenuBuilder& builder);
 
60
 
 
61
    bool populate_menu_for_group (const std::string group,
 
62
                                  Ekiga::MenuBuilder& builder);
 
63
 
 
64
    void disconnected ();
 
65
 
 
66
    /* public to be accessed by the account */
 
67
 
 
68
    void set_name (const std::string name_);
 
69
 
 
70
    /* public to be accessed by C callbacks */
 
71
 
 
72
    LmHandlerResult iq_handler (LmMessage* message);
 
73
 
 
74
    LmHandlerResult presence_handler (LmMessage* message);
 
75
 
 
76
    LmHandlerResult message_handler (LmMessage* message);
 
77
 
 
78
  private:
 
79
 
 
80
    boost::shared_ptr<Ekiga::PersonalDetails> details;
 
81
 
 
82
    DialectPtr dialect;
 
83
 
 
84
    std::string name;
 
85
 
 
86
    LmConnection* connection;
 
87
 
 
88
    LmMessageHandler* iq_lm_handler;
 
89
 
 
90
    LmMessageHandler* presence_lm_handler;
 
91
 
 
92
    LmMessageHandler* message_lm_handler;
 
93
 
 
94
    void parse_roster (LmMessageNode* query);
 
95
 
 
96
    void add_item ();
 
97
 
 
98
    void add_item_form_submitted (bool submitted,
 
99
                                  Ekiga::Form& result);
 
100
 
 
101
    void subscribe_from_form_submitted (bool submitted,
 
102
                                        Ekiga::Form& result);
 
103
 
 
104
    PresentityPtr find_item (const std::string jid);
 
105
 
 
106
    void on_personal_details_updated ();
 
107
 
 
108
    void on_chat_requested (PresentityPtr presentity);
 
109
  };
 
110
 
 
111
  typedef boost::shared_ptr<Heap> HeapPtr;
 
112
 
 
113
};
 
114
 
 
115
#endif