~3v1n0/unity/scale-window-cast-protection

« back to all changes in this revision

Viewing changes to tests/test_standalone_wm.h

Merge with trunk

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) 2013 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: Marco Trevisan (Treviño) <marco.trevisan@canonical.com>
 
18
 */
 
19
 
 
20
#ifndef UNITY_TESTWRAPPER_STANDALONE_WM_H
 
21
#define UNITY_TESTWRAPPER_STANDALONE_WM_H
 
22
 
 
23
#include "StandaloneWindowManager.h"
 
24
 
 
25
namespace unity
 
26
{
 
27
namespace testwrapper
 
28
{
 
29
struct StandaloneWM
 
30
{
 
31
  StandaloneWM()
 
32
    : WM(StandaloneWM::Get())
 
33
  {}
 
34
 
 
35
  static StandaloneWindowManager* Get()
 
36
  {
 
37
    return dynamic_cast<StandaloneWindowManager*>(&WindowManager::Default());
 
38
  }
 
39
 
 
40
  ~StandaloneWM()
 
41
  {
 
42
    WM->ResetStatus();
 
43
  }
 
44
 
 
45
  StandaloneWindowManager* operator->() const
 
46
  {
 
47
    return WM;
 
48
  }
 
49
 
 
50
  StandaloneWindowManager* WM;
 
51
 
 
52
private:
 
53
  StandaloneWM(StandaloneWM const&) = delete;
 
54
  StandaloneWM& operator=(StandaloneWM const&) = delete;
 
55
};
 
56
 
 
57
} // unity namespace
 
58
} // tests namespace
 
59
 
 
60
#endif // UNITY_TESTWRAPPER_STANDALONE_WM_H