mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
122 lines
3.7 KiB
C++
122 lines
3.7 KiB
C++
![]() |
/*
|
||
|
KNode, the KDE newsreader
|
||
|
Copyright (c) 1999-2010 the KNode authors.
|
||
|
See file AUTHORS for details
|
||
|
|
||
|
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.
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program; if not, write to the Free Software Foundation,
|
||
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
|
||
|
*/
|
||
|
#include "knode.h"
|
||
|
#include "knglobals.h"
|
||
|
|
||
|
#include <QApplication>
|
||
|
|
||
|
#include <kshortcutsdialog.h>
|
||
|
#include <kedittoolbar.h>
|
||
|
#include <kstandardaction.h>
|
||
|
#include <kdebug.h>
|
||
|
#include <kmenubar.h>
|
||
|
#include <kiconloader.h>
|
||
|
#include <kstatusbar.h>
|
||
|
#include <klocale.h>
|
||
|
#include <kactioncollection.h>
|
||
|
#include <ksqueezedtextlabel.h>
|
||
|
|
||
|
#include "libkdepim/misc/broadcaststatus.h"
|
||
|
#include "libkdepim/progresswidget/progressdialog.h"
|
||
|
#include "libkdepim/progresswidget/statusbarprogresswidget.h"
|
||
|
|
||
|
//GUI
|
||
|
#include "knmainwidget.h"
|
||
|
#include "kncollectionviewitem.h"
|
||
|
#include "knhdrviewitem.h"
|
||
|
|
||
|
KNMainWindow::KNMainWindow( QWidget* parent )
|
||
|
: KXmlGuiWindow( parent )
|
||
|
{
|
||
|
//setupStatusBar();
|
||
|
createStandardStatusBarAction();
|
||
|
setStandardToolBarMenuEnabled(true);
|
||
|
|
||
|
//config stuff
|
||
|
KStandardAction::quit(qApp, SLOT(closeAllWindows()), actionCollection());
|
||
|
KStandardAction::configureToolbars(this, SLOT(slotConfToolbar()), actionCollection());
|
||
|
KStandardAction::keyBindings(this, SLOT(slotConfKeys()), actionCollection());
|
||
|
|
||
|
m_mainWidget = new KNMainWidget( this, this );
|
||
|
connect( m_mainWidget, SIGNAL(signalCaptionChangeRequest(QString)),
|
||
|
SLOT(setCaption(QString)) );
|
||
|
setCentralWidget( m_mainWidget );
|
||
|
setupStatusBar();
|
||
|
connect( KPIM::BroadcastStatus::instance(), SIGNAL(statusMsg(QString)),
|
||
|
this, SLOT(slotShowStatusMsg(QString)) );
|
||
|
createGUI( "knodeui.rc" );
|
||
|
knGlobals.setComponentData( KComponentData() );
|
||
|
|
||
|
applyMainWindowSettings(KGlobal::config()->group( "mainWindow_options") );
|
||
|
}
|
||
|
|
||
|
KNMainWindow::~KNMainWindow()
|
||
|
{
|
||
|
saveMainWindowSettings(knGlobals.config()->group( "mainWindow_options") );
|
||
|
}
|
||
|
|
||
|
void KNMainWindow::openURL( const KUrl& url )
|
||
|
{
|
||
|
m_mainWidget->openURL( url );
|
||
|
}
|
||
|
|
||
|
void KNMainWindow::slotConfToolbar()
|
||
|
{
|
||
|
saveMainWindowSettings(knGlobals.config()->group( "mainWindow_options") );
|
||
|
KEditToolBar dlg( actionCollection() );
|
||
|
dlg.setResourceFile( "knodeui.rc" );
|
||
|
connect(&dlg,SIGNAL(newToolBarConfig()), this, SLOT(slotNewToolbarConfig()));
|
||
|
dlg.exec();
|
||
|
}
|
||
|
|
||
|
void KNMainWindow::slotNewToolbarConfig()
|
||
|
{
|
||
|
createGUI("knodeui.rc");
|
||
|
//initPopups();
|
||
|
applyMainWindowSettings(knGlobals.config()->group( "mainWindow_options") );
|
||
|
}
|
||
|
|
||
|
void KNMainWindow::slotConfKeys()
|
||
|
{
|
||
|
KShortcutsDialog::configure(actionCollection(), KShortcutsEditor::LetterShortcutsAllowed);
|
||
|
}
|
||
|
|
||
|
bool KNMainWindow::queryClose()
|
||
|
{
|
||
|
return m_mainWidget->queryClose();
|
||
|
}
|
||
|
|
||
|
void KNMainWindow::setupStatusBar()
|
||
|
{
|
||
|
mProgressDialog = new KPIM::ProgressDialog( statusBar(), this );
|
||
|
mProgressDialog->hide();
|
||
|
|
||
|
mLittleProgress = new StatusbarProgressWidget( mProgressDialog, statusBar() );
|
||
|
mLittleProgress->show();
|
||
|
|
||
|
statusBar()->addPermanentWidget( mLittleProgress, 0 );
|
||
|
|
||
|
mStatusMsgLabel = new KSqueezedTextLabel( QString(), statusBar() );
|
||
|
mStatusMsgLabel->setTextElideMode( Qt::ElideRight );
|
||
|
mStatusMsgLabel->setAlignment( Qt::AlignLeft | Qt::AlignVCenter );
|
||
|
statusBar()->addWidget( mStatusMsgLabel, 2 );
|
||
|
statusBar()->addWidget(m_mainWidget->statusBarLabelFilter(), 2);
|
||
|
statusBar()->addWidget(m_mainWidget->statusBarLabelGroup(), 3);
|
||
|
}
|
||
|
|
||
|
void KNMainWindow::slotShowStatusMsg( const QString &msg ) {
|
||
|
mStatusMsgLabel->setText( msg );
|
||
|
}
|
||
|
|