~tatokis/unity/gcc-72-errors

« back to all changes in this revision

Viewing changes to UnityCore/Scopes.h

  • Committer: Pawel Stolowski
  • Date: 2013-05-16 10:58:57 UTC
  • mfrom: (3008.2.136 libunity-7.0-breakage)
  • mto: This revision was merged to the branch mainline in revision 3325.
  • Revision ID: pawel.stolowski@canonical.com-20130516105857-j51uiapol2zc8vr8
Merged smart scopes branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
 
2
/*
 
3
 * Copyright (C) 2011 Canonical Ltd
 
4
 *
 
5
 * This program is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License version 3 as
 
7
 * published by the Free Software Foundation.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 *
 
17
 * Authored by: Neil Jagdish Patel <neil.patel@canonical.com>
 
18
                Nick Dedekind <nick.dedeknd@canoncial.com>
 
19
 */
 
20
 
 
21
#ifndef UNITY_SCOPES_H
 
22
#define UNITY_SCOPES_H
 
23
 
 
24
#include <sigc++/trackable.h>
 
25
#include <sigc++/signal.h>
 
26
 
 
27
#include "Scope.h"
 
28
 
 
29
namespace unity
 
30
{
 
31
namespace dash
 
32
{
 
33
 
 
34
typedef std::vector<ScopeData::Ptr> ScopeDataList;
 
35
 
 
36
class ScopesReader : public sigc::trackable, boost::noncopyable
 
37
{
 
38
public:
 
39
  typedef std::shared_ptr<ScopesReader> Ptr;
 
40
  virtual ~ScopesReader() {}
 
41
 
 
42
  virtual void LoadScopes() = 0;
 
43
  virtual ScopeDataList const& GetScopesData() const = 0;
 
44
 
 
45
  virtual ScopeData::Ptr GetScopeDataById(std::string const& scope_id) const = 0;
 
46
 
 
47
  sigc::signal<void, ScopeDataList const&> scopes_changed;
 
48
};
 
49
 
 
50
class Scopes : public sigc::trackable, boost::noncopyable
 
51
{
 
52
public:
 
53
  typedef std::shared_ptr<Scopes> Ptr;
 
54
  typedef std::vector<Scope::Ptr> ScopeList;
 
55
 
 
56
  Scopes(ScopesReader::Ptr scope_reader);
 
57
  virtual ~Scopes();
 
58
 
 
59
  virtual void LoadScopes();
 
60
 
 
61
  /**
 
62
   * Get the currently loaded Scopess. This is necessary as some of the consumers
 
63
   * of this object employ a lazy-loading technique to reduce the overhead of
 
64
   * starting Unity. Therefore, the Scopes may already have been loaded by the time
 
65
   * the objects have been initiated (and so just connecting to the signals is not
 
66
   * enough)
 
67
   */
 
68
  virtual ScopeList const& GetScopes() const;
 
69
  virtual Scope::Ptr GetScope(std::string const& scope_id, int* position = nullptr) const;
 
70
  virtual Scope::Ptr GetScopeAtIndex(std::size_t index) const;
 
71
  virtual Scope::Ptr GetScopeForShortcut(std::string const& scope_shortcut) const;
 
72
 
 
73
  nux::ROProperty<std::size_t> count;
 
74
 
 
75
  sigc::signal<void, Scope::Ptr const&, int> scope_added;
 
76
  sigc::signal<void, Scope::Ptr const&> scope_removed;
 
77
 
 
78
  sigc::signal<void, ScopeList const&> scopes_reordered;
 
79
 
 
80
  virtual void AppendScope(std::string const& scope_id);
 
81
  virtual void InsertScope(std::string const& scope_id, unsigned index);
 
82
  virtual void RemoveScope(std::string const& scope_id);
 
83
 
 
84
protected:
 
85
  virtual Scope::Ptr CreateScope(ScopeData::Ptr const& scope_data);
 
86
 
 
87
private:
 
88
  class Impl;
 
89
  std::unique_ptr<Impl> pimpl;
 
90
 
 
91
  friend class TestScope;
 
92
};
 
93
 
 
94
} // namespace dash
 
95
} // namespace unity
 
96
 
 
97
#endif // UNITY_SCOPES_H