summaryrefslogtreecommitdiff
path: root/chromium/ui/views/examples/dialog_example.h
blob: 25c2490ac4285b715cf6240172e0e06ce041d654 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Copyright 2017 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_DIALOG_EXAMPLE_H_
#define UI_VIEWS_EXAMPLES_DIALOG_EXAMPLE_H_

#include "base/macros.h"
#include "ui/base/models/simple_combobox_model.h"
#include "ui/base/ui_base_types.h"
#include "ui/views/controls/textfield/textfield_controller.h"
#include "ui/views/examples/example_base.h"

namespace views {

class Checkbox;
class Combobox;
class DialogDelegate;
class GridLayout;
class Label;
class LabelButton;
class Textfield;

namespace examples {

// An example that exercises BubbleDialogDelegateView or DialogDelegateView.
class VIEWS_EXAMPLES_EXPORT DialogExample : public ExampleBase,
                                            public TextfieldController {
 public:
  DialogExample();
  ~DialogExample() override;

  // ExampleBase:
  void CreateExampleView(View* container) override;

 private:
  template <class>
  class Delegate;
  class Bubble;
  class Dialog;

  // Helper methods to setup the configuration Views.
  void StartRowWithLabel(GridLayout* layout, const char* label);
  void StartTextfieldRow(GridLayout* layout,
                         Textfield** member,
                         const char* label,
                         const char* value);
  void AddCheckbox(GridLayout* layout, Checkbox** member);

  // Checkbox callback
  void OnPerformAction();

  // Interrogates the configuration Views for DialogDelegate.
  ui::ModalType GetModalType() const;
  int GetDialogButtons() const;

  // Invoked when the dialog is closing.
  bool AllowDialogClose(bool accept);

  // Resize the dialog Widget to match the preferred size. Triggers Layout().
  void ResizeDialog();

  void ShowButtonPressed();
  void BubbleCheckboxPressed();
  void OtherCheckboxPressed();

  // TextfieldController:
  void ContentsChanged(Textfield* sender,
                       const base::string16& new_contents) override;

  DialogDelegate* last_dialog_ = nullptr;
  Label* last_body_label_ = nullptr;

  Textfield* title_;
  Textfield* body_;
  Textfield* ok_button_label_;
  Checkbox* has_ok_button_;
  Textfield* cancel_button_label_;
  Checkbox* has_cancel_button_;
  Textfield* extra_button_label_;
  Checkbox* has_extra_button_;
  Combobox* mode_;
  Checkbox* bubble_;
  Checkbox* persistent_bubble_;
  LabelButton* show_;
  ui::SimpleComboboxModel mode_model_;

  DISALLOW_COPY_AND_ASSIGN(DialogExample);
};

}  // namespace examples
}  // namespace views

#endif  // UI_VIEWS_EXAMPLES_DIALOG_EXAMPLE_H_