~gerboland/miral/gtest-bug-workaround

« back to all changes in this revision

Viewing changes to include/miral/mru_window_list.h

  • Committer: Alan Griffiths
  • Date: 2016-05-31 16:45:44 UTC
  • mfrom: (174.1.2 miral)
  • Revision ID: alan@octopull.co.uk-20160531164544-yy2ym872438umhbj
Track the active window in an MRU list and use that to select the new active Window when the old one closes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2016 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 MIRAL_MRU_WINDOW_LIST_H
 
20
#define MIRAL_MRU_WINDOW_LIST_H
 
21
 
 
22
#include <miral/window.h>
 
23
 
 
24
#include <functional>
 
25
#include <vector>
 
26
 
 
27
namespace miral
 
28
{
 
29
class MRUWindowList
 
30
{
 
31
public:
 
32
 
 
33
    void push(Window const& window);
 
34
    void erase(Window const& window);
 
35
    auto top() const -> Window;
 
36
 
 
37
    using Enumerator = std::function<bool(Window& window)>;
 
38
 
 
39
    void enumerate(Enumerator const& enumerator) const;
 
40
 
 
41
private:
 
42
    std::vector<Window> surfaces;
 
43
};
 
44
}
 
45
 
 
46
#endif //MIRAL_MRU_WINDOW_LIST_H