blob: e2efa9d946921c4784af393e89f83c6abd6bd62a (
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
|
// Copyright (c) 2009 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_WINDOW_NATIVE_FRAME_VIEW_H_
#define VIEWS_WINDOW_NATIVE_FRAME_VIEW_H_
#include "views/window/non_client_view.h"
namespace views {
class WindowWin;
class NativeFrameView : public NonClientFrameView {
public:
explicit NativeFrameView(WindowWin* frame);
virtual ~NativeFrameView();
// NonClientFrameView overrides:
virtual gfx::Rect GetBoundsForClientView() const;
virtual gfx::Rect GetWindowBoundsForClientBounds(
const gfx::Rect& client_bounds) const;
virtual gfx::Point GetSystemMenuPoint() const;
virtual int NonClientHitTest(const gfx::Point& point);
virtual void GetWindowMask(const gfx::Size& size,
gfx::Path* window_mask);
virtual void EnableClose(bool enable);
virtual void ResetWindowControls();
private:
// Our containing frame.
WindowWin* frame_;
DISALLOW_COPY_AND_ASSIGN(NativeFrameView);
};
} // namespace views
#endif // #ifndef VIEWS_WINDOW_NATIVE_FRAME_VIEW_H_
|