MythTV master
searcheditor.h
Go to the documentation of this file.
1#ifndef SEARCHEDITOR_H
2#define SEARCHEDITOR_H
3
4#include "neteditorbase.h"
5
10{
11 Q_OBJECT
12
13 public:
14 explicit SearchEditor(MythScreenStack *parent,
15 const QString &name = "SearchEditor")
16 : NetEditorBase(parent, name) {}
17
18 protected:
19 bool InsertInDB(GrabberScript *script) override; // NetEditorBase
20 bool RemoveFromDB(GrabberScript *script) override; // NetEditorBase
21 bool FindGrabberInDB(const QString &filename) override; // NetEditorBase
22 bool Matches(bool search, bool tree) override; // NetEditorBase
23};
24
25#endif /* SEARCHEDITOR_H */
bool FindGrabberInDB(const QString &filename) override
bool RemoveFromDB(GrabberScript *script) override
bool Matches(bool search, bool tree) override
bool InsertInDB(GrabberScript *script) override
Definition: searcheditor.cpp:5
SearchEditor(MythScreenStack *parent, const QString &name="SearchEditor")
Definition: searcheditor.h:14