This source file includes following definitions.
- native_wrapper_
- GetHorizontalScrollBarHeight
- GetVerticalScrollBarWidth
- GetPreferredSize
- Layout
- ViewHierarchyChanged
- GetClassName
- OnKeyPressed
- OnGestureEvent
- OnMouseWheel
- Update
- GetLayoutSize
- GetPosition
#include "ui/views/controls/scrollbar/native_scroll_bar.h"
#include <algorithm>
#include <string>
#include "base/message_loop/message_loop.h"
#include "ui/events/event.h"
#include "ui/views/controls/scrollbar/native_scroll_bar_views.h"
#include "ui/views/controls/scrollbar/native_scroll_bar_wrapper.h"
#include "ui/views/widget/widget.h"
namespace views {
const char NativeScrollBar::kViewClassName[] = "NativeScrollBar";
NativeScrollBar::NativeScrollBar(bool is_horizontal)
: ScrollBar(is_horizontal),
native_wrapper_(NULL) {
}
NativeScrollBar::~NativeScrollBar() {
}
int NativeScrollBar::GetHorizontalScrollBarHeight(
const ui::NativeTheme* theme) {
return NativeScrollBarWrapper::GetHorizontalScrollBarHeight(theme);
}
int NativeScrollBar::GetVerticalScrollBarWidth(
const ui::NativeTheme* theme) {
return NativeScrollBarWrapper::GetVerticalScrollBarWidth(theme);
}
gfx::Size NativeScrollBar::GetPreferredSize() {
if (native_wrapper_)
return native_wrapper_->GetView()->GetPreferredSize();
return gfx::Size();
}
void NativeScrollBar::Layout() {
if (native_wrapper_) {
native_wrapper_->GetView()->SetBounds(0, 0, width(), height());
native_wrapper_->GetView()->Layout();
}
}
void NativeScrollBar::ViewHierarchyChanged(
const ViewHierarchyChangedDetails& details) {
Widget* widget;
if (details.is_add && !native_wrapper_ && (widget = GetWidget())) {
native_wrapper_ = NativeScrollBarWrapper::CreateWrapper(this);
AddChildView(native_wrapper_->GetView());
}
}
const char* NativeScrollBar::GetClassName() const {
return kViewClassName;
}
bool NativeScrollBar::OnKeyPressed(const ui::KeyEvent& event) {
if (!native_wrapper_)
return false;
return native_wrapper_->GetView()->OnKeyPressed(event);
}
void NativeScrollBar::OnGestureEvent(ui::GestureEvent* event) {
if (!native_wrapper_)
return;
native_wrapper_->GetView()->OnGestureEvent(event);
}
bool NativeScrollBar::OnMouseWheel(const ui::MouseWheelEvent& event) {
if (!native_wrapper_)
return false;
return native_wrapper_->GetView()->OnMouseWheel(event);
}
void NativeScrollBar::Update(int viewport_size,
int content_size,
int current_pos) {
ScrollBar::Update(viewport_size, content_size, current_pos);
if (native_wrapper_)
native_wrapper_->Update(viewport_size, content_size, current_pos);
}
int NativeScrollBar::GetLayoutSize() const {
return IsHorizontal() ?
GetHorizontalScrollBarHeight(GetNativeTheme()) :
GetVerticalScrollBarWidth(GetNativeTheme());
}
int NativeScrollBar::GetPosition() const {
if (!native_wrapper_)
return 0;
return native_wrapper_->GetPosition();
}
}