]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/misc.h
* Implements playlist toggle button
[vlc] / modules / gui / macosx / misc.h
index 6c1ca219630f99f4f0823932828586c395f52fba..fa8a70509dd9ecbf6c00441667a2ead1237a4cae 100644 (file)
@@ -2,7 +2,7 @@
  * misc.h: code not specific to vlc
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: misc.h,v 1.2 2003/03/13 22:24:17 hartman Exp $
+ * $Id$
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  *
  *****************************************************************************/
 
 /*****************************************************************************
- * VLBrushedMetalImageView
+ * VLCControllerWindow
  *****************************************************************************/
 
-@interface VLBrushedMetalImageView : NSImageView
+@interface VLCControllerWindow : NSWindow
 {
-
+    NSSize o_size_with_playlist;
 }
 
-@end
+- (NSSize)getSizeWithPlaylist;
 
+@end
 
 /*****************************************************************************
- * MPSlider
+ * VLCControllerView
  *****************************************************************************/
 
-@interface MPSlider : NSSlider
+@interface VLCControllerView : NSView
 {
-
 }
 
 @end
 
 /*****************************************************************************
- * MPSliderCell
+ * VLBrushedMetalImageView
  *****************************************************************************/
 
-@interface MPSliderCell : NSSliderCell
+@interface VLBrushedMetalImageView : NSImageView
 {
-    NSColor * _bgColor;
-    NSColor * _knobColor;
-    float _knobThickness;
+
 }
 
-- (void)setBackgroundColor:(NSColor *)newColor;
-- (NSColor *)backgroundColor;
+@end
+
 
-- (void)setKnobColor:(NSColor *)newColor;
-- (NSColor *)knobColor;
+/*****************************************************************************
+ * MPSlider
+ *****************************************************************************/
 
-@end
\ No newline at end of file
+@interface MPSlider : NSSlider
+{
+
+}
+
+@end