blob: 54720913f2b88238dd1aa005c12119344e4b62e6 (
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
|
// Copyright (c) 2010 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 VIEWS_CONTROLS_MENU_MENU_SCROLL_VIEW_CONTAINER_H_
#define VIEWS_CONTROLS_MENU_MENU_SCROLL_VIEW_CONTAINER_H_
#pragma once
#include "views/view.h"
namespace views {
class SubmenuView;
// MenuScrollViewContainer contains the SubmenuView (through a MenuScrollView)
// and two scroll buttons. The scroll buttons are only visible and enabled if
// the preferred height of the SubmenuView is bigger than our bounds.
class MenuScrollViewContainer : public View {
public:
explicit MenuScrollViewContainer(SubmenuView* content_view);
// Returns the buttons for scrolling up/down.
View* scroll_down_button() const { return scroll_down_button_; }
View* scroll_up_button() const { return scroll_up_button_; }
// View overrides.
virtual void OnPaintBackground(gfx::Canvas* canvas);
virtual void Layout();
virtual void OnBoundsChanged();
virtual gfx::Size GetPreferredSize();
virtual AccessibilityTypes::Role GetAccessibleRole();
virtual AccessibilityTypes::State GetAccessibleState();
private:
class MenuScrollView;
// The scroll buttons.
View* scroll_up_button_;
View* scroll_down_button_;
// The scroll view.
MenuScrollView* scroll_view_;
DISALLOW_COPY_AND_ASSIGN(MenuScrollViewContainer);
};
} // namespace views
#endif // VIEWS_CONTROLS_MENU_MENU_SCROLL_VIEW_CONTAINER_H_
|