move ClickableObject to Models 33/284533/1
authorulgal-park <ulgal.park@samsung.com>
Thu, 27 Oct 2022 04:55:30 +0000 (13:55 +0900)
committerdyamy-lee <dyamy.lee@samsung.com>
Fri, 18 Nov 2022 09:10:06 +0000 (18:10 +0900)
Change-Id: Ib084d2e1c7cc068237b18d579e5d2f7f82848aba

packaging/org.tizen.voice-touch-1.0.0.tpk
voice-touch/ClickableObject.cs [deleted file]
voice-touch/Models/ClickableObject.cs [new file with mode: 0644]
voice-touch/Views/GridLayer.cs
voice-touch/Views/TooltipLayer.cs
voice-touch/Views/VoiceTouchViewManager.cs
voice-touch/VoiceTouchMmi/VoiceTouchResult.cs

index 30c5b6574de337ac134dee65bd1f719d2f8230c9..5eda74b0d52a03362c72ad4a7bde559b9f812f8f 100644 (file)
Binary files a/packaging/org.tizen.voice-touch-1.0.0.tpk and b/packaging/org.tizen.voice-touch-1.0.0.tpk differ
diff --git a/voice-touch/ClickableObject.cs b/voice-touch/ClickableObject.cs
deleted file mode 100644 (file)
index ec8d714..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright (c) 2022 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;
-
-namespace VoiceTouch
-{
-    public class ClickableObject
-    {
-        public int idx;
-        public int x;
-        public int y;
-        public int width;
-        public int height;
-        public string uiObjectText;
-
-        public ClickableObject (int idx, int x, int y, int w, int h, String text)
-        {
-            this.idx = idx;
-            this.x = x;
-            this.y = y;
-            this.width = w;
-            this.height = h;
-            this.uiObjectText = text;
-        }
-    }
-}
\ No newline at end of file
diff --git a/voice-touch/Models/ClickableObject.cs b/voice-touch/Models/ClickableObject.cs
new file mode 100644 (file)
index 0000000..e05547b
--- /dev/null
@@ -0,0 +1,41 @@
+/*
+ * Copyright (c) 2022 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;
+
+namespace VoiceTouch.Models
+{
+    public class ClickableObject
+    {
+        public int idx;
+        public int x;
+        public int y;
+        public int width;
+        public int height;
+        public string uiObjectText;
+
+        public ClickableObject (int idx, int x, int y, int w, int h, String text)
+        {
+            this.idx = idx;
+            this.x = x;
+            this.y = y;
+            this.width = w;
+            this.height = h;
+            this.uiObjectText = text;
+        }
+    }
+}
\ No newline at end of file
index 933e95c2659b389ad2a8c11c22e178738fae64e3..b85a7642a59ef300b95bcab31846f0d2fda9363b 100644 (file)
@@ -22,6 +22,7 @@ using Tizen.NUI.BaseComponents;
 using Tizen.NUI.Components;
 using System.Threading.Tasks;
 using VoiceTouch.Common;
+using VoiceTouch.Models;
 
 namespace VoiceTouch.Views
 {
index 37da9458b8e440abb5db717c820305cc1cc3d0d9..21900ca7097919d86f28b222debdeabaed41887f 100644 (file)
@@ -21,6 +21,7 @@ using Tizen.NUI;
 using Tizen.NUI.BaseComponents;
 using Tizen.NUI.Components;
 using VoiceTouch.Common;
+using VoiceTouch.Models;
 
 namespace VoiceTouch.Views
 {
index 17bd661da09635edf29ffe48a7662e3af36fdc5a..b83b2bc27d44db96ba8a43ba089a92fcc293d709 100644 (file)
@@ -21,6 +21,7 @@ using System.Text;
 using VoiceTouch.VoiceTouchMmi;
 using Tizen.NUI;
 using VoiceTouch.Common;
+using VoiceTouch.Models;
 
 namespace VoiceTouch.Views
 {
index c11c5523c790b2dc885a68f2115bf4476e68ddfe..0481e1c014cc65771778372e0fd339952a42a836 100644 (file)
@@ -19,6 +19,7 @@ using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Threading.Tasks;
+using VoiceTouch.Models;
 
 namespace VoiceTouch.VoiceTouchMmi
 {