1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/*
ark -- archiver for the KDE project
Copyright (C) 2002-2003: Georg Robbers <Georg.Robbers@urz.uni-hd.de>
Copyright (C) 2003: Helio Chissini de Castro <helio@conectiva.com>
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 ARKMAINWINDOW_H
#define ARKMAINWINDOW_H
// QT includes
#include <tqstring.h>
#include <tqpopupmenu.h>
#include <tqtimer.h>
// KDE includes
#include <tdemainwindow.h>
#include <tdeparts/mainwindow.h>
#include <tdeparts/part.h>
#include <kprogress.h>
class ArkWidget;
class
MainWindow: public KParts::MainWindow
{
Q_OBJECT
public:
MainWindow( TQWidget *parent=0, const char *name=0 );
virtual ~MainWindow();
void setExtractOnly ( bool b );
void extractTo( const KURL & targetDirectory, const KURL & archive, bool guessName );
void addToArchive( const KURL::List & filesToAdd, const TQString & cwd = TQString(),
const KURL & archive = KURL(), bool askForName = false );
public slots:
void file_newWindow();
void file_new();
void openURL( const KURL & url, bool tempFile = false );
void file_open();
void file_reload();
void editToolbars();
void window_close();
void file_quit();
void file_close();
void slotNewToolbarConfig();
void slotConfigureKeyBindings();
virtual void saveProperties( TDEConfig* config );
virtual void readProperties( TDEConfig* config );
void slotSaveProperties();
void slotArchivePopup( const TQPoint &pPoint);
void slotRemoveRecentURL( const KURL &url );
void slotAddRecentURL( const KURL &url );
void slotFixActionState( const bool & bHaveFiles );
void slotDisableActions();
void slotAddOpenArk( const KURL & _arkname );
void slotRemoveOpenArk( const KURL & _arkname );
protected:
virtual bool queryClose(); // SM
private: // methods
// disabling/enabling of buttons and menu items
void setupActions();
void setupMenuBar();
void newCaption(const TQString & filename);
bool arkAlreadyOpen( const KURL & url );
KURL getOpenURL( bool addOnly = false , const TQString & caption = TQString(),
const TQString & startDir = TQString(),
const TQString & suggestedName = TQString() );
void startProgressDialog( const TQString & text );
private slots:
void slotProgress();
private: // data
KParts::ReadWritePart *m_part;
ArkWidget *m_widget; //the parts widget
TDEAction *newWindowAction;
TDEAction *newArchAction;
TDEAction *openAction;
TDEAction *closeAction;
TDEAction *reloadAction;
TDERecentFilesAction *recent;
//progress dialog for konqs service menus / commmand line
KProgressDialog *progressDialog;
TQTimer *timer;
};
#endif /* ARKMAINWINDOW_H*/
|