[Application] Add CurrentDeviceOrientation property on CoreUIApplication (#560)
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.UI / Interop / Interop.Application.cs
1 /*
2  * Copyright (c) 2016 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 using System;
18 using System.Runtime.InteropServices;
19 using Tizen.Applications;
20 using Tizen.Applications.CoreBackend;
21 using Tizen.Internals.Errors;
22
23 internal static partial class Interop
24 {
25     internal static partial class Application
26     {
27         internal delegate void AppEventCallback(IntPtr handle, IntPtr data);
28
29         internal delegate bool AppCreateCallback(IntPtr userData);
30
31         internal delegate void AppPauseCallback(IntPtr userData);
32
33         internal delegate void AppResumeCallback(IntPtr userData);
34
35         internal delegate void AppTerminateCallback(IntPtr userData);
36
37         internal delegate void AppControlCallback(IntPtr appControl, IntPtr userData);
38
39
40         [DllImport(Libraries.Application, EntryPoint = "app_get_device_orientation")]
41         internal static extern DeviceOrientation AppGetDeviceOrientation();
42
43         [DllImport(Libraries.Application, EntryPoint = "ui_app_main")]
44         internal static extern ErrorCode Main(int argc, string[] argv, ref UIAppLifecycleCallbacks callback, IntPtr userData);
45
46         [DllImport(Libraries.Application, EntryPoint = "ui_app_exit")]
47         internal static extern void Exit();
48
49         [DllImport(Libraries.Application, EntryPoint = "ui_app_add_event_handler")]
50         internal static extern ErrorCode AddEventHandler(out IntPtr handle, DefaultCoreBackend.AppEventType eventType, AppEventCallback callback, IntPtr data);
51
52         [DllImport(Libraries.Application, EntryPoint = "ui_app_remove_event_handler")]
53         internal static extern ErrorCode RemoveEventHandler(IntPtr handle);
54
55         [StructLayout(LayoutKind.Sequential)]
56         internal struct UIAppLifecycleCallbacks
57         {
58             public AppCreateCallback OnCreate;
59             public AppTerminateCallback OnTerminate;
60             public AppPauseCallback OnPause;
61             public AppResumeCallback OnResume;
62             public AppControlCallback OnAppControl;
63         }
64     }
65 }
66