blob: 57d8a8ee0ec89282d51d95c7f281c7dbb96b4acd (
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
|
// Copyright (c) 2011 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 UI_VIEWS_EXAMPLES_WIDGET_EXAMPLE_H_
#define UI_VIEWS_EXAMPLES_WIDGET_EXAMPLE_H_
#include <string>
#include "base/macros.h"
#include "ui/views/examples/example_base.h"
#include "ui/views/widget/widget.h"
namespace views {
class LabelButton;
namespace examples {
// WidgetExample demonstrates how to create a popup widget.
class VIEWS_EXAMPLES_EXPORT WidgetExample : public ExampleBase {
public:
WidgetExample();
~WidgetExample() override;
// ExampleBase:
void CreateExampleView(View* container) override;
private:
// Construct a button with the specified |label| in |container|.
LabelButton* BuildButton(View* container, const base::string16& label);
void CreateDialogWidget(View* sender, bool modal);
// Construct a Widget for |sender|, initialize with |type|, and call Show().
void ShowWidget(View* sender, Widget::InitParams::Type type);
DISALLOW_COPY_AND_ASSIGN(WidgetExample);
};
} // namespace examples
} // namespace views
#endif // UI_VIEWS_EXAMPLES_WIDGET_EXAMPLE_H_
|