~kgunn72/mir/mir-mwc-ppa-disable-tests

« back to all changes in this revision

Viewing changes to include/server/mir/shell/session_coordinator_wrapper.h

  • Committer: Tarmac
  • Author(s): Alan Griffiths
  • Date: 2015-01-28 20:21:34 UTC
  • mfrom: (2257.1.31 mir3)
  • Revision ID: tarmac-20150128202134-dn97lf8gwk0xcqbc
shell, frontend: Provide a mir::shell::Shell customization point.

Approved by PS Jenkins bot, Kevin DuBois, Alexandros Frantzis.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2014 Canonical Ltd.
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify it
5
 
 * under the terms of the GNU General Public License version 3,
6
 
 * as published by the Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 * GNU General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 *
16
 
 * Authored By: Alan Griffiths <alan@octopull.co.uk>
17
 
 */
18
 
 
19
 
#ifndef MIR_SHELL_SESSION_COORDINATOR_WRAPPER_H_
20
 
#define MIR_SHELL_SESSION_COORDINATOR_WRAPPER_H_
21
 
 
22
 
 
23
 
#include "mir/scene/session_coordinator.h"
24
 
 
25
 
namespace mir
26
 
{
27
 
namespace shell
28
 
{
29
 
class SessionCoordinatorWrapper : public scene::SessionCoordinator
30
 
{
31
 
public:
32
 
    SessionCoordinatorWrapper(std::shared_ptr<scene::SessionCoordinator> const& wrapped);
33
 
 
34
 
    virtual std::shared_ptr<scene::Session> open_session(
35
 
        pid_t client_pid,
36
 
        std::string const& name,
37
 
        std::shared_ptr<frontend::EventSink> const& sink) override;
38
 
 
39
 
    virtual void close_session(std::shared_ptr<scene::Session> const& session) override;
40
 
 
41
 
    std::shared_ptr<scene::Session> successor_of(std::shared_ptr<scene::Session> const&) const override;
42
 
 
43
 
    void set_focus_to(std::shared_ptr<scene::Session> const& focus) override;
44
 
    void unset_focus() override;
45
 
 
46
 
protected:
47
 
    std::shared_ptr<scene::SessionCoordinator> const wrapped;
48
 
};
49
 
}
50
 
}
51
 
 
52
 
#endif /* MIR_SHELL_SESSION_COORDINATOR_WRAPPER_H_ */