Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
EditText.Windows.Mobile.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 #if SILICONSTUDIO_PLATFORM_WINDOWS_RUNTIME
4 
5 using System;
6 
7 namespace SiliconStudio.Paradox.UI.Controls
8 {
9  public partial class EditText
10  {
11  private static void InitializeStaticImpl()
12  {
13  }
14 
15  private void InitializeImpl()
16  {
17  throw new NotImplementedException();
18  }
19 
20  private int GetLineCountImpl()
21  {
22  throw new NotImplementedException();
23  }
24 
25  private void OnMaxLinesChangedImpl()
26  {
27  throw new NotImplementedException();
28  }
29 
30  private void OnMinLinesChangedImpl()
31  {
32  throw new NotImplementedException();
33  }
34 
35  private void ActivateEditTextImpl()
36  {
37  throw new NotImplementedException();
38  }
39 
40  private void DeactivateEditTextImpl()
41  {
42  throw new NotImplementedException();
43  }
44 
45  private void OnTouchMoveImpl(TouchEventArgs args)
46  {
47  throw new NotImplementedException();
48  }
49 
50  private void OnTouchDownImpl(TouchEventArgs args)
51  {
52  throw new NotImplementedException();
53  }
54 
55  private void UpdateTextToEditImpl()
56  {
57  throw new NotImplementedException();
58  }
59 
60  private void UpdateInputTypeImpl()
61  {
62  throw new NotImplementedException();
63  }
64 
65  private void UpdateSelectionFromEditImpl()
66  {
67  throw new NotImplementedException();
68  }
69 
70  private void UpdateSelectionToEditImpl()
71  {
72  throw new NotImplementedException();
73  }
74  }
75 }
76 
77 #endif