blob: a205aab30123583410af30d4d1ce42890d8cb0ed (
plain)
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
|
/**
* based on event.h,v 1.1.1.1 2006/02/26 14:11:02 lordjaxom
*
* version by Midas
*
*/
#ifndef VDR_BLOCK_EVENT_H
#define VDR_BLOCK_EVENT_H
#include <sys/types.h>
#include <regex.h>
#include <vdr/tools.h>
#include <vdr/config.h>
#define EVLINELENGTH 256
class cEventBlock : public cListObject {
friend class cMenuSetupEditBlock;
private:
char mPattern[EVLINELENGTH];
int mRegularExp;
int mIgnoreCase;
bool mCompiled;
regex_t mExpression;
public:
cEventBlock(void);
cEventBlock(const char *Pattern);
cEventBlock(const cEventBlock &Src);
~cEventBlock();
cEventBlock &operator=(const cEventBlock &Src);
bool Acceptable(const char *Event) const ;
bool Parse(char *s);
bool Compile(void);
bool Save(FILE *f);
static const char *LastTitle;
static const bool *ReplayingRecording;
const char *Pattern(void) const { return mPattern; }
};
class cEventsBlock : public cConfig<cEventBlock> {
public:
bool Acceptable(const char *Event);
cEventsBlock &operator=(const cEventsBlock &Source);
};
extern cEventsBlock EventsBlock;
#endif // VDR_BLOCK_EVENT_H
|