-
Notifications
You must be signed in to change notification settings - Fork 5
/
root_view.h
51 lines (42 loc) · 1.37 KB
/
root_view.h
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
// Copyright...
#ifndef PDFSKETCH_ROOT_VIEW_H__
#define PDFSKETCH_ROOT_VIEW_H__
#include <ppapi/utility/completion_callback_factory.h>
#include <ppapi/cpp/message_loop.h>
#include <ppapi/cpp/input_event.h>
#include "view.h"
namespace pdfsketch {
class RootViewDelegate {
public:
virtual cairo_t* AllocateCairo() = 0;
virtual bool FlushCairo(std::function<void(int32_t)> complete_callback) = 0;
virtual void CopyToClipboard(const std::string& str) = 0;
virtual void RequestPaste() = 0;
};
class RootView : public View {
public:
RootView()
: draw_requested_(false),
flush_in_progress_(false),
callback_factory_(this),
down_mouse_handler_(NULL) {}
virtual std::string Name() const { return "RootView"; }
virtual void DrawRect(cairo_t* ctx, const Rect& rect);
virtual void SetNeedsDisplayInRect(const Rect& rect);
void SetDelegate(RootViewDelegate* delegate) {
delegate_ = delegate;
}
virtual void Resize(const Size& size);
void HandleDrawRequest(int32_t result);
void FlushComplete();
void HandlePepperInputEvent(const pp::InputEvent& event,
float scale);
private:
RootViewDelegate* delegate_;
bool draw_requested_;
bool flush_in_progress_;
pp::CompletionCallbackFactory<RootView> callback_factory_;
View* down_mouse_handler_;
};
} // namespace pdfsketch
#endif // PDFSKETCH_ROOT_VIEW_H__