OSDN Git Service

デバックコードを追加した
[fooeditengine/FooEditEngine.git] / Core / Automaion / FooTextBoxAutomationPeer.cs
1 /*
2  * Copyright (C) 2013 FooProject
3  * * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
5
6  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of 
7  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
8
9 You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
10  */
11 using System;
12 using System.Collections.Generic;
13 using System.Linq;
14 using System.Text;
15 using System.Text.RegularExpressions;
16 using System.Threading.Tasks;
17 #if METRO || WINDOWS_UWP
18 using Windows.UI.Xaml;
19 using Windows.UI.Xaml.Media;
20 using Windows.UI.Xaml.Automation;
21 using Windows.UI.Xaml.Automation.Peers;
22 using Windows.UI.Xaml.Automation.Provider;
23 using Windows.UI.Xaml.Automation.Text;
24 #if METRO
25 using FooEditEngine.Metro;
26 #else
27 using FooEditEngine.UWP;
28 #endif
29 #endif
30 #if WPF
31 using System.Windows.Automation;
32 using System.Windows.Automation.Peers;
33 using System.Windows.Automation.Provider;
34 using System.Windows.Automation.Text;
35 using FooEditEngine.WPF;
36 #endif
37
38 namespace FooEditEngine
39 {
40 #if ENABLE_AUTMATION
41     /// <summary>
42     /// Automation Peer class for CustomInputBox2.  
43     /// 
44     /// Note: The difference between this and CustomControl1AutomationPeer is that this one implements
45     /// Text Pattern (ITextProvider) and Value Pattern (IValuePattern) interfaces.  So Touch keyboard shows 
46     /// automatically when user taps on the control with Touch or Pen.
47     /// </summary>
48     sealed class FooTextBoxAutomationPeer : FrameworkElementAutomationPeer, ITextProvider, IValueProvider
49     {
50         private FooTextBox fooTextBox;
51         private string accClass = "FooTextBox";
52
53         /// <summary>
54         /// 
55         /// </summary>
56         /// <param name="owner"></param>
57         public FooTextBoxAutomationPeer(FooTextBox owner)
58             : base(owner)
59         {
60             this.fooTextBox = owner;
61         }
62
63         public void OnNotifyTextChanged()
64         {
65             this.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextChanged);
66         }
67
68         public void OnNotifyCaretChanged()
69         {
70             this.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextSelectionChanged);
71         }
72
73 #if METRO || WINDOWS_UWP
74         /// <summary>
75         /// Override GetPatternCore to return the object that supports the specified pattern.  In this case the Value pattern, Text
76         /// patter and any base class patterns.
77         /// </summary>
78         /// <param name="patternInterface"></param>
79         /// <returns>the object that supports the specified pattern</returns>
80         protected override object GetPatternCore(PatternInterface patternInterface)
81         {
82             if (patternInterface == PatternInterface.Value)
83             {
84                 return this;
85             }
86             else if (patternInterface == PatternInterface.Text)
87             {
88                 return this;
89             }
90             return base.GetPatternCore(patternInterface);
91         }
92 #endif
93 #if WPF
94         public override object GetPattern(PatternInterface patternInterface)
95         {
96             if (patternInterface == PatternInterface.Value)
97             {
98                 return this;
99             }
100             else if (patternInterface == PatternInterface.Text)
101             {
102                 return this;
103             }
104             return base.GetPattern(patternInterface);
105         }
106 #endif
107
108         protected override string GetAutomationIdCore()
109         {
110             return this.accClass;
111         }
112
113         /// <summary>
114         /// Override GetClassNameCore and set the name of the class that defines the type associated with this control.
115         /// </summary>
116         /// <returns>The name of the control class</returns>
117         protected override string GetClassNameCore()
118         {
119             return this.accClass;
120         }
121
122         protected override AutomationControlType GetAutomationControlTypeCore()
123         {
124             return AutomationControlType.Edit;
125         }
126
127         protected override bool IsContentElementCore()
128         {
129             return true;
130         }
131
132         protected override bool IsKeyboardFocusableCore()
133         {
134             return true;
135         }
136         
137 #if METRO || WINDOWS_UWP
138         protected override Windows.Foundation.Rect GetBoundingRectangleCore()
139         {
140             double scale = Util.GetScale();
141             return new Windows.Foundation.Rect(0, 0, this.fooTextBox.ActualWidth * scale, this.fooTextBox.ActualHeight * scale);
142         }
143 #endif
144 #if WPF
145         protected override System.Windows.Rect GetBoundingRectangleCore()
146         {
147             System.Windows.Point left = this.fooTextBox.PointToScreen(new System.Windows.Point(0, 0));
148             System.Windows.Point bottom = this.fooTextBox.PointToScreen(new System.Windows.Point(this.fooTextBox.ActualWidth, this.fooTextBox.ActualHeight));
149             return new System.Windows.Rect(left, bottom);
150         }
151 #endif
152
153     #region Implementation for ITextPattern interface
154         // Complete implementation of the ITextPattern is beyond the scope of this sample.  The implementation provided
155         // is specific to this sample's custom control, so it is unlikely that they are directly transferable to other 
156         // custom control.
157
158         ITextRangeProvider ITextProvider.DocumentRange
159         {
160             // A real implementation of this method is beyond the scope of this sample.
161             // If your custom control has complex text involving both readonly and non-readonly ranges, 
162             // it will need a smarter implementation than just returning a fixed range
163             get
164             {
165                 return new FooTextBoxRangeProvider(this.fooTextBox, this);
166             }
167         }
168
169         ITextRangeProvider[] ITextProvider.GetSelection()
170         {
171             ITextRangeProvider[] ret = new ITextRangeProvider[1];
172             int selStart = this.fooTextBox.Selection.Index;
173             int selLength = this.fooTextBox.Selection.Length;
174             ret[0] = new FooTextBoxRangeProvider(this.fooTextBox, selStart, selLength, this);
175             return ret;
176         }
177
178         ITextRangeProvider[] ITextProvider.GetVisibleRanges()
179         {
180             ITextRangeProvider[] ret = new ITextRangeProvider[1];
181             if (this.fooTextBox.LayoutLineCollection.Count == 0)
182             {
183                 ret[0] = new FooTextBoxRangeProvider(this.fooTextBox, 0, 0, this);
184             }
185             else
186             {
187 #if METRO || WINDOWS_UWP
188                 int startIndex = this.fooTextBox.GetIndexFromPostion(new Windows.Foundation.Point(0,0));
189                 int endIndex = this.fooTextBox.GetIndexFromPostion(new Windows.Foundation.Point(this.fooTextBox.ActualWidth, this.fooTextBox.ActualHeight));
190 #endif
191 #if WPF
192                 int startIndex = this.fooTextBox.GetIndexFromPostion(new System.Windows.Point(0, 0));
193                 int endIndex = this.fooTextBox.GetIndexFromPostion(new System.Windows.Point(this.fooTextBox.ActualWidth, this.fooTextBox.ActualHeight));
194 #endif
195                 ret[0] = new FooTextBoxRangeProvider(this.fooTextBox, startIndex, endIndex - startIndex, this);
196             }
197             return ret;
198         }
199
200         ITextRangeProvider ITextProvider.RangeFromChild(IRawElementProviderSimple childElement)
201         {
202             return new FooTextBoxRangeProvider(this.fooTextBox,0,0, this);
203         }
204
205 #if METRO || WINDOWS_UWP
206         ITextRangeProvider ITextProvider.RangeFromPoint(Windows.Foundation.Point screenLocation)
207         {
208             Point pt = Util.GetClientPoint(screenLocation, this.fooTextBox);
209
210             int index = this.fooTextBox.GetIndexFromPostion(pt);
211             int length = 1;
212             if (index == this.fooTextBox.Document.Length)
213                 length = 0;
214             
215             return new FooTextBoxRangeProvider(this.fooTextBox, index, length, this);
216         }
217 #endif
218 #if WPF
219         ITextRangeProvider ITextProvider.RangeFromPoint(System.Windows.Point screenLocation)
220         {
221             System.Windows.Point pt = this.fooTextBox.PointFromScreen(screenLocation);
222
223             int index = this.fooTextBox.GetIndexFromPostion(pt);
224             int length = 1;
225             if (index == this.fooTextBox.Document.Length)
226                 length = 0;
227
228             return new FooTextBoxRangeProvider(this.fooTextBox, index, length, this);
229         }
230 #endif
231
232         SupportedTextSelection ITextProvider.SupportedTextSelection
233         {
234             get { return SupportedTextSelection.Single; }
235         }
236
237     #endregion
238
239     #region Implementation for IValueProvider interface
240         // Complete implementation of the IValueProvider is beyond the scope of this sample.  The implementation provided
241         // is specific to this sample's custom control, so it is unlikely that they are directly transferable to other 
242         // custom control.
243
244         /// <summary>
245         /// The value needs to be false for the Touch keyboard to be launched automatically because Touch keyboard
246         /// does not appear when the input focus is in a readonly UI control.
247         /// </summary>
248         bool IValueProvider.IsReadOnly
249         {
250             get { return false; }
251         }
252
253         void IValueProvider.SetValue(string value)
254         {
255             string oldText = this.fooTextBox.Document.ToString(0);
256             this.fooTextBox.Document.Replace(0,this.fooTextBox.Document.Length,value);
257             this.RaisePropertyChangedEvent(ValuePatternIdentifiers.ValueProperty, oldText, this.fooTextBox.Document.ToString(0));
258         }
259
260         string IValueProvider.Value
261         {
262             get
263             {
264                 return this.fooTextBox.Document.ToString(0,this.fooTextBox.Document.Length);
265             }
266         }
267
268     #endregion //Implementation for IValueProvider interface
269
270         public IRawElementProviderSimple GetRawElementProviderSimple()
271         {
272             return ProviderFromPeer(this);
273         }
274     }
275
276     /// <summary>
277     /// A minimal implementation of ITextRangeProvider, used by CustomControl2AutomationPeer
278     /// A real implementation is beyond the scope of this sample
279     /// </summary>
280     sealed class FooTextBoxRangeProvider : ITextRangeProvider
281     {
282         private FooTextBox textbox;
283         private FooTextBoxAutomationPeer _peer;
284         private int start, end;
285
286         public FooTextBoxRangeProvider(FooTextBox textbox, FooTextBoxAutomationPeer peer)
287             : this(textbox,0,textbox.Document.Length,peer)
288         {
289         }
290         public FooTextBoxRangeProvider(FooTextBox textbox, int start, int length, FooTextBoxAutomationPeer peer)
291         {
292             this.textbox = textbox;
293             this.start = start;
294             this.end = start + length;
295             _peer = peer;
296         }
297
298         public void AddToSelection()
299         {
300             throw new InvalidOperationException();
301         }
302
303         public ITextRangeProvider Clone()
304         {
305             return new FooTextBoxRangeProvider(this.textbox,this.start,this.end - this.start, _peer);
306         }
307
308         public bool Compare(ITextRangeProvider o)
309         {
310             FooTextBoxRangeProvider other = o as FooTextBoxRangeProvider;
311             if (other == null)
312                 throw new ArgumentNullException("null以外の値を指定してください");
313             if (this.start == other.start && this.end == other.end)
314                 return true;
315             else
316                 return false;
317         }
318
319         public int CompareEndpoints(TextPatternRangeEndpoint endpoint, ITextRangeProvider targetRange, TextPatternRangeEndpoint targetEndpoint)
320         {
321             FooTextBoxRangeProvider other = targetRange as FooTextBoxRangeProvider;
322             
323             if (other == null)
324                 throw new ArgumentException("");
325
326             if (endpoint == TextPatternRangeEndpoint.Start)
327             {
328                 if (targetEndpoint == TextPatternRangeEndpoint.Start)
329                     return this.Compare(this.start,other.start);
330                 if(targetEndpoint == TextPatternRangeEndpoint.End)
331                     return this.Compare(this.start,other.end);
332             }
333             if (endpoint == TextPatternRangeEndpoint.End)
334             {
335                 if (targetEndpoint == TextPatternRangeEndpoint.Start)
336                     return this.Compare(this.start, other.end);
337                 if (targetEndpoint == TextPatternRangeEndpoint.End)
338                     return this.Compare(this.end, other.end);
339             }
340             throw new ArgumentException("endpointに未知の値が指定されました");
341         }
342
343         int Compare(int self, int other)
344         {
345             if (self < other)
346                 return -1;
347             else if (self > other)
348                 return 1;
349             else
350                 return 0;
351         }
352
353         public void ExpandToEnclosingUnit(TextUnit unit)
354         {
355             if (unit == TextUnit.Character)
356             {
357                 if (this.start == this.end)
358                 {
359                     if (this.start < this.textbox.Document.Length)
360                         this.end += 1;
361                 }
362                 return;
363             }
364             if (unit == TextUnit.Format || unit == TextUnit.Word || unit == TextUnit.Line)
365             {
366                 LineToIndexTable layoutLineCollection = this.textbox.LayoutLineCollection;
367                 int row = layoutLineCollection.GetLineNumberFromIndex(this.start);
368                 this.start = layoutLineCollection.GetIndexFromLineNumber(row);
369                 this.end = this.start + layoutLineCollection.GetLengthFromLineNumber(row);
370                 return;
371             }
372             if (unit == TextUnit.Paragraph || unit == TextUnit.Page || unit == TextUnit.Document)
373             {
374                 this.start = 0;
375                 this.end = this.textbox.Document.Length;
376                 return;
377             }
378             throw new NotImplementedException();
379         }
380
381         public ITextRangeProvider FindAttribute(int attribute, Object value, bool backward)
382         {
383             return null;
384         }
385
386         public ITextRangeProvider FindText(String text, bool backward, bool ignoreCase)
387         {
388             if (backward)
389                 throw new NotImplementedException();
390             textbox.Document.SetFindParam(text, false, ignoreCase ? RegexOptions.IgnoreCase : RegexOptions.None);
391             IEnumerator<SearchResult> it = textbox.Document.Find();
392             if (it.MoveNext())
393             {
394                 SearchResult sr = it.Current;
395                 return new FooTextBoxRangeProvider(this.textbox, sr.Start, sr.End - sr.Start + 1, _peer);
396             }
397             return null;
398         }
399
400         public Object GetAttributeValue(int attribute)
401         {
402             return null;
403         }
404
405 #if METRO || WINDOWS_UWP
406         public void GetBoundingRectangles(out double[] rectangles)
407 #endif
408 #if WPF
409         public double[] GetBoundingRectangles()
410 #endif
411         {
412             LineToIndexTable layoutLineCollection = this.textbox.LayoutLineCollection;
413             TextPoint topLeft = layoutLineCollection.GetTextPointFromIndex(this.start);
414             TextPoint bottomRight = this.textbox.LayoutLineCollection.GetTextPointFromIndex(IsNewLine(this.end) ? this.end - 1 : this.end);
415
416
417 #if METRO || WINDOWS_UWP
418             float dpi;
419             Util.GetDpi(out dpi,out dpi);
420             double scale = dpi / 96;
421             Point topLeftPos = this.textbox.GetPostionFromTextPoint(topLeft);
422             Point bottomRightPos = this.textbox.GetPostionFromTextPoint(bottomRight);
423             topLeftPos = topLeftPos.Scale(scale);
424             bottomRightPos = bottomRightPos.Scale(scale);
425 #endif
426 #if WPF
427             System.Windows.Point topLeftPos = this.textbox.GetPostionFromTextPoint(topLeft);
428             System.Windows.Point bottomRightPos = this.textbox.GetPostionFromTextPoint(bottomRight);
429             topLeftPos = this.textbox.PointToScreen(topLeftPos);
430             bottomRightPos = this.textbox.PointToScreen(bottomRightPos);
431 #endif
432
433             double width = bottomRightPos.X - topLeftPos.X;
434             if (width == 0)
435                 width = 1;
436             Rectangle rect = new Rectangle(topLeftPos.X, topLeftPos.Y,
437                  width,
438                  bottomRightPos.Y - topLeftPos.Y + layoutLineCollection.GetLayout(bottomRight.row).Height);
439
440 #if METRO || WINDOWS_UWP
441             rectangles = new double[4]{
442                 rect.X,
443                 rect.Y,
444                 rect.Width,
445                 rect.Height
446             };
447 #endif
448 #if WPF
449             return new double[4]{
450                 rect.X,
451                 rect.Y,
452                 rect.Width,
453                 rect.Height
454             };
455 #endif
456         }
457
458         bool IsNewLine(int index)
459         {
460             if (this.textbox.Document.Length > 0)
461                 return this.textbox.Document[index == 0 ? 0 : index - 1] == Document.NewLine;
462             else
463                 return false;
464         }
465
466         public IRawElementProviderSimple[] GetChildren()
467         {
468             return new IRawElementProviderSimple[0];
469         }
470
471         public IRawElementProviderSimple GetEnclosingElement()
472         {
473             return _peer.GetRawElementProviderSimple();
474         }
475
476         public String GetText(int maxLength)
477         {
478             if (this.textbox.Document.Length == 0)
479                 return "";
480             int length = this.end - this.start;
481             if (maxLength < 0)
482                 return this.textbox.Document.ToString(this.start, length);
483             else
484                 return this.textbox.Document.ToString(this.start, (int)Math.Min(length, maxLength));
485         }
486
487         public int Move(TextUnit unit, int count)
488         {
489             if (count == 0)
490                 return 0;
491             switch (unit)
492             {
493                 case TextUnit.Character:
494                     {
495                         int moved;
496                         this.start = this.MoveEndpointByCharacter(this.start,count,out moved);
497                         this.end = this.start + 1;
498                         return moved;
499                     }
500                 case TextUnit.Format:
501                 case TextUnit.Word:
502                 case TextUnit.Line:
503                     {
504                         return this.MoveEndPointByLine(this.start, count, out this.start, out this.end);
505                     }
506                 case TextUnit.Paragraph:
507                 case TextUnit.Page:
508                 case TextUnit.Document:
509                     {
510                         this.start = 0;
511                         this.end = this.textbox.Document.Length;
512                         return 1;
513                     }
514             }
515             throw new NotImplementedException();
516         }
517
518         public void MoveEndpointByRange(TextPatternRangeEndpoint endpoint, ITextRangeProvider targetRange, TextPatternRangeEndpoint targetEndpoint)
519         {
520             FooTextBoxRangeProvider other = targetRange as FooTextBoxRangeProvider;
521
522             if (other == null)
523                 throw new ArgumentException("");
524
525             if (endpoint == TextPatternRangeEndpoint.Start)
526             {
527                 if (targetEndpoint == TextPatternRangeEndpoint.Start)
528                     this.start = other.start;
529                 if (targetEndpoint == TextPatternRangeEndpoint.End)
530                     this.start = other.end;
531                 if (this.start > this.end)
532                     this.end = this.start;
533                 return;
534             }
535             if (endpoint == TextPatternRangeEndpoint.End)
536             {
537                 if (targetEndpoint == TextPatternRangeEndpoint.Start)
538                     this.end = other.start;
539                 if (targetEndpoint == TextPatternRangeEndpoint.End)
540                     this.end = other.end;
541                 return;
542             }
543             throw new ArgumentException("endpointに未知の値が指定されました");
544         }
545
546         public int MoveEndpointByUnit(TextPatternRangeEndpoint endpoint, TextUnit unit, int count)
547         {
548             if (count == 0)
549                 return 0;
550             int moved = 0;
551             if (unit == TextUnit.Character)
552             {
553                 if (endpoint == TextPatternRangeEndpoint.Start)
554                 {
555                     this.start = this.MoveEndpointByCharacter(this.start, count, out moved);
556                     if(this.start > this.end)
557                         this.end = this.start;
558                 }
559                 else if (endpoint == TextPatternRangeEndpoint.End)
560                 {
561                     this.end = this.MoveEndpointByCharacter(this.end, count, out moved);
562                     if (this.end < this.start)
563                         this.start = this.end;
564                 }
565             }
566             if (unit == TextUnit.Format || unit == TextUnit.Word || unit == TextUnit.Line)
567             {
568                 if (endpoint == TextPatternRangeEndpoint.Start)
569                     return this.MoveEndPointByLine(this.start, count, out this.start, out this.end);
570                 else if (endpoint == TextPatternRangeEndpoint.End)
571                     return this.MoveEndPointByLine(this.end, count, out this.start, out this.end);
572             }
573             if (unit == TextUnit.Paragraph || unit == TextUnit.Page || unit == TextUnit.Document)
574             {
575                 this.start = 0;
576                 this.end = this.textbox.Document.Length - 1;
577                 moved = 1;
578             }
579             return moved;
580         }
581
582         int MoveEndpointByCharacter(int index, int count,out int moved)
583         {
584             int newIndex = index + count - 1;
585             if (newIndex > this.textbox.Document.Length)
586                 newIndex = this.textbox.Document.Length;
587             if (newIndex < 0)
588                 newIndex = 0;
589             moved = newIndex - index;
590             return newIndex;
591         }
592
593         int MoveEndPointByLine(int index, int count,out int newStartInex,out int newEndInex)
594         {
595             LineToIndexTable layoutLineCollection = this.textbox.LayoutLineCollection;
596             Controller controller = this.textbox.Controller;
597             TextPoint currentPoint = layoutLineCollection.GetTextPointFromIndex(index);
598             TextPoint newPoint = controller.GetTextPointAfterMoveLine(count, currentPoint);
599             int lineLength = layoutLineCollection.GetLengthFromLineNumber(newPoint.row);
600             newStartInex = layoutLineCollection.GetIndexFromLineNumber(newPoint.row);
601             newEndInex = newStartInex + lineLength;
602             return newPoint.row - currentPoint.row;
603         }
604
605         public void RemoveFromSelection()
606         {
607             throw new InvalidOperationException();
608         }
609
610         public void ScrollIntoView(bool alignToTop)
611         {
612             int row = this.textbox.LayoutLineCollection.GetLineNumberFromIndex(alignToTop ? this.start : this.end);
613             this.textbox.ScrollIntoView(row, alignToTop);
614         }
615
616         public void Select()
617         {
618             this.textbox.Select(this.start, this.end - this.start + 1);
619         }
620     }
621 #endif
622 }