blob: 626b8bf98b6cd46e54c1021e4fd57433612b6d4c [file] [log] [blame]
// Copyright (c) 2012 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.
#include "chrome/browser/ui/views/tabs/fake_base_tab_strip_controller.h"
#include <utility>
#include "chrome/browser/ui/views/tabs/tab_renderer_data.h"
#include "chrome/browser/ui/views/tabs/tab_strip.h"
#include "chrome/grit/theme_resources.h"
#include "ui/gfx/color_palette.h"
FakeBaseTabStripController::FakeBaseTabStripController() {}
FakeBaseTabStripController::~FakeBaseTabStripController() {
}
void FakeBaseTabStripController::AddTab(int index, bool is_active) {
num_tabs_++;
tab_strip_->AddTabAt(index, TabRendererData(), is_active);
if (is_active)
SelectTab(index);
}
void FakeBaseTabStripController::AddPinnedTab(int index, bool is_active) {
TabRendererData data;
data.pinned = true;
num_tabs_++;
tab_strip_->AddTabAt(index, std::move(data), is_active);
if (is_active)
active_index_ = index;
}
void FakeBaseTabStripController::RemoveTab(int index) {
num_tabs_--;
// RemoveTabAt() expects the controller state to have been updated already.
const bool was_active = index == active_index_;
if (active_index_ > index) {
--active_index_;
} else if (active_index_ == index) {
SetActiveIndex(std::min(active_index_, num_tabs_ - 1));
}
tab_strip_->RemoveTabAt(nullptr, index, was_active);
}
const ui::ListSelectionModel&
FakeBaseTabStripController::GetSelectionModel() const {
return selection_model_;
}
int FakeBaseTabStripController::GetCount() const {
return num_tabs_;
}
bool FakeBaseTabStripController::IsValidIndex(int index) const {
return index >= 0 && index < num_tabs_;
}
bool FakeBaseTabStripController::IsActiveTab(int index) const {
if (!IsValidIndex(index))
return false;
return active_index_ == index;
}
int FakeBaseTabStripController::GetActiveIndex() const {
return active_index_;
}
bool FakeBaseTabStripController::IsTabSelected(int index) const {
return false;
}
bool FakeBaseTabStripController::IsTabPinned(int index) const {
return false;
}
void FakeBaseTabStripController::SelectTab(int index) {
if (!IsValidIndex(index) || active_index_ == index)
return;
SetActiveIndex(index);
}
void FakeBaseTabStripController::ExtendSelectionTo(int index) {
}
void FakeBaseTabStripController::ToggleSelected(int index) {
}
void FakeBaseTabStripController::AddSelectionFromAnchorTo(int index) {
}
void FakeBaseTabStripController::CloseTab(int index, CloseTabSource source) {
RemoveTab(index);
}
void FakeBaseTabStripController::ToggleTabAudioMute(int index) {
}
void FakeBaseTabStripController::ShowContextMenuForTab(
Tab* tab,
const gfx::Point& p,
ui::MenuSourceType source_type) {
}
int FakeBaseTabStripController::HasAvailableDragActions() const {
return 0;
}
void FakeBaseTabStripController::OnDropIndexUpdate(int index,
bool drop_before) {
}
bool FakeBaseTabStripController::IsCompatibleWith(TabStrip* other) const {
return false;
}
NewTabButtonPosition FakeBaseTabStripController::GetNewTabButtonPosition()
const {
return AFTER_TABS;
}
void FakeBaseTabStripController::CreateNewTab() {
AddTab(num_tabs_, true);
}
void FakeBaseTabStripController::CreateNewTabWithLocation(
const base::string16& location) {
}
void FakeBaseTabStripController::StackedLayoutMaybeChanged() {
}
bool FakeBaseTabStripController::IsSingleTabModeAvailable() {
return false;
}
bool FakeBaseTabStripController::ShouldDrawStrokes() const {
return false;
}
void FakeBaseTabStripController::OnStartedDraggingTabs() {
}
void FakeBaseTabStripController::OnStoppedDraggingTabs() {
}
bool FakeBaseTabStripController::HasVisibleBackgroundTabShapes() const {
return false;
}
bool FakeBaseTabStripController::EverHasVisibleBackgroundTabShapes() const {
return false;
}
SkColor FakeBaseTabStripController::GetFrameColor() const {
return gfx::kPlaceholderColor;
}
SkColor FakeBaseTabStripController::GetToolbarTopSeparatorColor() const {
return gfx::kPlaceholderColor;
}
SkColor FakeBaseTabStripController::GetTabBackgroundColor(
TabState state) const {
return gfx::kPlaceholderColor;
}
SkColor FakeBaseTabStripController::GetTabForegroundColor(
TabState state) const {
return gfx::kPlaceholderColor;
}
int FakeBaseTabStripController::GetTabBackgroundResourceId(
BrowserNonClientFrameView::ActiveState active_state,
bool* has_custom_image) const {
*has_custom_image = false;
return IDR_THEME_TAB_BACKGROUND;
}
base::string16 FakeBaseTabStripController::GetAccessibleTabName(
const Tab* tab) const {
return base::string16();
}
Profile* FakeBaseTabStripController::GetProfile() const {
return nullptr;
}
void FakeBaseTabStripController::SetActiveIndex(int new_index) {
active_index_ = new_index;
selection_model_.SetSelectedIndex(active_index_);
if (IsValidIndex(active_index_))
tab_strip_->SetSelection(selection_model_);
}