chromium/ui/views/examples/box_layout_example.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/views/examples/box_layout_example.h"

#include <memory>
#include <string>
#include <utility>

#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/base/models/combobox_model.h"
#include "ui/gfx/geometry/insets.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/views/border.h"
#include "ui/views/controls/button/checkbox.h"
#include "ui/views/controls/button/md_text_button.h"
#include "ui/views/controls/combobox/combobox.h"
#include "ui/views/controls/label.h"
#include "ui/views/controls/textfield/textfield.h"
#include "ui/views/examples/example_combobox_model.h"
#include "ui/views/layout/fill_layout.h"
#include "ui/views/view.h"

namespace views::examples {

BoxLayoutExample::BoxLayoutExample() :{}

BoxLayoutExample::~BoxLayoutExample() {}

void BoxLayoutExample::ContentsChanged(Textfield* textfield,
                                       const std::u16string& new_contents) {}

void BoxLayoutExample::CreateAdditionalControls() {}

void BoxLayoutExample::UpdateLayoutManager() {}

void BoxLayoutExample::UpdateBorderInsets() {}

void BoxLayoutExample::MainAxisAlignmentChanged() {}

void BoxLayoutExample::CrossAxisAlignmentChanged() {}

}  // namespace views::examples