blob: 09231ddcbd61f815338af04b0c6c1c295df7412d (
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
|
// Copyright (c) 2009 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 "views/examples/example_base.h"
#include <stdarg.h>
#include <string>
#include "base/string_util.h"
#include "views/controls/button/text_button.h"
#include "views/controls/label.h"
#include "views/controls/tabbed_pane/tabbed_pane.h"
namespace examples {
using views::Label;
using views::TabbedPane;
using views::TextButton;
// Prints a message in the status area, at the bottom of the window.
void ExampleBase::PrintStatus(const wchar_t* format, ...) {
va_list ap;
va_start(ap, format);
std::wstring msg;
StringAppendV(&msg, format, ap);
status_->SetText(msg);
}
// static
void ExampleBase::AddButton(TabbedPane* tabbed_pane,
const std::wstring& label) {
TextButton* button = new TextButton(NULL, label);
tabbed_pane->AddTab(label, button);
}
} // namespace examples
|