blob: 8d3c76731ffc843aa339f8b2cac914ef8eeb8a03 (
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 ChromeViews::View,
public ChromeViews::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 ChromeViews::View
virtual void Layout();
// Implemented from ChromeViews::NativeButton::Listener
virtual void ButtonPressed(ChromeViews::NativeButton *sender);
private:
CommandController* controller_;
ChromeViews::Label* label_;
ChromeViews::NativeButton* cancel_button_;
ChromeViews::Throbber* throbber_;
DISALLOW_EVIL_CONSTRUCTORS(DelayView);
};
#endif // CHROME_BROWSER_VIEWS_DELAY_VIEW_H__
|