blob: c78e3077ebb6f494c6b98bfe848cc9ef25a5e870 (
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
|
// 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_CHROMEOS_PANELS_PANEL_SCROLLER_CONTAINER_H_
#define CHROME_BROWSER_CHROMEOS_PANELS_PANEL_SCROLLER_CONTAINER_H_
#pragma once
#include "base/basictypes.h"
#include "views/view.h"
class PanelScroller;
// This class wraps the contents of a panel in the panel scroller. It currently
// doesn't do anything useful, but it just a placeholder.
class PanelScrollerContainer : public views::View {
public:
PanelScrollerContainer(PanelScroller* scroller, views::View* contents);
virtual ~PanelScrollerContainer();
int HeaderSize() const;
// view::View overrides.
virtual gfx::Size GetPreferredSize();
virtual void Layout();
virtual void Paint(gfx::Canvas* canvas);
private:
// Non-owning pointer to our parent scroller object.
PanelScroller* scroller_;
views::View* contents_;
DISALLOW_COPY_AND_ASSIGN(PanelScrollerContainer);
};
#endif // CHROME_BROWSER_CHROMEOS_PANELS_PANEL_SCROLLER_CONTAINER_H_
|