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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
// 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.
//
// Download utilities.
#ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_UTIL_H_
#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_UTIL_H_
#include <objidl.h>
#include <set>
#include <string>
#include "base/basictypes.h"
#include "base/task.h"
#include "views/controls/menu/menu.h"
#include "views/event.h"
#include "views/view.h"
class BaseDownloadItemModel;
class DownloadItem;
class SkBitmap;
namespace download_util {
// DownloadProgressTask --------------------------------------------------------
// A class for managing the timed progress animations for a download view. The
// view must implement an UpdateDownloadProgress() method.
template<class DownloadView>
class DownloadProgressTask : public Task {
public:
DownloadProgressTask(DownloadView* view) : view_(view) {}
virtual ~DownloadProgressTask() {}
virtual void Run() {
view_->UpdateDownloadProgress();
}
private:
DownloadView* view_;
DISALLOW_COPY_AND_ASSIGN(DownloadProgressTask);
};
// Download opening ------------------------------------------------------------
// Whether it is OK to open this download.
bool CanOpenDownload(DownloadItem* download);
// Open the file associated with this download (wait for the download to
// complete if it is in progress).
void OpenDownload(DownloadItem* download);
// Download progress animations ------------------------------------------------
// Arc sweep angle for use with downloads of unknown size
const int kUnknownAngleDegrees = 50;
// Rate of progress for use with downloads of unknown size
const int kUnknownIncrementDegrees = 12;
// Start angle for downloads with known size (midnight position)
const int kStartAngleDegrees = -90;
// A circle
const int kMaxDegrees = 360;
// Progress animation timer period, in milliseconds.
const int kProgressRateMs = 150;
// XP and Vista must support icons of this size.
const int kSmallIconSize = 16;
const int kBigIconSize = 32;
// Our progress halo around the icon.
int GetBigProgressIconSize();
const int kSmallProgressIconSize = 39;
const int kBigProgressIconSize = 52;
// The offset required to center the icon in the progress bitmaps.
int GetBigProgressIconOffset();
const int kSmallProgressIconOffset =
(kSmallProgressIconSize - kSmallIconSize) / 2;
enum PaintDownloadProgressSize {
SMALL = 0,
BIG
};
// Paint the common download animation progress foreground and background,
// clipping the foreground to 'percent' full. If percent is -1, then we don't
// know the total size, so we just draw a rotating segment until we're done.
//
// |containing_view| is the View subclass within which the progress animation
// is drawn (generally either DownloadItemTabView or DownloadItemView). We
// require the containing View in addition to the canvas because if we are
// drawing in a right-to-left locale, we need to mirror the position of the
// progress animation within the containing View.
void PaintDownloadProgress(ChromeCanvas* canvas,
views::View* containing_view,
int origin_x,
int origin_y,
int start_angle,
int percent,
PaintDownloadProgressSize size);
void PaintDownloadComplete(ChromeCanvas* canvas,
views::View* containing_view,
int origin_x,
int origin_y,
double animation_progress,
PaintDownloadProgressSize size);
// Drag support ----------------------------------------------------------------
// Helper function for download views to use when acting as a drag source for a
// DownloadItem. If 'icon' is NULL, no image will be accompany the drag.
void DragDownload(const DownloadItem* download, SkBitmap* icon);
// Executable file support -----------------------------------------------------
// Copy all executable file extensions.
void InitializeExeTypes(std::set<std::string>* exe_extensions);
} // namespace download_util
#endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_UTIL_H_
|