IVideoSourcePage.cs.svn-base
1.01 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
47
48
49
// Camara Vision
//
// Copyright © Andrew Kirillov, 2005-2006
// andrew.kirillov@gmail.com
//
namespace videosource
{
using System;
/// <summary>
/// IVideoSourcePage interface
/// </summary>
public interface IVideoSourcePage
{
/// <summary>
/// State changed event - notify client if the page is completed
/// </summary>
event EventHandler StateChanged;
/// <summary>
/// Completed property
/// true, if the page is completed and wizard can proceed to next page
/// </summary>
bool Completed { get; }
/// <summary>
/// Display - display the page
/// Wizard call the method after the page was shown
/// </summary>
void Display();
/// <summary>
/// Apply - check and update all variables
/// Return false if something wrong and we want to stay on the page
/// </summary>
bool Apply();
/// <summary>
/// Get configuration object
/// </summary>
object GetConfiguration();
/// <summary>
/// Set configuration
/// </summary>
void SetConfiguration(object config);
}
}