Merge "Revert "Use tizen_base::Bundle"" into tizen
[platform/core/api/notification.git] / notification-ex / entry_item.h
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
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 #ifndef NOTIFICATION_EX_ENTRY_ITEM_H_
18 #define NOTIFICATION_EX_ENTRY_ITEM_H_
19
20 #include <memory>
21 #include <string>
22
23 #include "notification-ex/abstract_item.h"
24
25 #ifndef EXPORT_API
26 #define EXPORT_API __attribute__((visibility("default")))
27 #endif
28
29 namespace notification {
30 namespace item {
31
32 /**
33  * @brief The class for EntryItem type notification.
34  * @details The class to make the notification with text input.
35  * @since_tizen 5.5
36  */
37 class EXPORT_API EntryItem : public AbstractItem {
38  public:
39   /**
40    * @brief Constructor
41    * @since_tizen 5.5
42    * @param[in] action The action for EntryItem
43    */
44   EntryItem(std::shared_ptr<AbstractAction> action = std::shared_ptr<AbstractAction>({}));
45
46   /**
47    * @brief Constructor
48    * @since_tizen 5.5
49    * @param[in] id The EntryItem id
50    * @param[in] action The action for EntryItem
51    */
52   EntryItem(std::string id,
53       std::shared_ptr<AbstractAction> action = std::shared_ptr<AbstractAction>({}));
54
55   /**
56    * @brief Destructor
57    * @since_tizen 5.5
58    */
59   virtual ~EntryItem();
60
61   /**
62    * @brief Serialize the data of EntryItem.
63    * @since_tizen 5.5
64    * @return Bundle type data
65    */
66   Bundle Serialize() const override;
67
68   /**
69    * @brief Deserialize the serialized data.
70    * @since_tizen 5.5
71    * @param[in] b The serialized Bundle data
72    */
73   void Deserialize(Bundle b) override;
74
75   /**
76    * @brief Finds the AbstractItem using by notification item id.
77    * @since_tizen 5.5
78    * @param[in] id notification item id
79    * @return AbstractItem object
80    */
81   AbstractItem& FindByID(std::string id) override;
82
83   /**
84    * @brief Gets the type of EntryItem.
85    * @since_tizen 5.5
86    * @return AbstractItem::Type::Entry
87    */
88   int GetType() const override;
89
90   /**
91    * @brief Gets the text data of EntryItem.
92    * @since_tizen 5.5
93    * @return The text data
94    */;
95   std::string GetText() const;
96
97   /**
98    * @brief Sets the text data of EntryItem.
99    * @since_tizen 5.5
100    * @param[in] The text data
101    */
102   void SetText(std::string text);
103
104   /**
105    * @brief Gets the limit of text size.
106    * @since_tizen 5.5
107    * @return The limit of text size
108    */
109   int GetTextLimit() const;
110
111  private:
112   class Impl;
113   std::unique_ptr<Impl> impl_;
114 };  // class EntryItem
115
116 }  // namespace item
117 }  // namespace notification
118 #endif  // NOTIFICATION_EX_ENTRY_ITEM_H_