~vcs-imports/gconfmm/main

« back to all changes in this revision

Viewing changes to gconf/gconfmm/callback.cc

  • Committer: murrayc
  • Date: 2007-01-09 15:43:50 UTC
  • Revision ID: vcs-imports@canonical.com-20070109154350-lczyek6p0f2bqgva
moving

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// $Id: callback.cc 398 2003-01-28 23:17:29Z murrayc $
 
2
 
 
3
/* callback.cc
 
4
 *
 
5
 * Copyright (C) 2000-2002 GConfmm Development Team
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Library General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * Library General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Library General Public
 
18
 * License along with this library; if not, write to the Free
 
19
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
20
 */
 
21
 
 
22
#include <gconfmm/callback.h>
 
23
 
 
24
#include <gconfmm/client.h>
 
25
 
 
26
namespace Gnome
 
27
{
 
28
 
 
29
namespace Conf
 
30
{
 
31
    
 
32
CallbackHolder::CallbackHolder(Callback slot)
 
33
: m_Slot(slot)
 
34
{
 
35
}
 
36
 
 
37
CallbackHolder::~CallbackHolder()
 
38
{
 
39
}
 
40
 
 
41
void CallbackHolder::add(Client* pObj)
 
42
{
 
43
  pObj->set_data ("gconfmm-client-cb", this, &CallbackHolder::destroy);
 
44
}
 
45
 
 
46
void CallbackHolder::destroy(void* data)
 
47
{
 
48
  delete (CallbackHolder*)data;
 
49
}
 
50
 
 
51
void CallbackHolder::call(GConfClient* client, guint i, GConfEntry* pEntry, void* data)
 
52
{
 
53
  if(data)
 
54
    ((CallbackHolder*)data)->m_Slot (i, Entry (pEntry, true));
 
55
}
 
56
 
 
57
} /* namespace Conf */
 
58
} /* namespace Gnome */