~lukas-kde/qtmir/betterSessionManagement

« back to all changes in this revision

Viewing changes to tests/framework/mock_window_controller.h

  • Committer: Gerry Boland
  • Date: 2017-03-24 11:29:56 UTC
  • mfrom: (590.1.35 qtmir)
  • mto: (590.24.1 keyState)
  • mto: This revision was merged to the branch mainline in revision 596.
  • Revision ID: gerry.boland@canonical.com-20170324112956-pwlzbn3jw43879ly
Merge trunk & fix build failure

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2017 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it under
 
5
 * the terms of the GNU Lesser General Public License version 3, as published by
 
6
 * the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
 
10
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#ifndef MOCK_WINDOW_CONTROLLER_H
 
18
#define MOCK_WINDOW_CONTROLLER_H
 
19
 
 
20
#include "windowcontrollerinterface.h"
 
21
 
 
22
#include <gmock/gmock.h>
 
23
 
 
24
class MockWindowController : public qtmir::WindowControllerInterface
 
25
{
 
26
public:
 
27
    MOCK_METHOD1(activate, void(const miral::Window &));
 
28
    MOCK_METHOD1(raise,    void(const miral::Window &));
 
29
 
 
30
    MOCK_METHOD2(resize, void(const miral::Window &, const QSize &));
 
31
    MOCK_METHOD2(move,   void(const miral::Window &, const QPoint &));
 
32
 
 
33
    MOCK_METHOD1(requestClose, void(const miral::Window &));
 
34
    MOCK_METHOD1(forceClose,   void(const miral::Window &));
 
35
 
 
36
    MOCK_METHOD2(requestState, void(const miral::Window &, const Mir::State));
 
37
 
 
38
    MOCK_METHOD2(deliverKeyboardEvent, void(const miral::Window &, const MirKeyboardEvent *));
 
39
    MOCK_METHOD2(deliverTouchEvent,    void(const miral::Window &, const MirTouchEvent *));
 
40
    MOCK_METHOD2(deliverPointerEvent,  void(const miral::Window &, const MirPointerEvent *));
 
41
 
 
42
    MOCK_METHOD1(setWindowConfinementRegions, void(const QVector<QRect> &regions));
 
43
    MOCK_METHOD2(setWindowMargins, void(Mir::Type windowType, const QMargins &margins));
 
44
};
 
45
 
 
46
#endif // MOCK_WINDOW_CONTROLLER_H