Add Progress type
[platform/core/api/notification.git] / notification-ex / progress_item_implementation.h
1
2
3 /*
4  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #ifndef NOTIFICATION_EX_INPUT_SELECTOR_ITEM_IMPLEMENTATION_H_
20 #define NOTIFICATION_EX_INPUT_SELECTOR_ITEM_IMPLEMENTATION_H_
21
22 #include <string>
23 #include <memory>
24 #include <list>
25
26 #include "notification-ex/progress_item.h"
27
28 namespace notification {
29 namespace item {
30
31 class ProgressItem::Impl {
32  public:
33   virtual ~Impl();
34
35  private:
36   Impl(float min_val, float current, float max_val,
37     ProgressItem* parent);
38
39  private:
40   friend class ProgressItem;
41
42   float min_;
43   float current_;
44   float max_;
45   ProgressItem* parent_;
46   Type type_;
47   std::string unit_;
48 };
49
50 }  // namespace item
51 }  // namespace notification
52
53 #endif  // NOTIFICATION_EX_INPUT_SELECTOR_ITEM_IMPLEMENTATION_H_