aboutsummaryrefslogtreecommitdiff
path: root/src/osx/CocoaInterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osx/CocoaInterface.h')
-rw-r--r--src/osx/CocoaInterface.h73
1 files changed, 73 insertions, 0 deletions
diff --git a/src/osx/CocoaInterface.h b/src/osx/CocoaInterface.h
new file mode 100644
index 0000000000..9987243541
--- /dev/null
+++ b/src/osx/CocoaInterface.h
@@ -0,0 +1,73 @@
+/*
+ * Copyright (C) 2005-2013 Team XBMC
+ * http://xbmc.org
+ *
+ * This Program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This Program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with XBMC; see the file COPYING. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ */
+#ifndef _OSX_INTERFACE_H_
+#define _OSX_INTERFACE_H_
+
+#include <string>
+#include "utils/StdString.h"
+#include "AutoPool.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+ // DisplayLink
+ //
+ bool Cocoa_CVDisplayLinkCreate(void *displayLinkcallback, void *displayLinkContext);
+ void Cocoa_CVDisplayLinkRelease(void);
+ void Cocoa_CVDisplayLinkUpdate(void);
+ double Cocoa_GetCVDisplayLinkRefreshPeriod(void);
+
+ // AppleScript
+ //
+ void Cocoa_DoAppleScript(const char* scriptSource);
+ void Cocoa_DoAppleScriptFile(const char* filePath);
+
+ // Application support
+ //
+ const char* Cocoa_GetIconFromBundle(const char *_bundlePath, const char *_iconName);
+
+ // Devices
+ //
+ char* Cocoa_MountPoint2DeviceName(char *path);
+ bool Cocoa_GetVolumeNameFromMountPoint(const char *mountPoint, CStdString &volumeName);
+
+ // Mouse.
+ //
+ void Cocoa_HideMouse();
+ void Cocoa_ShowMouse();
+ void Cocoa_HideDock();
+
+ // Version.
+ //
+ bool Cocoa_GPUForDisplayIsNvidiaPureVideo3();
+ int Cocoa_GetOSVersion();
+
+
+ void Cocoa_MakeChildWindow();
+ void Cocoa_DestroyChildWindow();
+
+ const char *Cocoa_Paste() ;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif