-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin-accessibility.h
More file actions
46 lines (37 loc) · 1.1 KB
/
Copy pathplugin-accessibility.h
File metadata and controls
46 lines (37 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* plugin-accessibility.h: DO subclass specifically for use as
* content.accessibility.
*
* Contact:
* Moonlight List (moonlight-list@lists.ximian.com)
*
* Copyright 2009 Novell, Inc. (http://www.novell.com)
*
* See the LICENSE file included with the distribution for details.
*
*/
#ifndef MOON_PLUGIN_ACCESSIBILITY
#define MOON_PLUGIN_ACCESSIBILITY
#include "dependencyobject.h"
namespace Moonlight {
/* @Namespace=None */
/* @ManagedDependencyProperties=Manual */
/* @ManagedEvents=Manual */
class Accessibility : public DependencyObject {
public:
/* @PropertyType=string,DefaultValue=\"Silverlight Content\" */
const static int TitleProperty;
/* @PropertyType=string,DefaultValue=\"\" */
const static int DescriptionProperty;
/* @PropertyType=string,DefaultValue=\"\" */
const static int ActionDescriptionProperty;
Accessibility ();
void PerformAction ();
// Events you can AddHandler to
const static int PerformActionEvent;
protected:
virtual ~Accessibility ();
};
};
#endif /* MOON_PLUGIN_ACCESSIBILITY */