]> git.sesse.net Git - vlc/blobdiff - modules/gui/beos/BeOS.cpp
* include/configuration.h: added a new flag to the configuration stucture to
[vlc] / modules / gui / beos / BeOS.cpp
index b453351f23c36f925214701e96737cda699b04be..92278f1686112da1280c589d5c54173890533dd1 100644 (file)
@@ -2,10 +2,11 @@
  * beos.cpp : BeOS plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: BeOS.cpp,v 1.1 2002/08/04 17:23:43 sam Exp $
+ * $Id: BeOS.cpp,v 1.7 2003/02/20 01:52:46 sigmunau Exp $
  *
  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
+ *          Stephan Aßmus <stippi@yellowbites.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -50,6 +51,28 @@ vlc_module_begin();
     add_submodule();
         set_capability( "interface", 100 );
         set_callbacks( E_(OpenIntf), E_(CloseIntf) );
+        add_integer( "beos-intf-width", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-intf-height", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-intf-xpos", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-intf-ypos", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-playlist-width", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-playlist-height", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-playlist-xpos", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-playlist-ypos", 0, NULL, "", "", VLC_TRUE );
+        add_bool( "beos-playlist-show", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-messages-width", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-messages-height", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-messages-xpos", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-messages-ypos", 0, NULL, "", "", VLC_TRUE );
+        add_bool( "beos-messages-show", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-settings-width", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-settings-height", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-settings-xpos", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-settings-ypos", 0, NULL, "", "", VLC_TRUE );
+        add_bool( "beos-settings-show", 0, NULL, "", "", VLC_TRUE );
+        add_integer( "beos-screenshot-format", 0, NULL, "", "", VLC_TRUE );
+        add_string( "beos-screenshot-path", 0, NULL, "", "", VLC_TRUE );
+        add_bool( "beos-use-dvd-menus", 0, NULL, "", "", VLC_TRUE );
     add_submodule();                                     
         set_capability( "video output", 100 );
         set_callbacks( E_(OpenVideo), E_(CloseVideo) );
@@ -57,4 +80,3 @@ vlc_module_begin();
         set_capability( "audio output", 100 );
         set_callbacks( E_(OpenAudio), E_(CloseAudio) );
 vlc_module_end();
-