45025bec3a41719d4107b64c919951381399c7ac
[platform/core/connectivity/stc-manager.git] / plugin / appstatus / include / stc-plugin-appstatus.h
1 /*
2  * Copyright (c) 2016 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 __STC_PLUGIN_APPSTATUS_H__
18 #define __STC_PLUGIN_APPSTATUS_H__
19
20 #include <glib.h>
21 #include "stc-error.h"
22 #include "stc-manager.h"
23
24 typedef stc_error_e (*stc_plugin_app_state_changed_cb)(stc_cmd_type_e cmd,
25                                                        pid_t pid,
26                                                        const gchar *app_id,
27                                                        const gchar *pkg_id,
28                                                        stc_app_type_e app_type);
29
30 typedef struct {
31         /* popup */
32         int (*send_message_to_net_popup) (const char *, const char *,
33                         const char *, const char *, const char *);
34         /* app status */
35         int (*register_state_changed_cb) (stc_s *stc,
36                         stc_plugin_app_state_changed_cb cb, void *data);
37         int (*deregister_state_changed_cb) (stc_s *stc);
38 } stc_plugin_appstatus_s;
39
40 int stc_plugin_popup_send_message(const char *content,
41                 const char *type, const char *app_id, const char *iftype, const char *limit);
42
43 int stc_plugin_appstatus_register_changed_cb(stc_s *stc,
44                 stc_plugin_app_state_changed_cb cb, void *data);
45 int stc_plugin_appstatus_deregister_changed_cb(stc_s *stc);
46
47 #endif /* __STC_PLUGIN_APPSTATUS_H__ */