blob: e627166637485ff9ebbac69beb5c253f35345f8a (
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
// Copyright (c) 2011 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_CHROMEOS_OPTIONS_TAKE_PHOTO_DIALOG_H_
#define CHROME_BROWSER_CHROMEOS_OPTIONS_TAKE_PHOTO_DIALOG_H_
#pragma once
#include "base/memory/scoped_ptr.h"
#include "base/observer_list.h"
#include "chrome/browser/chromeos/login/camera_controller.h"
#include "chrome/browser/chromeos/login/take_photo_view.h"
#include "content/common/notification_observer.h"
#include "content/common/notification_registrar.h"
#include "views/window/dialog_delegate.h"
namespace views {
class View;
}
namespace chromeos {
// A dialog box for taking new user picture.
class TakePhotoDialog : public views::DialogDelegateView,
public TakePhotoView::Delegate,
public CameraController::Delegate,
public NotificationObserver {
public:
class Delegate {
public:
virtual ~Delegate() {}
// Called when user accepts the photo.
virtual void OnPhotoAccepted(const SkBitmap& photo) = 0;
};
explicit TakePhotoDialog(Delegate* delegate);
virtual ~TakePhotoDialog();
// views::DialogDelegateView overrides.
virtual bool IsDialogButtonEnabled(
MessageBoxFlags::DialogButton button) const;
virtual bool Cancel();
virtual bool Accept();
// views::WidgetDelegate overrides.
virtual bool IsModal() const;
virtual views::View* GetContentsView();
// views::View overrides.
virtual void GetAccessibleState(ui::AccessibleViewState* state);
// TakePhotoView::Delegate overrides.
virtual void OnCapturingStarted();
virtual void OnCapturingStopped();
// CameraController::Delegate implementation:
virtual void OnCaptureSuccess();
virtual void OnCaptureFailure();
// Interface that observers of this dialog must implement in order
// to receive notification for capture success/failure.
class Observer {
public:
// Called when image is captured and is displayed
virtual void OnCaptureSuccess(
TakePhotoDialog* dialog,
TakePhotoView* view) = 0;
// Called when capture fails and error image is displayed
virtual void OnCaptureFailure(
TakePhotoDialog* dialog,
TakePhotoView* view) = 0;
// Called when capture is stopped and image is not being updated
virtual void OnCapturingStopped(
TakePhotoDialog* dialog,
TakePhotoView* view) = 0;
protected:
virtual ~Observer() {}
};
void AddObserver(Observer* obs);
void RemoveObserver(Observer* obs);
void NotifyOnCaptureSuccess();
void NotifyOnCaptureFailure();
void NotifyOnCapturingStopped();
// NotificationObserver implementation:
virtual void Observe(int type,
const NotificationSource& source,
const NotificationDetails& details);
protected:
// views::View overrides:
virtual void Layout();
virtual gfx::Size GetPreferredSize();
private:
// Starts initializing the camera and shows the appropriate status on the
// screen.
void InitCamera();
TakePhotoView* take_photo_view_;
CameraController camera_controller_;
NotificationRegistrar registrar_;
Delegate* delegate_;
ObserverList<Observer> observer_list_;
DISALLOW_COPY_AND_ASSIGN(TakePhotoDialog);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_OPTIONS_TAKE_PHOTO_DIALOG_H_
|