blob: 57117f525eab34b04e455c00c6590b04dfc48db2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 | // Copyright 2005 Max Howell (max.howell@methylblue.com)
// See COPYING file for licensing information
#include <tqtoolbutton.h>
#include "../debug.h"
#include "../mxcl.library.h"
#include "actions.h"
#include "xineEngine.h"
namespace Codeine
{
   PlayAction::PlayAction( TQObject *receiver, const char *slot, TDEActionCollection *ac )
         : TDEToggleAction( i18n("Play"), "media-playback-start", TQt::Key_Space, receiver, slot, ac, "play" )
   {}
   void
   PlayAction::setChecked( bool b )
   {
      if( videoWindow()->state() == Engine::Empty && sender() && TQCString(sender()->className()) == "TDEToolBarButton" ) {
         // clicking play when empty means open PlayMediaDialog, but we have to uncheck the toolbar button
         // as KDElibs sets that checked automatically..
         ((TQToolButton*)sender())->setOn( false );
      }
      else
         TDEToggleAction::setChecked( b );
   }
}
 |