OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TabStrip
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/ui/views/tabs/
tab_strip_factory.cc
11
// This default implementation of CreateTabStrip creates a
TabStrip
or a
19
// Ownership of this controller is given to a specific
tabstrip
when we
22
BaseTabStrip*
tabstrip
= NULL;
local
25
tabstrip
= new SideTabStrip(tabstrip_controller);
27
tabstrip
= new
TabStrip
(tabstrip_controller);
28
parent->AddChildView(
tabstrip
);
29
tabstrip_controller->InitFromModel(
tabstrip
);
30
return
tabstrip
;
tab_strip.cc
113
//
TabStrip
, public:
116
const int
TabStrip
::mini_to_non_mini_gap_ = 3;
118
TabStrip
::
TabStrip
(TabStripController* controller)
129
TabStrip
::~
TabStrip
() {
146
void
TabStrip
::InitTabStripButtons() {
158
gfx::Rect
TabStrip
::GetNewTabButtonBounds() {
162
void
TabStrip
::MouseMovedOutOfView() {
167
//
TabStrip
, AbstractTabStripView implementation
[
all
...]
tab_strip.h
31
//
TabStrip
33
// A View that represents the TabStripModel. The
TabStrip
has the
42
class
TabStrip
: public BaseTabStrip,
46
explicit
TabStrip
(TabStripController* controller);
47
virtual ~
TabStrip
();
76
// to allow for a drop region that extends outside the bounds of the
TabStrip
.
181
// Perform an animated resize-relayout of the
TabStrip
immediately.
212
// Generates the ideal bounds of the
TabStrip
when all Tabs have finished
218
// Starts various types of
TabStrip
animations.
226
// Returns true if the specified point in
TabStrip
coords is within th
[
all
...]
dragged_tab_controller.cc
179
// Returns the the x-coordinate of |point| if the type of
tabstrip
is horizontal
181
int MajorAxisValue(const gfx::Point& point, BaseTabStrip*
tabstrip
) {
182
return (
tabstrip
->type() == BaseTabStrip::HORIZONTAL_TAB_STRIP) ?
673
// Determine whether or not we have dragged over a compatible
TabStrip
in
679
// Make sure we're fully detached from whatever
TabStrip
we're attached to
708
TabStrip
* tab_strip = static_cast<
TabStrip
*>(attached_tabstrip_);
738
//
TabStrip
determines if the tabs needs to be animated based on model
748
// tabs). Make sure the
tabstrip
actually changed before updating
817
static_cast<BaseTabStrip*>(browser->
tabstrip
());
[
all
...]
Completed in 1492 milliseconds