fullscreen_part.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2003 by Roberto Raggi * 00003 * roberto@kdevelop.org * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 ***************************************************************************/ 00011 00012 #ifndef __KDEVPART_FULLSCREEN_H__ 00013 #define __KDEVPART_FULLSCREEN_H__ 00014 00015 #include <qguardedptr.h> 00016 #include <kdevplugin.h> 00017 00018 class KAction; 00019 00020 class FullScreenPart : public KDevPlugin 00021 { 00022 Q_OBJECT 00023 public: 00024 FullScreenPart(QObject *parent, const char *name, const QStringList &); 00025 virtual ~FullScreenPart(); 00026 00027 public slots: 00028 void slotToggleFullScreen(); 00029 00030 private: 00031 KToggleFullScreenAction* m_pFullScreen; 00032 bool m_bFullScreen; 00033 }; 00034 00035 00036 #endif