1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_VIEWS_EXAMPLES_TABBED_PANE_EXAMPLE_H_
6 #define UI_VIEWS_EXAMPLES_TABBED_PANE_EXAMPLE_H_
10 #include "base/macros.h"
11 #include "ui/views/controls/button/button.h"
12 #include "ui/views/controls/tabbed_pane/tabbed_pane_listener.h"
13 #include "ui/views/examples/example_base.h"
20 // A TabbedPane example tests adding and selecting tabs.
21 class VIEWS_EXAMPLES_EXPORT TabbedPaneExample
: public ExampleBase
,
22 public ButtonListener
,
23 public TabbedPaneListener
{
26 ~TabbedPaneExample() override
;
29 void CreateExampleView(View
* container
) override
;
33 void ButtonPressed(Button
* sender
, const ui::Event
& event
) override
;
35 // TabbedPaneListener:
36 void TabSelectedAt(int index
) override
;
38 // Print the status of the tab in the status area.
41 void AddButton(const std::string
& label
);
43 // The tabbed pane to be tested.
44 TabbedPane
* tabbed_pane_
;
46 // Control buttons to add and select tabs.
51 DISALLOW_COPY_AND_ASSIGN(TabbedPaneExample
);
54 } // namespace examples
57 #endif // UI_VIEWS_EXAMPLES_TABBED_PANE_EXAMPLE_H_