blob: 5461f61c4fa938529ce6cac6eae419fa38ea5999 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__
#define CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__
#include "build/build_config.h"
#if defined(OS_WIN)
#include <windows.h>
#endif
#include "base/string16.h"
#include "base/threading/thread.h"
#include "chrome/test/automation/automation_handle_tracker.h"
#include "ui/base/keycodes/keyboard_codes.h"
class BrowserProxy;
class WindowProxy;
namespace gfx {
class Point;
class Rect;
}
// This class presents the interface to actions that can be performed on a given
// window. Note that this object can be invalidated at any time if the
// corresponding window in the app is closed. In that case, any subsequent
// calls will return false immediately.
class WindowProxy : public AutomationResourceProxy {
public:
WindowProxy(AutomationMessageSender* sender,
AutomationHandleTracker* tracker,
int handle)
: AutomationResourceProxy(tracker, sender, handle) {}
// Moves the mouse pointer this location at the OS level. |location| is
// in the window's coordinates.
bool SimulateOSMouseMove(const gfx::Point& location);
// Simulates a key press at the OS level. |key| is the virtual key code of the
// key pressed and |flags| specifies which modifiers keys are also pressed (as
// defined in chrome/views/event.h). Note that this actually sends the event
// to the window that has focus.
bool SimulateOSKeyPress(ui::KeyboardCode key, int flags);
// Gets the bounds (in window coordinates) that correspond to the view with
// the given ID in this window. Returns true if bounds could be obtained.
// If |screen_coordinates| is true, the bounds are returned in the coordinates
// of the screen, if false in the coordinates of the browser.
bool GetViewBounds(int view_id, gfx::Rect* bounds, bool screen_coordinates);
// Sets the position and size of the window. Returns true if setting the
// bounds was successful.
bool SetBounds(const gfx::Rect& bounds);
protected:
virtual ~WindowProxy() {}
private:
DISALLOW_COPY_AND_ASSIGN(WindowProxy);
};
#endif // CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__
|