• Skip to content
  • Skip to link menu
KDE 4.2 API Reference
  • KDE API Reference
  • API Reference
  • Sitemap
  • Contact Us
 

UNNAMED_READER/corelibrary

fullScreenWidget.cpp

Go to the documentation of this file.
00001 /***************************************************************************
00002  *   Copyright (C) 2006 by Stefan Kebekus <kebekus@kde.org>                *
00003  *                                                                         *
00004  *   This program is free software; you can redistribute it and/or modify  *
00005  *   it under the terms of the GNU General Public License as published by  *
00006  *   the Free Software Foundation; either version 2 of the License, or     *
00007  *   (at your option) any later version.                                   *
00008  *                                                                         *
00009  *   This program is distributed in the hope that it will be useful,       *
00010  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00011  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00012  *   GNU General Public License for more details.                          *
00013  *                                                                         *
00014  *   You should have received a copy of the GNU General Public License     *
00015  *   along with this program; if not, write to the                         *
00016  *   Free Software Foundation, Inc.,                                       *
00017  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
00018  ***************************************************************************/
00019 
00020 #include "fullScreenWidget.h"
00021 #include "ui_fullScreenWidget.h"
00022 #include "UNNAMED_READER_debug.h"
00023 
00024 #include <kmessagebox.h>
00025 #include <QKeyEvent>
00026 
00027 
00028 namespace UNNAMED_READER {
00029 
00030 #define UNNAMED_READER_DEBUG 0
00031 
00032 
00033 fullScreenWidget::fullScreenWidget(QWidget *parent)
00034   : QWidget(parent, Qt::Window)
00035 {
00036   kDebug(UNNAMED_READER_DEBUG, shell) << "fullScreenWidget::fullScreenWidget()" << endl;
00037 
00038   // Delete this widget when it is closed
00039   setAttribute(Qt::WA_DeleteOnClose);
00040   
00041   // Setup GUI
00042   dlg = new Ui_fullScreenWidget();
00043   dlg->setupUi(this);
00044 
00045   // ... and show what we have
00046   showFullScreen();
00047 
00048   KMessageBox::information(this, i18n("Use the Escape key to leave the fullscreen mode.  Of course you can cycle windows (Alt+TAB by default)"), 
00049                i18n("Entering Fullscreen Mode"), "leavingFullScreen");
00050   return;
00051 }
00052 
00053  
00054 fullScreenWidget::~fullScreenWidget()
00055 {
00056 }
00057 
00058 
00059 void fullScreenWidget::keyPressEvent(QKeyEvent *event)
00060 {
00061   kDebug(UNNAMED_READER_DEBUG, shell) << "fullScreenWidget::keyPressEvent(...)" << endl;
00062 
00063   // Paranoid safety checks
00064   if (event == 0)
00065     return;
00066 
00067   if (event->key() == Qt::Key_Escape)
00068     close();
00069   else
00070     event->ignore();
00071 }
00072 
00073 } // end: namespace UNNAMED_READER
00074 
00075 #include "fullScreenWidget.moc"

UNNAMED_READER/corelibrary

Skip menu "UNNAMED_READER/corelibrary"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members

API Reference

Skip menu "API Reference"
  •   corelibrary
Generated for API Reference by doxygen 1.5.4
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal