blob: 86ac7cc6fb856cfe7e009ffd3f0e15e5a0ceece2 (
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
|
// Copyright (c) 2006-2008 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.
// A simple view that indicates to the user that a time-consuming operation
// is being performed, using a throbber and some explanatory text.
#ifndef CHROME_BROWSER_VIEWS_DELAY_VIEW_H__
#define CHROME_BROWSER_VIEWS_DELAY_VIEW_H__
#include "chrome/browser/controller.h"
#include "base/basictypes.h"
#include "chrome/views/label.h"
#include "chrome/views/native_button.h"
#include "chrome/views/throbber.h"
class DelayView : public views::View,
public views::NativeButton::Listener {
public:
// |text| explains the delay
// |controller| receives notifications when the "cancel" button is pressed
// |show_cancel| determines whether the cancel button is shown
DelayView(const std::wstring& text,
CommandController* controller,
bool show_cancel);
virtual ~DelayView();
enum ViewID {
ID_CANCEL = 10000,
};
// Overridden from views::View
virtual void Layout();
// Implemented from views::NativeButton::Listener
virtual void ButtonPressed(views::NativeButton *sender);
private:
CommandController* controller_;
views::Label* label_;
views::NativeButton* cancel_button_;
views::Throbber* throbber_;
DISALLOW_EVIL_CONSTRUCTORS(DelayView);
};
#endif // CHROME_BROWSER_VIEWS_DELAY_VIEW_H__
|