#ifndef UI_VIEWS_EXAMPLES_MULTILINE_EXAMPLE_H_
#define UI_VIEWS_EXAMPLES_MULTILINE_EXAMPLE_H_
#include "base/memory/raw_ptr.h"
#include "ui/views/controls/textfield/textfield_controller.h"
#include "ui/views/examples/example_base.h"
namespace views {
class Checkbox;
class Label;
namespace examples {
class VIEWS_EXAMPLES_EXPORT MultilineExample : public ExampleBase,
public TextfieldController {
public:
MultilineExample();
MultilineExample(const MultilineExample&) = delete;
MultilineExample& operator=(const MultilineExample&) = delete;
~MultilineExample() override;
void CreateExampleView(View* container) override;
private:
class RenderTextView;
void ContentsChanged(Textfield* sender,
const std::u16string& new_contents) override;
raw_ptr<RenderTextView> render_text_view_ = nullptr;
raw_ptr<Label> label_ = nullptr;
raw_ptr<Textfield> textfield_ = nullptr;
raw_ptr<Checkbox> label_checkbox_ = nullptr;
raw_ptr<Checkbox> elision_checkbox_ = nullptr;
};
}
}
#endif