blob: 41550c25314890acc06080a3c3dcd9cd61a56b38 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// 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_VIEWS_OPTIONS_OPTIONS_GROUP_VIEW_H__
#define CHROME_BROWSER_VIEWS_OPTIONS_OPTIONS_GROUP_VIEW_H__
#pragma once
#include "views/view.h"
namespace views {
class Label;
class Separator;
};
///////////////////////////////////////////////////////////////////////////////
// OptionsGroupView
//
// A helper View that gathers related options into groups with a title and
// optional description.
//
class OptionsGroupView : public views::View {
public:
OptionsGroupView(views::View* contents,
const std::wstring& title,
const std::wstring& description,
bool show_separator);
virtual ~OptionsGroupView() {}
// Sets the group as being highlighted to attract attention.
void SetHighlighted(bool highlighted);
// Retrieves the width of the ContentsView. Used to help size wrapping items.
int GetContentsWidth() const;
protected:
// views::View overrides:
virtual bool GetAccessibleRole(AccessibilityTypes::Role* role);
virtual void Paint(gfx::Canvas* canvas);
virtual void ViewHierarchyChanged(bool is_add,
views::View* parent,
views::View* child);
private:
void Init();
views::View* contents_;
views::Label* title_label_;
views::Label* description_label_;
views::Separator* separator_;
// True if we should show a separator line below the contents of this
// section.
bool show_separator_;
// True if this section should have a highlighted treatment to draw the
// user's attention.
bool highlighted_;
DISALLOW_COPY_AND_ASSIGN(OptionsGroupView);
};
#endif // CHROME_BROWSER_VIEWS_OPTIONS_OPTIONS_GROUP_VIEW_H__
|