]> git.sesse.net Git - vlc/blobdiff - modules/gui/beos/BeOS.cpp
* store windows sizes in the vlc configuration file
[vlc] / modules / gui / beos / BeOS.cpp
index 9f5f1b13fbc732c7c3468d6cf4783dee1a415863..5fab6b6e46d0a66dfcee57e17ac42fc67fe49a69 100644 (file)
@@ -2,7 +2,7 @@
  * beos.cpp : BeOS plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: BeOS.cpp,v 1.2 2002/09/30 18:30:27 titer Exp $
+ * $Id: BeOS.cpp,v 1.3 2003/01/25 01:03:44 titer Exp $
  *
  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -50,6 +50,15 @@ vlc_module_begin();
     add_submodule();
         set_capability( "interface", 100 );
         set_callbacks( E_(OpenIntf), E_(CloseIntf) );
+        add_integer( "beos-intf-width", 0, NULL, "", "" );
+        add_integer( "beos-intf-height", 0, NULL, "", "" );
+        add_integer( "beos-intf-xpos", 0, NULL, "", "" );
+        add_integer( "beos-intf-ypos", 0, NULL, "", "" );
+        add_integer( "beos-playlist-width", 0, NULL, "", "" );
+        add_integer( "beos-playlist-height", 0, NULL, "", "" );
+        add_integer( "beos-playlist-xpos", 0, NULL, "", "" );
+        add_integer( "beos-playlist-ypos", 0, NULL, "", "" );
+        add_bool( "beos-playlist-show", 0, NULL, "", "" );
     add_submodule();                                     
         set_capability( "video output", 100 );
         set_callbacks( E_(OpenVideo), E_(CloseVideo) );