blob: 5f70eb15e31d5e85bd85d7ea37c5ee34faa6c4f9 (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
// Copyright (c) 2010 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.
#ifndef CHROME_BROWSER_VIEWS_IMPORTING_PROGRESS_VIEW_H_
#define CHROME_BROWSER_VIEWS_IMPORTING_PROGRESS_VIEW_H_
#include "chrome/browser/importer/importer.h"
#include "chrome/browser/importer/importer_data_types.h"
#include "views/view.h"
#include "views/window/dialog_delegate.h"
#include "views/window/window.h"
namespace views {
class CheckmarkThrobber;
class Label;
}
class ImportingProgressView : public views::View,
public views::DialogDelegate,
public ImporterHost::Observer {
public:
// |items| is a bitmask of ImportItems being imported.
// |bookmark_import| is true if we're importing bookmarks from a
// bookmarks.html file.
ImportingProgressView(const std::wstring& source_name,
int16 items,
ImporterHost* coordinator,
ImportObserver* observer,
HWND parent_window,
bool bookmarks_import);
virtual ~ImportingProgressView();
protected:
// Overridden from ImporterHost::Observer:
virtual void ImportItemStarted(importer::ImportItem item);
virtual void ImportItemEnded(importer::ImportItem item);
virtual void ImportStarted();
virtual void ImportEnded();
// Overridden from views::DialogDelegate:
virtual int GetDialogButtons() const;
virtual std::wstring GetDialogButtonLabel(
MessageBoxFlags::DialogButton button) const;
virtual bool IsModal() const;
virtual std::wstring GetWindowTitle() const;
virtual bool Cancel();
virtual views::View* GetContentsView();
// Overridden from views::View:
virtual gfx::Size GetPreferredSize();
virtual void ViewHierarchyChanged(bool is_add,
views::View* parent,
views::View* child);
private:
// Set up the control layout within this dialog.
void InitControlLayout();
// Various dialog controls.
scoped_ptr<views::CheckmarkThrobber> state_bookmarks_;
scoped_ptr<views::CheckmarkThrobber> state_searches_;
scoped_ptr<views::CheckmarkThrobber> state_passwords_;
scoped_ptr<views::CheckmarkThrobber> state_history_;
scoped_ptr<views::CheckmarkThrobber> state_cookies_;
views::Label* label_info_;
scoped_ptr<views::Label> label_bookmarks_;
scoped_ptr<views::Label> label_searches_;
scoped_ptr<views::Label> label_passwords_;
scoped_ptr<views::Label> label_history_;
scoped_ptr<views::Label> label_cookies_;
// The native window that we are parented to. Can be NULL.
HWND parent_window_;
// The importer host coordinating the import.
scoped_refptr<ImporterHost> coordinator_;
// An object that wants to be notified when the import is complete.
ImportObserver* import_observer_;
// The ImportItems we are importing.
int16 items_;
// True if the import operation is in progress.
bool importing_;
// Are we importing a bookmarks.html file?
bool bookmarks_import_;
DISALLOW_COPY_AND_ASSIGN(ImportingProgressView);
};
#endif // CHROME_BROWSER_VIEWS_IMPORTING_PROGRESS_VIEW_H_
|