Revert "Corresponding to TizenIVI3.0 M14.3, GENIVI-LayerManagement was used instead...
[profile/ivi/ico-uxf-homescreen.git] / lib / system-controller / CicoSCWaylandIF.cpp
1 /*
2  * Copyright (c) 2013, TOYOTA MOTOR CORPORATION.
3  *
4  * This program is licensed under the terms and conditions of the
5  * Apache License, version 2.0.  The full text of the Apache License is at
6  * http://www.apache.org/licenses/LICENSE-2.0
7  *
8  */
9
10 //==========================================================================
11 /**
12  *  @file   CicoSCWaylandIF.cpp
13  *
14  *  @brief  This file implementation of CicoSCWaylandIF class
15  */
16 //==========================================================================
17
18 #include "CicoSCWaylandIF.h"
19 #include "CicoLog.h"
20
21 const char * CicoSCWaylandIF::ICO_WL_WIN_MGR_IF        = "ico_window_mgr";
22 const char * CicoSCWaylandIF::ICO_WL_INPUT_MGR_CTRL_IF = "ico_input_mgr_control";
23 const char * CicoSCWaylandIF::ICO_WL_EXINPUT_IF        = "ico_exinput";
24 const char * CicoSCWaylandIF::ICO_WL_INPUT_MGR_DEV_IF  = "ico_input_mgr_device";
25 const char * CicoSCWaylandIF::ICO_WL_IVI_APPLICATION_IF= "ivi_application";
26 const char * CicoSCWaylandIF::ICO_WL_IVI_CONTROLLER_IF = "ivi_controller";
27 const char * CicoSCWaylandIF::ICO_WL_OUTPUT_IF         = "wl_output";
28
29
30 //--------------------------------------------------------------------------
31 /**
32  *  @brief  default constructor
33  */
34 //--------------------------------------------------------------------------
35 CicoSCWaylandIF::CicoSCWaylandIF()
36       : m_initialized(false)
37 {
38 }
39
40 //--------------------------------------------------------------------------
41 /**
42  *  @brief  destructor
43  */
44 //--------------------------------------------------------------------------
45 CicoSCWaylandIF::~CicoSCWaylandIF()
46 {
47 }
48
49 //--------------------------------------------------------------------------
50 /**
51  *  @brief  destructor
52  *
53  *  @param [in] date        user data
54  *  @param [in] registry    wayland registry
55  *  @param [in] name        wayland display id
56  *  @parma [in] interface   wayland interface name
57  *  @parma [in] version     wayland interface version number
58  */
59 //--------------------------------------------------------------------------
60 void
61 CicoSCWaylandIF::initInterface(void               *data,
62                                struct wl_registry *registry,
63                                uint32_t           name,
64                                const char         *interface,
65                                uint32_t           version)
66 {
67     ICO_WRN("CicoSCWaylandIF::initInterface called.");
68 }
69
70 //--------------------------------------------------------------------------
71 /**
72  *  @brief  inquire whether initialized
73  *
74  *  @return true on initialized, false no not initialized
75  *  @retval true    initialized
76  *  @retval false   not initialized
77  */
78 //--------------------------------------------------------------------------
79 bool
80 CicoSCWaylandIF::isInitialized(void)
81 {
82     return m_initialized;
83 }
84 // vim:set expandtab ts=4 sw=4: