blob: 5b8a561c61d9f7953f3690df97d4f0f455a8819c (
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
|
// 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 CHROME_BROWSER_VIEWS_FRAME_GTK_BROWSER_FRAME_GTK_H_
#define CHROME_BROWSER_VIEWS_FRAME_GTK_BROWSER_FRAME_GTK_H_
#include "base/basictypes.h"
#include "chrome/browser/views/frame/browser_frame.h"
#include "views/window/window_gtk.h"
class BrowserNonClientFrameView;
class BrowserRootView;
class BrowserFrameGtk : public BrowserFrame,
public views::WindowGtk {
public:
// Normally you will create this class by calling BrowserFrame::Create.
// Init must be called before using this class, which Create will do for you.
BrowserFrameGtk(BrowserView* browser_view, Profile* profile);
virtual ~BrowserFrameGtk();
// This initialization function must be called after construction, it is
// separate to avoid recursive calling of the frame from its constructor.
void Init();
// Overridden from BrowserFrame:
virtual views::Window* GetWindow();
virtual void TabStripCreated(TabStripWrapper* tabstrip);
virtual int GetMinimizeButtonOffset() const;
virtual gfx::Rect GetBoundsForTabStrip(TabStripWrapper* tabstrip) const;
virtual void UpdateThrobber(bool running);
virtual void ContinueDraggingDetachedTab();
virtual ThemeProvider* GetThemeProviderForFrame() const;
virtual bool AlwaysUseNativeFrame() const;
// Overridden from views::Widget:
virtual ThemeProvider* GetThemeProvider() const;
virtual ThemeProvider* GetDefaultThemeProvider() const;
virtual void IsActiveChanged();
protected:
// Overridden from views::WidgetGtk:
virtual views::RootView* CreateRootView();
private:
// The BrowserView is our ClientView. This is a pointer to it.
BrowserView* browser_view_;
// A pointer to our NonClientFrameView as a BrowserNonClientFrameView.
BrowserNonClientFrameView* browser_frame_view_;
// An unowning reference to the root view associated with the window. We save
// a copy as a BrowserRootView to avoid evil casting later, when we need to
// call functions that only exist on BrowserRootView (versus RootView).
BrowserRootView* root_view_;
Profile* profile_;
DISALLOW_COPY_AND_ASSIGN(BrowserFrameGtk);
};
#endif // CHROME_BROWSER_VIEWS_FRAME_GTK_BROWSER_FRAME_GTK_H_
|