summaryrefslogtreecommitdiffstats
path: root/macosx/HBTabView.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBTabView.m')
-rw-r--r--macosx/HBTabView.m27
1 files changed, 27 insertions, 0 deletions
diff --git a/macosx/HBTabView.m b/macosx/HBTabView.m
new file mode 100644
index 000000000..f0adc6544
--- /dev/null
+++ b/macosx/HBTabView.m
@@ -0,0 +1,27 @@
+/* HBTabView
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr/>.
+ It may be used under the terms of the GNU General Public License.
+ */
+
+#import "HBTabView.h"
+
+@implementation HBTabView
+
+-(NSDragOperation)draggingEntered:(id<NSDraggingInfo>)sender
+{
+ return [self.dropDelegate draggingEntered:sender];
+}
+
+- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender
+{
+ return [self.dropDelegate performDragOperation:sender];
+}
+
+- (void)draggingExited:(nullable id <NSDraggingInfo>)sender
+{
+ [self.dropDelegate draggingExited:sender];
+}
+
+@end