blob: b37c391bca1095611b30712f67b6551f62aeb4c6 (
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
|
// Copyright (c) 2011 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 VIEWS_WIDGET_WIDGET_DELEGATE_H_
#define VIEWS_WIDGET_WIDGET_DELEGATE_H_
#pragma once
namespace views {
// WidgetDelegate interface
// Handles events on Widgets in context-specific ways.
class WidgetDelegate {
public:
virtual ~WidgetDelegate() {}
// Called whenever the widget is activated or deactivated.
// TODO(beng): This should be consolidated with
// WindowDelegate::OnWindowActivationChanged().
virtual void OnWidgetActivated(bool active) {}
// Called whenever the widget's position changes.
virtual void OnWidgetMove() {}
// Called with the display changes (color depth or resolution).
virtual void OnDisplayChanged() {}
// Called when the work area (the desktop area minus task bars,
// menu bars, etc.) changes in size.
virtual void OnWorkAreaChanged() {}
};
} // namespace views
#endif // VIEWS_WIDGET_WIDGET_DELEGATE_H_
|