summaryrefslogtreecommitdiffstats
path: root/src/app/fullScreenAction.cpp
blob: 006164d329190e9fd56ab0b98c1d054a841df77a (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// (C) 2005 Max Howell (max.howell@methylblue.com)
// See COPYING file for licensing information

#include "extern.h"
#include "fullScreenAction.h"
#include <tdelocale.h>
#include <twin.h>
#include <tqwidget.h>
#include "xineEngine.h" //videoWindow()


FullScreenAction::FullScreenAction( TQWidget* window, TDEActionCollection *parent )
      : TDEToggleAction( TQString::null, Key_F, 0, 0, parent, "fullscreen" )
      , m_window( window )
      , m_shouldBeDisabled( false )
      , m_state( 0 )
{
   window->installEventFilter( this );
   setChecked( false );
}

void
FullScreenAction::setChecked( bool setChecked )
{
   TDEToggleAction::setChecked( setChecked );

   m_window->raise();

   const int id = m_window->winId();
   if( setChecked ) {
      setText( i18n("Exit F&ull Screen Mode") );
      setIcon("view-restore");
      m_state = KWin::windowInfo( id ).state();
      KWin::setState( id, NET::FullScreen );
   }
   else {
      setText(i18n("F&ull Screen Mode"));
      setIcon("view-fullscreen");
      KWin::clearState( id, NET::FullScreen );
      KWin::setState( id, m_state ); // get round bug in KWin where it forgets maximisation state
   }

   if( setChecked == false && m_shouldBeDisabled )
      setEnabled( false );
}

void
FullScreenAction::setEnabled( bool setEnabled )
{
   if( setEnabled == false && isChecked() )
      // don't disable the action if we are currently in fullscreen mode
      // as then the user can't exit fullscreen mode! Instead disable it
      // when we next get toggled out of fullscreen mode
      m_shouldBeDisabled = true;

   else {
      //FIXME Codeine specific (because videoWindow isn't the window we control, we control the TDEMainWindow)
      //NOTE also if the videoWindow is hidden at some point, this is broken..
      //TODO new type of actionclass that event filters and is always correct state
      if( setEnabled && reinterpret_cast<TQWidget*>(Codeine::videoWindow())->isHidden() )
         setEnabled = false;

      m_shouldBeDisabled = false;
      TDEToggleAction::setEnabled( setEnabled );
   }
}

bool
FullScreenAction::eventFilter( TQObject *o, TQEvent *e )
{
   if( o == m_window )
      switch( e->type() ) {
         #if TQT_VERSION >= 0x030300
         case TQEvent::WindowStateChange:
         #else
         case TQEvent::ShowFullScreen:
         case TQEvent::ShowNormal:
         case TQEvent::ShowMaximized:
         case TQEvent::ShowMinimized:
         #endif
            if (m_window->isFullScreen() != isChecked())
               slotActivated(); // setChecked( window->isFullScreen()) wouldn't emit signals

            if (m_window->isFullScreen() && !isEnabled()) {
               m_shouldBeDisabled = true;
               setEnabled( true );
            }

            break;

         default:
            ;
      }

   return false;
}