diff main/MainWindow.h @ 381:fad5611ef9db macness

Encapsulate itunes-remote functionality into class ITunesSVRemote. Provides context for playback sync etc
author Dan Stowell <dan.stowell@eecs.qmul.ac.uk>
date Mon, 18 Oct 2010 13:59:08 +0100
parents 909cf273bed1
children
line wrap: on
line diff
--- a/main/MainWindow.h	Mon Oct 18 13:29:48 2010 +0100
+++ b/main/MainWindow.h	Mon Oct 18 13:59:08 2010 +0100
@@ -33,6 +33,9 @@
 #include "data/fileio/FileSource.h"
 #include "widgets/LayerTreeDialog.h"
 #include <map>
+#ifdef Q_WS_MAC
+	#include "osx/svitunes.h"
+#endif
 
 class Document;
 class PaneStack;
@@ -282,6 +285,10 @@
     virtual bool shouldCreateNewSessionForRDFAudio(bool *cancel);
     
     virtual void connectLayerEditDialog(ModelDataTableDialog *);
+
+#ifdef Q_WS_MAC
+    ITunesSVRemote *m_iTunes;
+#endif
 };