summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download/download_item_model.h
blob: 5a0e08e5364b76b37c73b35aaf6c718b1b224ee0 (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
95
96
97
98
99
100
101
102
103
// Copyright (c) 2012 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_DOWNLOAD_DOWNLOAD_ITEM_MODEL_H_
#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_MODEL_H_
#pragma once

#include <string>

#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/string16.h"

class SavePackage;

namespace content {
class DownloadItem;
}

namespace gfx {
class Font;
}

// This class is an abstraction for common UI tasks associated with a download.
class BaseDownloadItemModel {
 public:
  explicit BaseDownloadItemModel(content::DownloadItem* download)
      : download_(download) { }
  virtual ~BaseDownloadItemModel() { }

  // Cancel the task corresponding to the item.
  virtual void CancelTask() = 0;

  // Returns a short one-line status string for the download.
  virtual string16 GetStatusText() = 0;

  // Returns a string suitable for use as a tooltip. For a regular download, the
  // tooltip is the filename. For an interrupted download, the string states the
  // filename and a short description of the reason for interruption. For
  // example:
  //    Report.pdf
  //    Network disconnected
  // |font| and |max_width| are used to elide the filename and/or interrupt
  // reason as necessary to keep the width of the tooltip text under
  // |max_width|. The tooltip will be at most 2 lines.
  virtual string16 GetTooltipText(const gfx::Font& font,
                                  int max_width) const = 0;

  // Rough percent complete. Returns -1 if the progress is unknown.
  virtual int PercentComplete() const = 0;

  // Get the warning text to display for a dangerous download. The |base_width|
  // is the maximum width of an embedded filename (if there is one). The metrics
  // for the filename will be based on |font|. Should only be called if
  // IsDangerous() is true.
  virtual string16 GetWarningText(const gfx::Font& font, int base_width) = 0;

  // Get the caption text for a button for confirming a dangerous download
  // warning.
  virtual string16 GetWarningConfirmButtonText() = 0;

  // Is this considered a malicious download? Implies IsDangerous().
  virtual bool IsMalicious() = 0;

  // Is this considered a dangerous download?
  virtual bool IsDangerous() = 0;

  content::DownloadItem* download() { return download_; }

  // Get the status message of the given interrupt |reason|.
  static string16 InterruptReasonStatusMessage(int reason);

  // Get the description of the given interrupt |reason|.
  static string16 InterruptReasonMessage(int reason);

 protected:
  content::DownloadItem* download_;
};

// Concrete implementation of BaseDownloadItemModel.
class DownloadItemModel : public BaseDownloadItemModel {
 public:
  explicit DownloadItemModel(content::DownloadItem* download);
  virtual ~DownloadItemModel() { }

  // BaseDownloadItemModel
  virtual void CancelTask() OVERRIDE;
  virtual string16 GetStatusText() OVERRIDE;
  virtual string16 GetTooltipText(const gfx::Font& font,
                                  int max_width) const OVERRIDE;
  virtual int PercentComplete() const OVERRIDE;
  virtual string16 GetWarningText(const gfx::Font& font,
                                  int base_width) OVERRIDE;
  virtual string16 GetWarningConfirmButtonText() OVERRIDE;
  virtual bool IsMalicious() OVERRIDE;
  virtual bool IsDangerous() OVERRIDE;

 private:
  DISALLOW_COPY_AND_ASSIGN(DownloadItemModel);
};

#endif  // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_MODEL_H_