1 /*
2    Project: MPDCon
3 
4    Copyright (C) 2012
5 
6    Author: sebastian Reitenbach
7 
8    Created: 2012-09-02
9 
10    Lyrics Inspector
11 
12    This application is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public
14    License as published by the Free Software Foundation; either
15    version 2 of the License, or (at your option) any later version.
16 
17    This application is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20    Library General Public License for more details.
21 
22    You should have received a copy of the GNU General Public
23    License along with this library; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
25 */
26 
27 #include <AppKit/AppKit.h>
28 #include "MPDController.h"
29 
30 @interface SongInspector : NSWindowController
31 {
32   id album;
33   id artist;
34   id composer;
35   id date;
36   id disc;
37   id genre;
38   id filename;
39   id comment;
40   id performer;
41   id title;
42   id track;
43 
44   MPDController *mpdController;
45 }
46 
47 + (id) sharedSongInspector;
48 - (void) updateSongInfo;
49 @end
50