Sayonara Player
LibraryDateSearchView.h
1 /* LibraryDateSearchView.h */
2 
3 /* Copyright (C) 2011-2017 Lucio Carreras
4  *
5  * This file is part of sayonara player
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11 
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16 
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef LIBRARYDATESEARCHVIEW_H
22 #define LIBRARYDATESEARCHVIEW_H
23 
24 #include "GUI/Helper/SearchableWidget/SearchableView.h"
25 #include "Helper/Pimpl.h"
26 
27 namespace Library { class DateFilter; }
28 
30  public SearchableListView
31 {
32  Q_OBJECT
34 
35 public:
36  explicit LibraryDateSearchView(QWidget* parent=nullptr);
38 
39  Library::DateFilter get_filter(int row) const;
40  int get_index_by_model_index(const QModelIndex& idx) const override;
41  QModelIndex get_model_index_by_index(int idx) const override;
42 
43 protected:
44  void contextMenuEvent(QContextMenuEvent* e) override;
45 
46 protected slots:
47  void new_clicked();
48  void edit_clicked();
49  void delete_clicked();
50 
51  // SayonaraSelectionView interface
52 public:
53 
54 };
55 
56 #endif // LIBRARYDATESEARCHVIEW_H
Definition: LibraryDateSearchView.h:29
Definition: SearchableView.h:77
Definition: DatabaseAlbums.h:29
The DateFilter class.
Definition: DateFilter.h:38