blob: 76cca15037a6daa2c8918622d5e95b59ac8f4e8f (
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
|
// 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 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_
|