1 /*
2    Project: MPDCon
3 
4    Copyright (C) 2004
5 
6    Author: Daniel Luederwald
7 
8    Created: 2004-06-03 12:54:16 +0200 by flip
9 
10    This application is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public
12    License as published by the Free Software Foundation; either
13    version 2 of the License, or (at your option) any later version.
14 
15    This application is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    Library General Public License for more details.
19 
20    You should have received a copy of the GNU General Public
21    License along with this library; if not, write to the Free
22    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
23 */
24 
25 #ifndef _OWNSTRINGS_H_
26 #define _OWNSTRINGS_H_
27 
28 static NSString *PlaylistDragType = @"PlaylistDragType";
29 static NSString *CollectionDragType = @"CollectionDragType";
30 
31 static NSString *PlaylistChangedNotification = @"PlaylistChangedNotification";
32 static NSString *SongChangedNotification = @"SongChangedNotification";
33 static NSString *ShownCollectionChangedNotification = @"ShownCollectionChangedNotification";
34 static NSString *DidNotConnectNotification = @"DidNotConnectNotification";
35 static NSString *DidConnectNotification = @"DidConnectNotification";
36 static NSString *PreferencesChangedNotification = @"PreferencesChangedNotification";
37 static NSString *GetTracksNotification = @"GetTracksNotification";
38 static NSString *TracksSendNotification = @"TracksSendNotification";
39 static NSString *KeyEventNotification = @"KeyEventNotification";
40 static NSString *RandomPlaylistFeedDefaultsChangedNotification = @"RandomPlaylistFeedDefaultsChangedNotification";
41 #endif // _OWNSTRINGS_H_
42 
43