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.
tdevelop/parts/fullscreen/fullscreen_part.cpp

73 lines
2.5 KiB

/***************************************************************************
* Copyright (C) 2003 by Roberto Raggi *
* roberto@kdevelop.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <kiconloader.h>
#include <tdelocale.h>
#include <kdevgenericfactory.h>
#include <kstdaction.h>
#include <tdemainwindow.h>
#include <tdemenubar.h>
#include <kdevcore.h>
#include <kdevmainwindow.h>
#include <kdevplugininfo.h>
#include "fullscreen_part.h"
static const KDevPluginInfo pluginData("kdevfullscreen");
typedef KDevGenericFactory<FullScreenPart> FullScreenFactory;
K_EXPORT_COMPONENT_FACTORY( libkdevfullscreen, FullScreenFactory( pluginData ) )
FullScreenPart::FullScreenPart(TQObject *parent, const char *name, const TQStringList& )
: KDevPlugin(&pluginData, parent, name ? name : "FullScreenPart" )
{
setInstance(FullScreenFactory::instance());
// const TDEAboutData &abdata1 = *(info());
// kdDebug() << abdata1.appName() << endl;
const KDevPluginInfo &_info = *info();
const TDEAboutData *abdata = _info;
kdDebug() << abdata->appName() << endl;
setXMLFile("kdevpart_fullscreen.rc");
m_bFullScreen = false;
m_pFullScreen = KStdAction::fullScreen(this, TQT_SLOT(slotToggleFullScreen()), actionCollection(), mainWindow()->main());
}
FullScreenPart::~FullScreenPart()
{
}
void FullScreenPart::slotToggleFullScreen( )
{
m_bFullScreen = !m_bFullScreen;
if( m_bFullScreen ){
//mw->menuBar()->hide();
mainWindow()->main()->showFullScreen();
/*m_pFullScreen->setText( i18n( "Exit Full-Screen Mode" ) );
m_pFullScreen->setToolTip( i18n( "Exit full-screen mode" ) );
m_pFullScreen->setIcon( "view-restore" );*/
} else {
//mw->menuBar()->show();
mainWindow()->main()->showNormal();
/*m_pFullScreen->setText( i18n( "&Full-Screen Mode" ) );
m_pFullScreen->setToolTip(i18n("Full-screen mode"));
m_pFullScreen->setIcon( "view-fullscreen" );*/
}
}
#include "fullscreen_part.moc"