1 //
2 // IAccessible.cs: Interface for accessible elements
3 //
4 // What a horrible interface.
5 //
6 
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining
9 // a copy of this software and associated documentation files (the
10 // "Software"), to deal in the Software without restriction, including
11 // without limitation the rights to use, copy, modify, merge, publish,
12 // distribute, sublicense, and/or sell copies of the Software, and to
13 // permit persons to whom the Software is furnished to do so, subject to
14 // the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be
17 // included in all copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 //
27 
28 namespace Accessibility {
29 
30 	public interface IAccessible {
31 
accDoDefaultAction(object childID)32 		void   accDoDefaultAction (object childID);
accHitTest(int xLeft, int yTop)33 		object accHitTest (int xLeft, int yTop);
accLocation(out int pxLeft, out int pyTop, out int pcxWidth, out int pcyHeight, object childID)34 		void   accLocation (out int pxLeft, out int pyTop, out int pcxWidth, out int pcyHeight, object childID);
accNavigate(int navDir, object childID)35 		object accNavigate(int navDir, object childID);
accSelect(int flagsSelect, object childID)36 		void   accSelect(int flagsSelect, object childID);
get_accChild(object childID)37 		object get_accChild(object childID);
get_accDefaultAction(object childID)38 		string get_accDefaultAction(object childID);
get_accDescription(object childID)39 		string get_accDescription(object childID);
get_accHelp(object childID)40 		string get_accHelp(object childID);
get_accHelpTopic(out string pszHelpFile,object childID)41 		int    get_accHelpTopic(out string pszHelpFile,object childID);
get_accKeyboardShortcut(object childID)42 		string get_accKeyboardShortcut(object childID);
get_accName(object childID)43 		string get_accName(object childID);
get_accRole(object childID)44 		object get_accRole(object childID);
get_accState(object childID)45 		object get_accState(object childID);
get_accValue(object childID)46 		string get_accValue(object childID);
set_accName(object childID, string newName)47 		void   set_accName(object childID, string newName);
set_accValue(object childID, string newValue)48 		void   set_accValue(object childID, string newValue);
49 
50 
51 		int    accChildCount { get; }
52 		object accFocus { get; }
53 		object accParent { get;}
54 		object accSelection { get; }
55 	}
56 }
57