2013-04-01 19:57:28 +02:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "cefclient/window_test.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
2014-01-28 00:31:03 +01:00
|
|
|
#include <sstream>
|
2013-04-01 19:57:28 +02:00
|
|
|
#include <string>
|
2014-01-28 00:31:03 +01:00
|
|
|
#include <vector>
|
2013-04-01 19:57:28 +02:00
|
|
|
|
|
|
|
#include "include/wrapper/cef_stream_resource_handler.h"
|
|
|
|
|
|
|
|
namespace window_test {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
const char kTestUrl[] = "http://tests/window";
|
|
|
|
const char kMessagePositionName[] = "WindowTest.Position";
|
|
|
|
const char kMessageMinimizeName[] = "WindowTest.Minimize";
|
|
|
|
const char kMessageMaximizeName[] = "WindowTest.Maximize";
|
|
|
|
const char kMessageRestoreName[] = "WindowTest.Restore";
|
2013-04-01 19:57:28 +02:00
|
|
|
|
|
|
|
// Handle messages in the browser process.
|
2014-01-28 00:31:03 +01:00
|
|
|
class Handler : public CefMessageRouterBrowserSide::Handler {
|
2013-04-01 19:57:28 +02:00
|
|
|
public:
|
2014-01-28 00:31:03 +01:00
|
|
|
Handler() {}
|
|
|
|
|
|
|
|
// Called due to cefBroadcast execution in window.html.
|
|
|
|
virtual bool OnQuery(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
int64 query_id,
|
|
|
|
const CefString& request,
|
|
|
|
bool persistent,
|
|
|
|
CefRefPtr<Callback> callback) OVERRIDE {
|
|
|
|
// Only handle messages from the test URL.
|
|
|
|
const std::string& url = frame->GetURL();
|
|
|
|
if (url.find(kTestUrl) != 0)
|
|
|
|
return false;
|
2013-04-01 19:57:28 +02:00
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
const std::string& message_name = request;
|
|
|
|
if (message_name.find(kMessagePositionName) == 0) {
|
|
|
|
// Parse the comma-delimited list of integer values.
|
|
|
|
std::vector<int> vec;
|
|
|
|
const std::string& vals =
|
|
|
|
message_name.substr(sizeof(kMessagePositionName));
|
|
|
|
std::stringstream ss(vals);
|
|
|
|
int i;
|
|
|
|
while (ss >> i) {
|
|
|
|
vec.push_back(i);
|
|
|
|
if (ss.peek() == ',')
|
|
|
|
ss.ignore();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vec.size() == 4) {
|
|
|
|
SetPos(browser->GetHost()->GetWindowHandle(),
|
|
|
|
vec[0], vec[1], vec[2], vec[3]);
|
2013-04-01 19:57:28 +02:00
|
|
|
}
|
|
|
|
} else if (message_name == kMessageMinimizeName) {
|
|
|
|
Minimize(browser->GetHost()->GetWindowHandle());
|
|
|
|
} else if (message_name == kMessageMaximizeName) {
|
|
|
|
Maximize(browser->GetHost()->GetWindowHandle());
|
|
|
|
} else if (message_name == kMessageRestoreName) {
|
|
|
|
Restore(browser->GetHost()->GetWindowHandle());
|
2014-01-28 00:31:03 +01:00
|
|
|
} else {
|
2014-07-11 22:10:05 +02:00
|
|
|
NOTREACHED();
|
2013-04-01 19:57:28 +02:00
|
|
|
}
|
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
callback->Success("");
|
|
|
|
return true;
|
2013-04-01 19:57:28 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-01-28 00:31:03 +01:00
|
|
|
void CreateMessageHandlers(ClientHandler::MessageHandlerSet& handlers) {
|
|
|
|
handlers.insert(new Handler());
|
2013-04-01 19:57:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ModifyBounds(const CefRect& display, CefRect& window) {
|
|
|
|
window.x += display.x;
|
|
|
|
window.y += display.y;
|
|
|
|
|
|
|
|
if (window.x < display.x)
|
|
|
|
window.x = display.x;
|
|
|
|
if (window.y < display.y)
|
|
|
|
window.y = display.y;
|
|
|
|
if (window.width < 100)
|
|
|
|
window.width = 100;
|
|
|
|
else if (window.width >= display.width)
|
|
|
|
window.width = display.width;
|
|
|
|
if (window.height < 100)
|
|
|
|
window.height = 100;
|
|
|
|
else if (window.height >= display.height)
|
|
|
|
window.height = display.height;
|
|
|
|
if (window.x + window.width >= display.x + display.width)
|
|
|
|
window.x = display.x + display.width - window.width;
|
|
|
|
if (window.y + window.height >= display.y + display.height)
|
|
|
|
window.y = display.y + display.height - window.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace window_test
|