~nick-dedekind/qtmir/stagedFullscreen.form-factor

« back to all changes in this revision

Viewing changes to tests/mirserver/WindowManager/stub_surface.h

  • Committer: Nick Dedekind
  • Date: 2016-02-01 09:56:27 UTC
  • mfrom: (434.3.4 qtmir)
  • Revision ID: nick.dedekind@canonical.com-20160201095627-tip5r1hmb8grxml1
merged with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    mir::geometry::Point top_left() const override;
41
41
    mir::geometry::Rectangle input_bounds() const override;
42
42
    bool input_area_contains(mir::geometry::Point const& point) const override;
43
 
    void consume(MirEvent const& event) override;
 
43
    void consume(MirEvent const* event) override;
44
44
    void set_alpha(float alpha) override;
45
45
    void set_orientation(MirOrientation orientation) override;
46
46
    void set_transformation(glm::mat4 const&) override;
60
60
    std::shared_ptr<Surface> parent() const override;
61
61
    void add_observer(std::shared_ptr<mir::scene::SurfaceObserver> const& observer) override;
62
62
    void remove_observer(std::weak_ptr<mir::scene::SurfaceObserver> const& observer) override;
63
 
    void set_keymap(xkb_rule_names const& rules) override;
 
63
    void set_keymap(MirInputDeviceId id, std::string const& model, std::string const& layout,
 
64
        std::string const& variant, std::string const& options) override;
64
65
    void rename(std::string const& title) override;
65
66
};
66
67