diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-09 07:35:32 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-09 07:35:32 +0000 |
commit | 213dac2f0bff9162502fe325b6ebb85a255efcb2 (patch) | |
tree | 3640cb1f19976e38677b8632537d2d41f8444d0f /chrome/browser/ui/views/generic_info_view.h | |
parent | 6de53d401aa8dc6c7e0a9874c71a95ce88ade50d (diff) | |
download | chromium_src-213dac2f0bff9162502fe325b6ebb85a255efcb2.zip chromium_src-213dac2f0bff9162502fe325b6ebb85a255efcb2.tar.gz chromium_src-213dac2f0bff9162502fe325b6ebb85a255efcb2.tar.bz2 |
Move browser/views to browser/ui/views
TBR=brettw
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/4694005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65508 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/views/generic_info_view.h')
-rw-r--r-- | chrome/browser/ui/views/generic_info_view.h | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/chrome/browser/ui/views/generic_info_view.h b/chrome/browser/ui/views/generic_info_view.h new file mode 100644 index 0000000..e2f6ddb --- /dev/null +++ b/chrome/browser/ui/views/generic_info_view.h @@ -0,0 +1,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_ + |