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
64
65
66
67
|
// 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_UI_VIEWS_GENERIC_INFO_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_GENERIC_INFO_VIEW_H_
#pragma once
#include "base/gtest_prod_util.h"
#include "base/scoped_ptr.h"
#include "base/string16.h"
#include "views/view.h"
namespace views {
class GridLayout;
class Label;
class Textfield;
}
// GenericInfoView, displays a tabular grid of read-only textual information,
// <name, value> pairs. The fixed number of rows must be known at the time of
// construction.
class GenericInfoView : public views::View {
public:
// Constructs a info view with |number_of_rows| and populated with
// empty strings.
explicit GenericInfoView(int number_of_rows);
// Constructs a info view with |number_of_rows|, and populates
// the name column with localized strings having the given
// |name_string_ids|. The array of ids should contain |number_of_rows|
// values and should remain valid for the life of the view.
GenericInfoView(int number_of_rows, const int name_string_ids[]);
// The following methods should only be called after
// the view has been added to a view hierarchy.
void SetNameByStringId(int row, int id);
void SetName(int row, const string16& name);
void SetValue(int row, const string16& value);
void ClearValues() {
const string16 kEmptyString;
for (int i = 0; i < number_of_rows_; ++i)
SetValue(i, kEmptyString);
}
protected:
// views::View override
virtual void ViewHierarchyChanged(
bool is_add, views::View* parent, views::View* child);
private:
FRIEND_TEST_ALL_PREFIXES(GenericInfoViewTest, GenericInfoView);
void InitGenericInfoView();
void AddRow(int layout_id, views::GridLayout* layout,
views::Label* name, views::Textfield* value);
const int number_of_rows_;
const int* name_string_ids_;
scoped_array<views::Label*> name_views_;
scoped_array<views::Textfield*> value_views_;
DISALLOW_COPY_AND_ASSIGN(GenericInfoView);
};
#endif // CHROME_BROWSER_UI_VIEWS_GENERIC_INFO_VIEW_H_
|