mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
94 lines
2.3 KiB
C++
94 lines
2.3 KiB
C++
/*
|
|
This file is part of KTnef.
|
|
|
|
Copyright (C) 2002 Michael Goffioul <kdeprint@swing.be>
|
|
Copyright (c) 2012 Allen Winter <winter@kde.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.
|
|
|
|
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, USA
|
|
*/
|
|
|
|
#ifndef KTNEFMAIN_H
|
|
#define KTNEFMAIN_H
|
|
|
|
#include <KXmlGuiWindow>
|
|
|
|
#include <QContextMenuEvent>
|
|
#include <QTreeWidgetItem>
|
|
class KRecentFilesAction;
|
|
class KUrl;
|
|
|
|
namespace KTnef {
|
|
class KTNEFParser;
|
|
class KTNEFAttach;
|
|
}
|
|
using namespace KTnef;
|
|
|
|
class KTNEFView;
|
|
|
|
class KTNEFMain : public KXmlGuiWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit KTNEFMain( QWidget *parent = 0 );
|
|
~KTNEFMain();
|
|
|
|
void loadFile( const QString &filename );
|
|
|
|
protected:
|
|
/** @reimp */
|
|
void contextMenuEvent( QContextMenuEvent *event );
|
|
|
|
protected slots:
|
|
void openFile();
|
|
void viewFile();
|
|
void viewFileAs();
|
|
void extractFile();
|
|
void extractFileTo();
|
|
void propertiesFile();
|
|
void optionDefaultDir();
|
|
void extractAllFiles();
|
|
void slotEditToolbars();
|
|
void slotNewToolbarConfig();
|
|
void slotShowMessageProperties();
|
|
void slotShowMessageText();
|
|
void slotSaveMessageText();
|
|
|
|
void viewSelectionChanged();
|
|
void viewDoubleClicked( QTreeWidgetItem * );
|
|
void viewDragRequested( const QList<KTNEFAttach *> &list );
|
|
void slotConfigureKeys();
|
|
void openRecentFile(const KUrl&);
|
|
|
|
// protected:
|
|
// void closeEvent( QCloseEvent *e );
|
|
|
|
private:
|
|
void addRecentFile(const KUrl &url);
|
|
void setupStatusbar();
|
|
void setupActions();
|
|
void setupTNEF();
|
|
void enableExtractAll( bool on = true );
|
|
void enableSingleAction( bool on = true );
|
|
void cleanup();
|
|
|
|
void extractTo( const QString &dirname );
|
|
QString extractTemp( KTNEFAttach *att );
|
|
|
|
private:
|
|
KTNEFView *mView;
|
|
KTNEFParser *mParser;
|
|
QString mFilename;
|
|
QString mDefaultDir;
|
|
QString mLastDir;
|
|
KRecentFilesAction *mOpenRecentFileAction;
|
|
};
|
|
|
|
#endif
|