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.
125 lines
3.5 KiB
125 lines
3.5 KiB
/***************************************************************************
|
|
kgpgeditor.h - description
|
|
-------------------
|
|
begin : Mon Jul 8 2002
|
|
copyright : (C) 2002 by Jean-Baptiste Mardelle
|
|
email : bj@altern.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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KGPGEDITOR_H
|
|
#define KGPGEDITOR_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <kmainwindow.h>
|
|
|
|
#include <tqstringlist.h>
|
|
#include <kurl.h>
|
|
|
|
class KPassivePopup;
|
|
class KComboBox;
|
|
class KToggleAction;
|
|
class KAction;
|
|
class KgpgView;
|
|
|
|
class KgpgApp : public KMainWindow
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
friend class KgpgView;
|
|
|
|
public:
|
|
/** construtor of KgpgApp, calls all init functions to create the application.
|
|
*/
|
|
KgpgApp(TQWidget *parent=0, const char *name=0,WFlags f = 0,KShortcut goHome=TQKeySequence(CTRL+TQt::Key_Home),bool mainWindow=false);
|
|
~KgpgApp();
|
|
/** opens a file specified by commandline option
|
|
*/
|
|
void openDocumentFile(const KURL& url,TQString encoding=TQString());
|
|
void openEncryptedDocumentFile(const KURL& url);
|
|
/** returns a pointer to the current document connected to the KTMainWindow instance and is used by
|
|
* the View class to access the document object's methods
|
|
*/
|
|
KURL Docname;
|
|
int version;
|
|
TQString messages;
|
|
KgpgView *view;
|
|
KShortcut goDefaultKey;
|
|
|
|
|
|
protected:
|
|
void readOptions(bool doresize=true);
|
|
void saveOptions();
|
|
void initActions();
|
|
void initView();
|
|
void closeEvent( TQCloseEvent * e );
|
|
|
|
private slots:
|
|
//void slotOptions();
|
|
void slotFileQuit();
|
|
void slotFileNew();
|
|
void slotResetEncoding(bool enc);
|
|
void slotFilePreEnc();
|
|
void slotFilePreDec();
|
|
void slotFileOpen();
|
|
void slotFileSave();
|
|
void slotFileSaveAs();
|
|
void slotFilePrint();
|
|
void slotEditCut();
|
|
void slotEditCopy();
|
|
void slotEditPaste();
|
|
void slotSelectAll();
|
|
void slotCheckMd5();
|
|
|
|
void slotPreSignFile();
|
|
void slotSignFile(KURL url);
|
|
void slotVerifyFile(KURL url);
|
|
void slotPreVerifyFile();
|
|
void importSignatureKey(TQString ID);
|
|
|
|
void slotundo();
|
|
void slotredo();
|
|
void slotSetCharset();
|
|
bool checkEncoding(TQTextCodec *codec);
|
|
void slotOptions();
|
|
void slotKeyManager();
|
|
|
|
|
|
public slots:
|
|
void slotSetFont(TQFont myFont);
|
|
void closeWindow();
|
|
|
|
|
|
private:
|
|
|
|
TQStringList customDecrypt;
|
|
//KToggleAction *encodingAction ;
|
|
KURL urlselected;
|
|
KAction* fileSave, *editUndo, *editRedo;
|
|
KComboBox *fontCombo;
|
|
bool isMainWindow;
|
|
TQString textEncoding;
|
|
|
|
signals:
|
|
|
|
void refreshImported(TQStringList);
|
|
void openChangeFont();
|
|
void openConfigDialog();
|
|
void encryptFiles(KURL::List fileList);
|
|
};
|
|
|
|
#endif // KGPGEDITOR_H
|
|
|