]> git.sesse.net Git - vlc/commitdiff
Added random, repeat one and repeat all checkboxes to the playlist
authorBenjamin Pracht <bigben@videolan.org>
Sun, 16 Nov 2003 11:21:48 +0000 (11:21 +0000)
committerBenjamin Pracht <bigben@videolan.org>
Sun, 16 Nov 2003 11:21:48 +0000 (11:21 +0000)
extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
modules/gui/macosx/playlist.h
modules/gui/macosx/playlist.m

index c91bfda6ef6dcf5113e7daa0bfdd2dc277ef8fbc..3030b65728f1cac6fa3b1b446be0d83eab0baa2e 100644 (file)
             LANGUAGE = ObjC; 
             OUTLETS = {
                 "o_ctx_menu" = id; 
+                "o_loop_ckb" = id; 
                 "o_mi_delete" = id; 
                 "o_mi_play" = id; 
                 "o_mi_save_playlist" = id; 
                 "o_mi_selectall" = id; 
+                "o_random_ckb" = id; 
+                "o_repeat_ckb" = id; 
                 "o_status_field" = id; 
                 "o_table_view" = id; 
                 "o_tc_author" = id; 
index f8edbafc7950bbabe055b742bb8ac8e648ef3ac2..74ec9284d6ff96b080f55e0ea50572918753aa80 100644 (file)
@@ -3,15 +3,15 @@
 <plist version="1.0">
 <dict>
        <key>IBDocumentLocation</key>
-       <string>27 143 356 496 0 0 1280 1002 </string>
+       <string>502 132 505 541 0 0 1024 746 </string>
        <key>IBEditorPositions</key>
        <dict>
                <key>1617</key>
                <string>691 686 104 149 0 0 1280 1002 </string>
                <key>29</key>
-               <string>165 930 419 44 0 0 1280 1002 </string>
+               <string>116 681 419 44 0 0 1024 746 </string>
                <key>915</key>
-               <string>439 657 93 99 0 0 1280 1002 </string>
+               <string>344 471 93 99 0 0 1024 746 </string>
        </dict>
        <key>IBFramework Version</key>
        <string>349.0</string>
        <array/>
        <key>IBOpenObjects</key>
        <array>
+               <integer>915</integer>
                <integer>29</integer>
                <integer>21</integer>
+               <integer>1647</integer>
        </array>
        <key>IBSystem Version</key>
        <string>7C107</string>
index edaa16260843325f407223f16c07057c8f82315e..2182239addd5483fbfd618bcac481c435e32e7ce 100644 (file)
Binary files a/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib and b/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib differ
index c6c1290648bda35affae1c679c85dea5a2a11ffc..cba2a3ec5840e6ace0310435df7887a588b0bed8 100644 (file)
@@ -2,7 +2,7 @@
  * playlist.h: MacOS X interface plugin
  *****************************************************************************
  * Copyright (C) 2002-2003 VideoLAN
- * $Id: playlist.h,v 1.12 2003/11/12 01:22:40 hartman Exp $
+ * $Id: playlist.h,v 1.13 2003/11/16 11:21:48 bigben Exp $
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  *          Derk-Jan Hartman <thedj@users.sourceforge.net>
     IBOutlet id o_mi_play;
     IBOutlet id o_mi_delete;
     IBOutlet id o_mi_selectall;
+
+    IBOutlet id o_random_ckb;
+    IBOutlet id o_loop_ckb;
+    IBOutlet id o_repeat_ckb;
 }
 
 - (NSMenu *)menuForEvent:(NSEvent *)o_event;
index 17f9a4637beca5cbbcfa1042d715ffd921d6df20..d3c21dc4f9e0be1b5a6c47e4c5c4dc8850952b2b 100644 (file)
@@ -2,7 +2,7 @@
  * playlist.m: MacOS X interface plugin
  *****************************************************************************
  * Copyright (C) 2002-2003 VideoLAN
- * $Id: playlist.m,v 1.38 2003/11/15 22:42:16 hartman Exp $
+ * $Id: playlist.m,v 1.39 2003/11/16 11:21:48 bigben Exp $
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  *          Derk-Jan Hartman <thedj@users.sourceforge.net>
     [o_mi_selectall setTitle: _NS("Select All")];
     [[o_tc_name headerCell] setStringValue:_NS("Name")];
     [[o_tc_author headerCell] setStringValue:_NS("Author")];
+    [o_random_ckb setTitle: _NS("Random")];
+    [o_loop_ckb setTitle: _NS("Repeat All")];
+    [o_repeat_ckb setTitle: _NS("Repeat One")];
 }
 
 - (BOOL)tableView:(NSTableView *)o_tv