]> git.vomp.tv Git - vompclient-marten.git/blob - remotelinux.h
Resume as default patch from dingo35
[vompclient-marten.git] / remotelinux.h
1 /*
2     Copyright 2004-2005 Chris Tallon; 2012 Marten Richter
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef REMOTELINUX_H
22 #define REMOTELINUX_H
23
24 #include <stdio.h>
25
26 #include "defines.h"
27 #include "log.h"
28 #include "remote.h"
29
30 #include <vector>
31 #include <libcec/cec.h>
32
33
34
35
36
37 class RemoteLinux : public Remote
38 {
39   public:
40     RemoteLinux();
41     virtual ~RemoteLinux();
42
43     int init(char *devName);
44     int shutdown();
45     int getDevice();
46     UCHAR getButtonPress(int how);
47     void clearBuffer();
48   //  void Signal();
49
50 //      void SendPower();
51     void InitHWCListwithDefaults();
52     const char*HardcodedTranslateStr(UCHAR command);
53     char* HCWDesc(ULLONG hcw);
54     
55     bool loadOptionsfromServer(VDR* vdr);
56     bool saveOptionstoServer();
57     bool addOptionsToPanes(int panenumber,Options *options,WOptionPane* pane);
58     bool handleOptionChanges(Option* option);
59
60     bool mayHaveFewButtons() {return true;};
61
62     virtual bool handlesVolume() {return cechandlesvolume;};
63     virtual void volumeUp();
64     virtual void volumeDown();
65     virtual void volumeMute();
66
67     int initCec();
68     void deinitCec();
69
70
71
72   private: 
73     int initted;
74         bool signal;
75         int curcec;
76     bool hascurcec;
77     bool cechandlesvolume;
78
79     UCHAR TranslateHWCFixed(ULLONG code);
80     void InitKeymap();
81     vector<int> devices;
82     int num_loop;
83
84     CEC::ICECAdapter * cec_adap;
85     CEC::libcec_configuration cec_config;
86     CEC::ICECCallbacks cec_callbacks;
87
88     void incomingCECkey(int keys);
89
90         static int cecLogMessage(void *param, const CEC::cec_log_message &message);
91         static int cecKeyPress(void*param, const CEC::cec_keypress &key);
92         static int cecCommand(void *param, const CEC::cec_command &command);
93         static int cecConfigurationChanged(void *param, const CEC::libcec_configuration &config);
94
95 };
96
97 #endif
98