format: shorten date by simple truncation
[ncmpcpp.git] / src / interfaces.h
blobf18068e1355329d0b8194a1aa9ef5b054dc7fd1c
1 /***************************************************************************
2 * Copyright (C) 2008-2014 by Andrzej Rybczak *
3 * electricityispower@gmail.com *
4 * *
5 * This program 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 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program 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 this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #ifndef NCMPCPP_INTERFACES_H
22 #define NCMPCPP_INTERFACES_H
24 #include <boost/range/detail/any_iterator.hpp>
25 #include <boost/tuple/tuple.hpp>
26 #include <string>
27 #include "enums.h"
28 #include "gcc.h"
29 #include "screen.h"
30 #include "song.h"
32 struct Searchable
34 virtual bool allowsSearching() = 0;
35 virtual void setSearchConstraint(const std::string &constraint) = 0;
36 virtual void clearConstraint() = 0;
37 virtual bool find(SearchDirection direction, bool wrap, bool skip_current) = 0;
40 struct HasSongs
42 virtual bool addItemToPlaylist() = 0;
43 virtual std::vector<MPD::Song> getSelectedSongs() = 0;
46 struct HasColumns
48 virtual bool previousColumnAvailable() = 0;
49 virtual void previousColumn() = 0;
51 virtual bool nextColumnAvailable() = 0;
52 virtual void nextColumn() = 0;
55 struct Tabbable
57 Tabbable() : m_previous_screen(0) { }
59 void switchToPreviousScreen() const {
60 if (m_previous_screen)
61 m_previous_screen->switchTo();
63 void setPreviousScreen(BaseScreen *screen) {
64 m_previous_screen = screen;
66 BaseScreen *previousScreen() const {
67 return m_previous_screen;
70 private:
71 BaseScreen *m_previous_screen;
74 #endif // NCMPCPP_INTERFACES_H