blob: 7e94825a8865900fcfaeee34791a244a6f1ea052 (
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
65
66
67
68
69
70
71
72
73
|
// 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_TABS_TAB_STRIP_WRAPPER_H_
#define CHROME_BROWSER_VIEWS_TABS_TAB_STRIP_WRAPPER_H_
class BrowserTabStrip;
namespace gfx {
class Point;
class Rect;
}
class TabStrip;
class TabStripModel;
namespace views {
class View;
}
// A temporary interface to abstract the TabStrip implementation (which can be
// either TabStrip or TabStrip2) from the rest of the Browser frontend code
// while the new TabStrip is brought up.
class TabStripWrapper {
public:
// Returns the preferred height of this TabStrip. This is based on the
// typical height of its constituent tabs.
virtual int GetPreferredHeight() = 0;
// Returns true if Tabs in this TabStrip are currently changing size or
// position.
virtual bool IsAnimating() const = 0;
// Set the background offset used by inactive tabs to match the frame image.
virtual void SetBackgroundOffset(gfx::Point offset) = 0;
// Returns true if the specified point(TabStrip coordinates) should be
// considered to be within the window caption area of the browser window.
virtual bool PointIsWithinWindowCaption(const gfx::Point& point) = 0;
// Returns true if a drag session is currently active.
virtual bool IsDragSessionActive() const = 0;
// Return true if this tab strip is compatible with the provided tab strip.
// Compatible tab strips can transfer tabs during drag and drop.
virtual bool IsCompatibleWith(TabStripWrapper* other) const = 0;
// Sets the bounds of the tab at the specified |tab_index|. |tab_bounds| are
// in TabStrip coordinates.
virtual void SetDraggedTabBounds(int tab_index,
const gfx::Rect& tab_bounds) = 0;
// Updates the loading animations displayed by tabs in the tabstrip to the
// next frame.
virtual void UpdateLoadingAnimations() = 0;
// Returns the views::View of the wrapped tabstrip, for layout and sizing.
virtual views::View* GetView() = 0;
// Shim to provide access to the BrowserTabStrip implementation for code only
// called from within TabStrip2::Enabled() == true blocks. Returns NULL when
// old TabStrip is in effect.
virtual BrowserTabStrip* AsBrowserTabStrip() = 0;
// Shim to provide access to the TabStrip implementation for code only called
// from within TabStrip2::Enabled() == false blocks. Returns NULL when the new
// TabStrip is in effect.
virtual TabStrip* AsTabStrip() = 0;
// Creates a TabStrip - either the old or new one depending on command line
// flags.
static TabStripWrapper* CreateTabStrip(TabStripModel* model);
};
#endif // CHROME_BROWSER_VIEWS_TABS_TAB_STRIP_WRAPPER_H_
|