#ifndef UI_VIEWS_EXAMPLES_EXAMPLES_WINDOW_H_
#define UI_VIEWS_EXAMPLES_EXAMPLES_WINDOW_H_
#include <string_view>
#include "base/functional/callback_forward.h"
#include "ui/gfx/native_ui_types.h"
#include "ui/views/examples/create_examples.h"
#include "ui/views/examples/example_base.h"
#include "ui/views/examples/views_examples_export.h"
namespace views {
class Widget;
namespace examples {
inline constexpr char kExamplesWidgetName[] = "ExamplesWidget";
VIEWS_EXAMPLES_EXPORT bool CheckCommandLineUsage();
VIEWS_EXAMPLES_EXPORT Widget* GetExamplesWidget();
VIEWS_EXAMPLES_EXPORT void ShowExamplesWindow(
base::OnceClosure on_close,
ExampleVector examples = CreateExamples(),
gfx::NativeWindow window_context = gfx::NativeWindow());
VIEWS_EXAMPLES_EXPORT void PrintStatus(std::string_view status);
}
}
#endif