]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/commands/async_queue.hpp
Missing translations.
[vlc] / modules / gui / skins2 / commands / async_queue.hpp
index 06b2e0f620792a1dfdff3199a6572d6dfd2dd1eb..abd246ce0a7c7a414fc746a1ac1745ae0a14f6b2 100644 (file)
@@ -1,11 +1,11 @@
 /*****************************************************************************
  * async_queue.hpp
  *****************************************************************************
- * Copyright (C) 2003 VideoLAN (Centrale Réseaux) and its contributors
+ * Copyright (C) 2003 the VideoLAN team
  * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
- *          Olivier Teulière <ipkiss@via.ecp.fr>
+ *          Olivier Teulière <ipkiss@via.ecp.fr>
  *
  * 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
@@ -19,7 +19,7 @@
  *
  * 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.
  *****************************************************************************/
 
 #ifndef ASYNC_QUEUE_HPP
@@ -44,11 +44,12 @@ class AsyncQueue: public SkinObject
         /// Destroy the instance of AsyncQueue
         static void destroy( intf_thread_t *pIntf );
 
-        /// Add a command in the queue
-        void push( const CmdGenericPtr &rcCommand );
+        /// Add a command in the queue, after having removed the commands
+        /// of the same type already in the queue if needed
+        void push( const CmdGenericPtr &rcCommand, bool removePrev = true );
 
         /// Remove the commands of the given type
-        void remove( const string &rType );
+        void remove( const string &rType , const CmdGenericPtr &rcCommand );
 
         /// Flush the queue and execute the commands
         void flush();
@@ -65,8 +66,8 @@ class AsyncQueue: public SkinObject
         AsyncQueue( intf_thread_t *pIntf );
         virtual ~AsyncQueue();
 
-        /// Callback for the timer
-        static void doFlush( SkinObject *pObj );
+        // Callback to flush the queue
+        DEFINE_CALLBACK( AsyncQueue, Flush );
 };