~ubuntu-branches/ubuntu/precise/gtkmm3.0/precise

« back to all changes in this revision

Viewing changes to gtk/gtkmm/stockid.cc

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2011-06-17 00:12:44 UTC
  • Revision ID: james.westby@ubuntu.com-20110617001244-9hl5an15hiaaahi6
Tags: upstream-3.0.1
ImportĀ upstreamĀ versionĀ 3.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- c++ -*-
 
2
/* $Id$ */
 
3
 
 
4
/* stockid.cc
 
5
 *
 
6
 * Copyright (C) 1998-2002 The gtkmm Development Team
 
7
 *
 
8
 * This library is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU Lesser General Public
 
10
 * License as published by the Free Software Foundation; either
 
11
 * version 2.1 of the License, or (at your option) any later version.
 
12
 *
 
13
 * This library is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * Lesser General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Lesser General Public
 
19
 * License along with this library; if not, write to the Free
 
20
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
21
 */
 
22
 
 
23
#include <gtkmm/stockid.h>
 
24
#include <gtkmm/stock.h>
 
25
 
 
26
 
 
27
namespace Gtk
 
28
{
 
29
 
 
30
StockID::StockID()
 
31
{}
 
32
 
 
33
StockID::StockID(const BuiltinStockID& id)
 
34
:
 
35
  id_ (id.id)
 
36
{}
 
37
 
 
38
StockID::StockID(const Glib::ustring& id)
 
39
:
 
40
  id_ (id)
 
41
{}
 
42
 
 
43
StockID::StockID(const char* id)
 
44
:
 
45
  id_ ((id) ? id : "")
 
46
{}
 
47
 
 
48
StockID::~StockID()
 
49
{}
 
50
 
 
51
StockID::StockID(const StockID& other)
 
52
:
 
53
  id_ (other.id_)
 
54
{}
 
55
 
 
56
StockID& StockID::operator=(const StockID& other)
 
57
{
 
58
  id_ = other.id_;
 
59
  return *this;
 
60
}
 
61
 
 
62
StockID::operator const void*() const
 
63
{
 
64
  return !(id_.empty()) ? GINT_TO_POINTER(1) : 0 ;
 
65
}
 
66
 
 
67
bool StockID::equal(const StockID& rhs) const
 
68
{
 
69
  // Do an exact per-byte comparison:
 
70
  // Locale-dependent collation is probably not appropriate for stock IDs.
 
71
  return (id_.raw() == rhs.id_.raw());
 
72
}
 
73
 
 
74
Glib::ustring StockID::get_string() const
 
75
{
 
76
  return id_;
 
77
}
 
78
 
 
79
const char* StockID::get_c_str() const
 
80
{
 
81
  return id_.c_str();
 
82
}
 
83
 
 
84
} // namespace Gtk