blob: c364f52a30b1b740a42963bf8c7cc8ab978da61e [file] [log] [blame]
// Copyright 2016 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_BUTTON_STICKER_SHEET_H_
#define UI_VIEWS_EXAMPLES_BUTTON_STICKER_SHEET_H_
#include "base/macros.h"
#include "ui/views/examples/example_base.h"
namespace views {
namespace examples {
// An "example" that displays a sticker sheet of all the available material
// design button styles. This example only looks right with `--secondary-ui-md`.
// It is designed to be as visually similar to the UI Harmony spec's sticker
// sheet for buttons as possible.
class VIEWS_EXAMPLES_EXPORT ButtonStickerSheet : public ExampleBase {
public:
ButtonStickerSheet();
ButtonStickerSheet(const ButtonStickerSheet&) = delete;
ButtonStickerSheet& operator=(const ButtonStickerSheet&) = delete;
~ButtonStickerSheet() override;
// ExampleBase:
void CreateExampleView(View* container) override;
};
} // namespace examples
} // namespace views
#endif // UI_VIEWS_EXAMPLES_BUTTON_STICKER_SHEET_H_