Fixed searchclients to handle new Google URLs correctly; added GUI
[movie-schedule] / src / data / cinema.h
1 // Copyright 2010 Jochen Becher
2 //
3 // This file is part of MovieSchedule.
4 //
5 // MovieSchedule is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // MovieSchedule is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with MovieSchedule.  If not, see <http://www.gnu.org/licenses/>.
17
18 #ifndef CINEMA_H
19 #define CINEMA_H
20
21 #include "cinemakey.h"
22
23 #include <QString>
24
25 class Cinema
26 {
27 public:
28     Cinema();
29
30     CinemaKey GetKey() const { return CinemaKey(_name, _address); }
31
32     bool IsValid() const { return !_name.isEmpty(); }
33
34     QString GetName() const { return _name; }
35     void SetName(const QString &name) { _name = name; }
36
37     QString GetAddress() const { return _address; }
38     void SetAddress(const QString &address) { _address = address; }
39
40     QString GetMoviesUrl() const { return _movies_url; }
41     void SetMoviesUrl(const QString &movies_url) { _movies_url = movies_url; }
42
43     QString GetTelephone() const { return _telephone; }
44     void SetTelephone(const QString &telephone) { _telephone = telephone; }
45
46 private:
47     QString _name;
48     QString _address;
49     QString _movies_url;
50     QString _telephone;
51 };
52
53 #endif // CINEMA_H