summaryrefslogtreecommitdiff
path: root/Tizen.Applications.Common/Tizen.Applications/RecentApplicationControl.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Tizen.Applications.Common/Tizen.Applications/RecentApplicationControl.cs')
-rwxr-xr-xTizen.Applications.Common/Tizen.Applications/RecentApplicationControl.cs63
1 files changed, 63 insertions, 0 deletions
diff --git a/Tizen.Applications.Common/Tizen.Applications/RecentApplicationControl.cs b/Tizen.Applications.Common/Tizen.Applications/RecentApplicationControl.cs
new file mode 100755
index 0000000..418cef1
--- /dev/null
+++ b/Tizen.Applications.Common/Tizen.Applications/RecentApplicationControl.cs
@@ -0,0 +1,63 @@
+/*
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+using System;
+using System.Collections.Generic;
+using System.Runtime.InteropServices;
+
+namespace Tizen.Applications
+{
+ /// <summary>
+ /// This class provides methods and properties to get information of recent application.
+ /// </summary>
+ public class RecentApplicationControl
+ {
+ private const string LogTag = "Tizen.Applications";
+
+ private readonly string _pkgId;
+
+ internal RecentApplicationControl(String pkgId)
+ {
+ _pkgId = pkgId;
+ }
+
+ /// <summary>
+ /// Deletes the application from recent application list.
+ /// </summary>
+ public void Delete()
+ {
+ Interop.ApplicationManager.ErrorCode err = Interop.ApplicationManager.ErrorCode.None;
+ err = Interop.ApplicationManager.RuaDeleteHistoryWithPkgname(_pkgId);
+ if (err != Interop.ApplicationManager.ErrorCode.None)
+ {
+ throw ApplicationManagerErrorFactory.GetException(err, "Failed to delete application from recent application list.");
+ }
+ }
+
+ /// <summary>
+ /// Delete all recent applicationsfrom recent application list.
+ /// </summary>
+ public static void DeleteAll()
+ {
+ Interop.ApplicationManager.ErrorCode err = Interop.ApplicationManager.ErrorCode.None;
+ err = Interop.ApplicationManager.RuaClearHistory();
+ if (err != Interop.ApplicationManager.ErrorCode.None)
+ {
+ throw ApplicationManagerErrorFactory.GetException(err, "Failed to clear the recent application list.");
+ }
+ }
+ }
+}