#ifndef UI_VIEWS_EXAMPLES_EXAMPLES_WINDOW_H_
#define UI_VIEWS_EXAMPLES_EXAMPLES_WINDOW_H_
#include <memory>
#include <string>
#include <vector>
#include "base/functional/callback_forward.h"
#include "base/strings/stringprintf.h"
#include "ui/gfx/native_widget_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 {
VIEWS_EXAMPLES_EXPORT extern const char kExamplesWidgetName[];
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 LogStatus(const std::string& string);
template <typename... Args>
void PrintStatus(const char* format, Args... args) { … }
}
}
#endif