blob: b89160f5db56310a77b39eaf368bf2ed8dde6893 (
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
|
// Copyright (c) 2010 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 PPAPI_CPP_DEV_FIND_DEV_H_
#define PPAPI_CPP_DEV_FIND_DEV_H_
#include <string>
#include "ppapi/c/dev/ppp_find_dev.h"
namespace pp {
class Instance;
// This class allows you to associate the PPP_Find and PPB_Find C-based
// interfaces with an object. It associates itself with the given instance, and
// registers as the global handler for handling the PPP_Find interface that the
// browser calls.
//
// You would typically use this either via inheritance on your instance:
// class MyInstance : public pp::Instance, public pp::Find_Dev {
// class MyInstance() : pp::Find_Dev(this) {
// }
// ...
// };
//
// or by composition:
// class MyFinder : public pp::Find {
// ...
// };
//
// class MyInstance : public pp::Instance {
// MyInstance() : finder_(this) {
// }
//
// MyFinder finder_;
// };
class Find_Dev {
public:
// The instance parameter must outlive this class.
Find_Dev(Instance* instance);
virtual ~Find_Dev();
// PPP_Find_Dev functions exposed as virtual functions for you to
// override.
virtual bool StartFind(const std::string& text, bool case_sensitive) = 0;
virtual void SelectFindResult(bool forward) = 0;
virtual void StopFind() = 0;
// PPB_Find_Def functions for you to call to report find results.
void NumberOfFindResultsChanged(int32_t total, bool final_result);
void SelectedFindResultChanged(int32_t index);
private:
Instance* associated_instance_;
};
} // namespace pp
#endif // PPAPI_CPP_DEV_FIND_DEV_H_
|