You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
codeine/src/app/fullScreenAction.h

28 lines
638 B

// (C) 2005 Max Howell (max.howell@methylblue.com)
// See COPYING file for licensing information
#include <kaction.h>
/**
* @class FullSCreenAction
* @author Max Howell <max.howell@methylblue.com>
* @short Adapted KToggleFullScreenAction, mainly because that class is shit
*/
class FullScreenAction : public KToggleAction
{
public:
FullScreenAction( TQWidget *window, KActionCollection* );
virtual void setChecked( bool );
virtual void setEnabled( bool );
protected:
virtual bool eventFilter( TQObject* o, TQEvent* e );
private:
TQWidget *m_window;
bool m_shouldBeDisabled;
unsigned long m_state;
};