blob: 1336c0ca017ce4912d2fca723ada8452997bd875 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
// Copyright (c) 2011 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.
#include "ui/views/examples/example_base.h"
#include <stdarg.h>
#include "base/compiler_specific.h"
#include "base/stringprintf.h"
#include "ui/views/examples/examples_window.h"
#include "ui/views/view.h"
namespace views {
namespace examples {
// Logs the specified string to the status area of the examples window.
// This function can only be called if there is a visible examples window.
void LogStatus(const std::string& status);
namespace {
// Some of GTK based view classes require NativeWidgetGtk in the view
// parent chain. This class is used to defer the creation of such
// views until a NativeWidgetGtk is added to the view hierarchy.
class ContainerView : public View {
public:
explicit ContainerView(examples::ExampleBase* base)
: example_view_created_(false),
example_base_(base) {
}
private:
// Overridden from View:
virtual void ViewHierarchyChanged(bool is_add,
View* parent,
View* child) OVERRIDE {
View::ViewHierarchyChanged(is_add, parent, child);
// We're not using child == this because a Widget may not be
// available when this is added to the hierarchy.
if (is_add && GetWidget() && !example_view_created_) {
example_view_created_ = true;
example_base_->CreateExampleView(this);
}
}
// True if the example view has already been created, or false otherwise.
bool example_view_created_;
examples::ExampleBase* example_base_;
DISALLOW_COPY_AND_ASSIGN(ContainerView);
};
} // namespace
ExampleBase::~ExampleBase() {}
ExampleBase::ExampleBase(const char* title) : example_title_(title) {
container_ = new ContainerView(this);
}
// Prints a message in the status area, at the bottom of the window.
void ExampleBase::PrintStatus(const char* format, ...) {
va_list ap;
va_start(ap, format);
std::string msg;
base::StringAppendV(&msg, format, ap);
LogStatus(msg);
}
} // namespace examples
} // namespace views
|