]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/misc.h
* centre fspanel in the lower third of the screen. additionally, switched style mask...
[vlc] / modules / gui / macosx / misc.h
index 24fecc0cabc9168498f82396705f91727d8742f4..f8a8bc3197f69e5ca5121a5a7ef7a09f6e8ea940 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * misc.h: code not specific to vlc
  *****************************************************************************
- * Copyright (C) 2003 VideoLAN
- * $Id: misc.h,v 1.3 2003/11/15 22:42:16 hartman Exp $
+ * Copyright (C) 2003 the VideoLAN team
+ * $Id$
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  *
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
  * VLCControllerWindow
  *****************************************************************************/
 
+
 @interface VLCControllerWindow : NSWindow
 {
 }
 
 @interface MPSlider : NSSlider
 {
-
 }
 
 @end
 
 /*****************************************************************************
- * MPSliderCell
+ * ITSliderCell
  *****************************************************************************/
-
-@interface MPSliderCell : NSSliderCell
+@interface ITSlider : NSSlider
 {
-    NSColor * _bgColor;
-    NSColor * _knobColor;
-    float _knobThickness;
 }
 
-- (void)setBackgroundColor:(NSColor *)newColor;
-- (NSColor *)backgroundColor;
+@end
 
-- (void)setKnobColor:(NSColor *)newColor;
-- (NSColor *)knobColor;
+/*****************************************************************************
+ * ITSliderCell
+ *****************************************************************************/
+@interface ITSliderCell : NSSliderCell
+{
+    NSImage *_knobOff;
+    NSImage *_knobOn;
+    BOOL b_mouse_down;
+}
 
-@end
\ No newline at end of file
+@end