UIMachineViewFullscreen.h revision af62929dce3cc5e14c75438cd2b893f82ae6dbc8
/** @file
*
* VBox frontends: Qt GUI ("VirtualBox"):
* UIMachineViewFullscreen class declaration
*/
/*
* Copyright (C) 2010 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef ___UIMachineViewFullscreen_h___
#define ___UIMachineViewFullscreen_h___
/* Local includes */
#include "UIMachineView.h"
class UIMachineViewFullscreen : public UIMachineView
{
Q_OBJECT;
protected:
/* Normal machine view constructor/destructor: */
UIMachineViewFullscreen( UIMachineWindow *pMachineWindow
, VBoxDefs::RenderMode renderMode
#ifdef VBOX_WITH_VIDEOHWACCEL
, bool bAccelerate2DVideo
#endif
, ulong uMonitor);
virtual ~UIMachineViewFullscreen();
private slots:
/* Slot to perform guest resize: */
void sltPerformGuestResize(const QSize &aSize = QSize());
/* Console callback handlers: */
void sltAdditionsStateChanged();
/* Watch dog for desktop resizes: */
void sltDesktopResized();
private:
/* Event handlers: */
bool event(QEvent *pEvent);
bool eventFilter(QObject *pWatched, QEvent *pEvent);
/* Prepare routines: */
void prepareCommon();
void prepareFilters();
void prepareConnections();
void prepareConsoleConnections();
//void prepareFullscreen() {}
/* Cleanup routines: */
void cleanupFullscreen();
//void cleanupConsoleConnections() {}
//void cleanupConnections() {}
//void cleanupFilters() {}
//void cleanupCommon() {}
/* Private setters: */
void setGuestAutoresizeEnabled(bool bEnabled);
/* Private helpers: */
void normalizeGeometry(bool /* fAdjustPosition */) {}
QRect availableGeometry();
void calculateDesktopGeometry();
void maybeRestrictMinimumSize();
/* Private members: */
bool m_bIsGuestAutoresizeEnabled : 1;
bool m_fShouldWeDoResize : 1;
/* Friend classes: */
friend class UIMachineView;
};
#endif // !___UIMachineViewFullscreen_h___