uninstall_view.h revision 5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_UI_VIEWS_UNINSTALL_VIEW_H_
6#define CHROME_BROWSER_UI_VIEWS_UNINSTALL_VIEW_H_
7
8#include <map>
9
10#include "base/basictypes.h"
11#include "base/callback.h"
12#include "base/compiler_specific.h"
13#include "base/strings/string16.h"
14#include "ui/base/models/combobox_model.h"
15#include "ui/views/controls/button/button.h"
16#include "ui/views/window/dialog_delegate.h"
17
18namespace views {
19class Checkbox;
20class Combobox;
21class Label;
22}
23
24// UninstallView implements the dialog that confirms Chrome uninstallation
25// and asks whether to delete Chrome profile. Also if currently Chrome is set
26// as default browser, it asks users whether to set another browser as default.
27class UninstallView : public views::ButtonListener,
28                      public views::DialogDelegateView,
29                      public ui::ComboboxModel {
30 public:
31  explicit UninstallView(int* user_selection,
32                         const base::Closure& quit_closure,
33                         bool show_delete_profile);
34  virtual ~UninstallView();
35
36  // Overridden form views::ButtonListener.
37  virtual void ButtonPressed(views::Button* sender,
38                             const ui::Event& event) OVERRIDE;
39
40  // Overridden from views::DialogDelegateView:
41  virtual bool Accept() OVERRIDE;
42  virtual bool Cancel() OVERRIDE;
43  virtual base::string16 GetDialogButtonLabel(
44      ui::DialogButton button) const OVERRIDE;
45
46  // Overridden from views::WidgetDelegate:
47  virtual base::string16 GetWindowTitle() const OVERRIDE;
48
49  // Overridden from ui::ComboboxModel:
50  virtual int GetItemCount() const OVERRIDE;
51  virtual base::string16 GetItemAt(int index) OVERRIDE;
52
53 private:
54  typedef std::map<base::string16, base::string16> BrowsersMap;
55
56  // Initializes the controls on the dialog.
57  void SetupControls();
58
59  views::Label* confirm_label_;
60  bool show_delete_profile_;
61  views::Checkbox* delete_profile_;
62  views::Checkbox* change_default_browser_;
63  views::Combobox* browsers_combo_;
64  scoped_ptr<BrowsersMap> browsers_;
65  int& user_selection_;
66  base::Closure quit_closure_;
67
68  DISALLOW_COPY_AND_ASSIGN(UninstallView);
69};
70
71#endif  // CHROME_BROWSER_UI_VIEWS_UNINSTALL_VIEW_H_
72