]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/macosx.m
Added random, repeat one and repeat all checkboxes to the playlist
[vlc] / modules / gui / macosx / macosx.m
index 72f5d562466f1921a747ae3785557b7e3700b9d3..49243964ed5efa3de9c8fc354e4114a3085e24b4 100644 (file)
@@ -2,7 +2,7 @@
  * macosx.m: MacOS X plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001-2003 VideoLAN
- * $Id: macosx.m,v 1.9 2003/05/09 01:19:43 hartman Exp $
+ * $Id: macosx.m,v 1.15 2003/06/17 16:09:16 gbazin Exp $
  *
  * Authors: Colin Delacroix <colin@zoy.org>
  *          Eugenio Jarosiewicz <ej0@cise.ufl.edu>
@@ -44,28 +44,31 @@ void E_(CloseVideo)   ( vlc_object_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define VDEV_TEXT N_("video device")
+#define VDEV_TEXT N_("Video device")
+#define VDEV_LONGTEXT N_("Choose a number corresponding to " \
+    "a screen in you video device selection menu and this screen " \
+    "will be used by default as the screen for 'fullscreen'.")
 
-#define OPAQUENESS_TEXT N_("opaqueness")
+#define OPAQUENESS_TEXT N_("Opaqueness")
 #define OPAQUENESS_LONGTEXT N_( \
     "Set the transparency of the video output. 1 is non-transparent (default) " \
     "0 is fully transparent.")
     
-#define FLOAT_TEXT N_("float on top")
+#define FLOAT_TEXT N_("Always float on top")
 #define FLOAT_LONGTEXT N_( \
     "Let the video window float on top of other windows.")
 
 vlc_module_begin();
     set_description( _("MacOS X interface, sound and video") );
-    add_submodule();
-        set_capability( "interface", 100 );
-        set_callbacks( E_(OpenIntf), E_(CloseIntf) );
+    set_capability( "interface", 100 );
+    set_callbacks( E_(OpenIntf), E_(CloseIntf) );
     add_submodule();
         set_capability( "video output", 200 );
         set_callbacks( E_(OpenVideo), E_(CloseVideo) );
         add_category_hint( N_("Video"), NULL, VLC_FALSE );
-        add_integer( "macosx-vdev", 0, NULL, VDEV_TEXT, VDEV_TEXT, VLC_FALSE );
-        add_float( "macosx-opaqueness", 1, NULL, OPAQUENESS_TEXT, OPAQUENESS_LONGTEXT, VLC_TRUE );
+        add_integer( "macosx-vdev", 0, NULL, VDEV_TEXT, VDEV_LONGTEXT, VLC_FALSE );
+        add_float_with_range( "macosx-opaqueness", 1, 0, 1, NULL, OPAQUENESS_TEXT,
+            OPAQUENESS_LONGTEXT, VLC_TRUE );
         add_bool( "macosx-float", 0, NULL, FLOAT_TEXT, FLOAT_LONGTEXT, VLC_FALSE );
 vlc_module_end();