tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Contact / EventFindGroup.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @author      Lukasz Marek (l.marek@samsung.com)
18  * @version     0.1
19  * @brief
20  */
21
22 #ifndef WRTDEVICEAPIS_CONTACT_EVENT_FIND_GROUP_H_
23 #define WRTDEVICEAPIS_CONTACT_EVENT_FIND_GROUP_H_
24
25 #include <string>
26 #include <vector>
27 #include <dpl/shared_ptr.h>
28 #include <Commons/IEvent.h>
29
30 namespace WrtDeviceApis {
31 namespace Contact {
32 namespace Api {
33
34 /* Event sent while searching group */
35 class EventFindGroup : public Commons::IEvent<EventFindGroup>
36 {
37     bool m_result;
38     std::string m_groupName;            //can be used as regular expressions mask or empty for all groups
39     std::vector<std::string> m_foundGroups;
40   public:
41     void addFoundGroup(const std::string &value)
42     {
43         m_foundGroups.push_back(value);
44     }
45     const std::vector<std::string> &getFoundGroups() const
46     {
47         return m_foundGroups;
48     }
49     void setFoundGroups(const std::vector<std::string> &value)
50     {
51         m_foundGroups = value;
52     }
53     void setGroupName(const std::string &value)
54     {
55         m_groupName = value;
56     }
57     std::string getGroupName() const
58     {
59         return m_groupName;
60     }
61     void setResult(bool value)
62     {
63         m_result = value;
64     }
65     bool getResult() const
66     {
67         return m_result;
68     }
69     EventFindGroup() : m_result(false)
70     {
71     }
72     virtual ~EventFindGroup()
73     {
74     }
75     virtual void clearOnCancel()
76     {
77     }
78 };
79
80 typedef DPL::SharedPtr<EventFindGroup> EventFindGroupPtr;
81
82 }
83 } // Api
84 } // WrtDeviceApis
85
86 #endif // WRTDEVICEAPIS_CONTACT_EVENT_FIND_GROUP_H_