[Release] wrt_0.8.213
[platform/framework/web/wrt.git] / src / view / common / application_launcher.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  * @file    application_launcher.h
18  * @author  Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @version 1.0
20  * @brief   Header file for application launcher
21  */
22
23 #ifndef APPLICATION_LAUNCHER_H
24 #define APPLICATION_LAUNCHER_H
25
26 #include <string>
27 #include <dpl/event/controller.h>
28 #include <dpl/generic_event.h>
29 #include <dpl/singleton.h>
30 #include <dpl/wrt-dao-ro/wrt_db_types.h>
31
32 #include <appfw/app_service.h>
33
34 namespace ApplicationLauncherEvents {
35 DECLARE_GENERIC_EVENT_3(LaunchApplicationByAppService,
36                         service_h,
37                         service_reply_cb,
38                         void*)
39 DECLARE_GENERIC_EVENT_4(LaunchApplicationByPkgname,
40                         std::string,
41                         std::string,
42                         std::string,
43                         std::string)
44 } //namespace ApplicationLauncherEvents
45
46 namespace ApplicationLauncherPkgname {
47 const std::string PKG_NAME_PREFIX = "com.samsung.";
48 const std::string PKG_NAME_DOWNLOAD_PROVIDER = PKG_NAME_PREFIX +
49     "download-provider";
50 const std::string PKG_NAME_VIDEO_PLAYER = PKG_NAME_PREFIX + "video-player";
51 const std::string PKG_NAME_VT_MAIN = PKG_NAME_PREFIX + "vtmain";
52 } // namespace ApplicationLauncherPkgname
53
54 class ApplicationLauncher :
55     public DPL::Event::Controller<DPL::TypeListDecl<
56                                       ApplicationLauncherEvents::
57                                           LaunchApplicationByPkgname,
58                                       ApplicationLauncherEvents::
59                                           LaunchApplicationByAppService
60                                       >::Type>
61 {
62   public:
63     ApplicationLauncher();
64     virtual ~ApplicationLauncher();
65     void setWidgetTizenId(const std::string& tizenId);
66     void setWindowHandle(unsigned windowHandle);
67
68   protected:
69     virtual void OnEventReceived(
70         const ApplicationLauncherEvents::
71             LaunchApplicationByPkgname &event);
72     virtual void OnEventReceived(
73         const ApplicationLauncherEvents::
74             LaunchApplicationByAppService &event);
75
76   private:
77     std::string m_tizenId;
78     unsigned m_windowHandle;
79 };
80
81 typedef DPL::Singleton<ApplicationLauncher> ApplicationLauncherSingleton;
82
83 #endif //APPLICATION_LAUNCHER_H