|
|
|
/*
|
|
|
|
Copyright (C)
|
|
|
|
|
|
|
|
2001: Macadamian Technologies Inc (author: Jian Huang, jian@macadamian.com)
|
|
|
|
2005: Henrique Pinto <henrique.pinto@kdemail.net>
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
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 ARK_PART_H
|
|
|
|
#define ARK_PART_H
|
|
|
|
|
|
|
|
#include <tdeparts/part.h>
|
|
|
|
#include <tdeparts/browserextension.h>
|
|
|
|
#include <tdeparts/statusbarextension.h>
|
|
|
|
#include <tdeparts/factory.h>
|
|
|
|
#include <tdeaction.h>
|
|
|
|
#include <kprogress.h>
|
|
|
|
|
|
|
|
#include <tqlabel.h>
|
|
|
|
|
|
|
|
class TDEAboutData;
|
|
|
|
class KPushButton;
|
|
|
|
|
|
|
|
class ArkWidget;
|
|
|
|
|
|
|
|
namespace TDEIO
|
|
|
|
{
|
|
|
|
class Job;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class ArkBrowserExtension: public KParts::BrowserExtension
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ArkBrowserExtension( KParts::ReadOnlyPart * parent, const char * name = 0L );
|
|
|
|
public slots:
|
|
|
|
void slotOpenURLRequested( const KURL & url );
|
|
|
|
};
|
|
|
|
|
|
|
|
class ArkStatusBarExtension: public KParts::StatusBarExtension
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ArkStatusBarExtension( KParts::ReadWritePart * parent );
|
|
|
|
~ArkStatusBarExtension();
|
|
|
|
|
|
|
|
void setProgress( unsigned long progress );
|
|
|
|
KPushButton* cancelButton() const { return m_cancelButton; }
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void slotSetStatusBarSelectedFiles( const TQString & text );
|
|
|
|
void slotSetStatusBarText( const TQString & text );
|
|
|
|
void slotSetBusy( const TQString & text, bool showCancelButton = false, bool detailedProgress = false );
|
|
|
|
void slotSetReady();
|
|
|
|
void slotProgress();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void setupStatusBar();
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_bBusy;
|
|
|
|
TQLabel *m_pStatusLabelSelect; // How many files are selected
|
|
|
|
TQLabel *m_pStatusLabelTotal; // How many files in archive
|
|
|
|
TQLabel *m_pBusyText;
|
|
|
|
KPushButton *m_cancelButton; // Cancel an operation
|
|
|
|
KProgress *m_pProgressBar;
|
|
|
|
TQTimer *m_pTimer;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ArkPart: public KParts::ReadWritePart
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ArkPart( TQWidget *parentWidget, const char *widgetName, TQObject *parent,
|
|
|
|
const char *name, const TQStringList &, bool readWrite );
|
|
|
|
virtual ~ArkPart();
|
|
|
|
|
|
|
|
static TDEAboutData* createAboutData();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void fixEnables();//rename to slotFixEnables()...
|
|
|
|
void disableActions();
|
|
|
|
void slotFilePopup( const TQPoint & pPoint );
|
|
|
|
void file_save_as();
|
|
|
|
bool saveFile();
|
|
|
|
bool openURL( const KURL & url );
|
|
|
|
bool closeURL();
|
|
|
|
void transferStarted( TDEIO::Job * );
|
|
|
|
void transferCompleted();
|
|
|
|
void transferCanceled( const TQString& errMsg );
|
|
|
|
void progressInformation( TDEIO::Job *, unsigned long );
|
|
|
|
void cancelTransfer();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void fixActionState( const bool & bHaveFiles );
|
|
|
|
void removeRecentURL( const KURL & url );
|
|
|
|
void addRecentURL( const KURL & url );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual bool openFile(); //Opening an archive file
|
|
|
|
bool closeArchive();
|
|
|
|
void setupActions();
|
|
|
|
void initialEnables();
|
|
|
|
void init();
|
|
|
|
|
|
|
|
private:
|
|
|
|
ArkWidget *awidget;
|
|
|
|
ArkBrowserExtension *m_ext;
|
|
|
|
ArkStatusBarExtension *m_bar;
|
|
|
|
|
|
|
|
TDEAction *saveAsAction;
|
|
|
|
TDEAction *addFileAction;
|
|
|
|
TDEAction *addDirAction;
|
|
|
|
TDEAction *extractAction;
|
|
|
|
TDEAction *deleteAction;
|
|
|
|
TDEAction *selectAllAction;
|
|
|
|
TDEAction *viewAction;
|
|
|
|
TDEAction *helpAction;
|
|
|
|
TDEAction *openWithAction;
|
|
|
|
TDEAction *deselectAllAction;
|
|
|
|
TDEAction *invertSelectionAction;
|
|
|
|
TDEAction *editAction;
|
|
|
|
TDEAction *testAction;
|
|
|
|
|
|
|
|
// the following have different enable rules from the above TDEActions
|
|
|
|
TDEAction *popupViewAction;
|
|
|
|
TDEAction *popupOpenWithAction;
|
|
|
|
TDEToggleAction *showSearchBar;
|
|
|
|
|
|
|
|
TDEIO::Job *m_job;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ARK_PART_H
|