forked from ARGUS-TV/ARGUS-TV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindowId.cs
92 lines (79 loc) · 2.71 KB
/
WindowId.cs
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#region Copyright (C) 2007-2014 ARGUS TV
/*
* Copyright (C) 2007-2014 ARGUS TV
* http://www.argus-tv.com
*
* 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
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Make; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
* http://www.gnu.org/copyleft/gpl.html
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
using MediaPortal.GUI.Library;
namespace ArgusTV.UI.MediaPortal
{
internal static class WindowId
{
public static int TvHome
{
get { return (int)GUIWindow.Window.WINDOW_TV; }
}
public static int RadioHome
{
get { return (int)GUIWindow.Window.WINDOW_RADIO; }
}
public static int TvGuide
{
get { return (int)GUIWindow.Window.WINDOW_TVGUIDE; }
}
public static int RadioGuide
{
get { return (int)GUIWindow.Window.WINDOW_RADIO_GUIDE; }
}
public static int TvGuideDialog
{
get { return (int)GUIWindow.Window.WINDOW_DIALOG_TVGUIDE; }
}
public static int ProgramInfo
{
get { return (int)GUIWindow.Window.WINDOW_TV_PROGRAM_INFO; }
}
public static int RecordedTv
{
get { return (int)GUIWindow.Window.WINDOW_RECORDEDTV; }
}
public static int Teletext
{
get { return (int)GUIWindow.Window.WINDOW_TELETEXT; }
}
public static int RecordedTvInfo
{
get { return (int)GUIWindow.Window.WINDOW_RECORDEDTV; }
}
public const int UpcomingTvPrograms = 49848;
public const int UpcomingRadioPrograms = 49847;
public const int ActiveRecordings = 49849;
public const int TvGuideSearch = 49850;
public const int RadioGuideSearch = 49851;
public const int RecordedRadio = 49852;
public const int ManualShedule = 49853;
public const int SettingsHome = 49854;
public const int ServerSettings = 49855;
public const int ChannelManagment = 49856;
public const int ClientSettings = 49857;
public const int TunerSettings = 49858;
}
}