diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-19 18:38:42 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-19 18:38:42 +0000 |
commit | 498ff4e365566b987d2c7a1e54065e0e126556f7 (patch) | |
tree | c283921daac735696d642ba121c9e14152e00215 /src/otrpreferences.h | |
download | kopete-otr-498ff4e365566b987d2c7a1e54065e0e126556f7.tar.gz kopete-otr-498ff4e365566b987d2c7a1e54065e0e126556f7.zip |
Added abandoned KDE3 version of kopete-otr
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kopete-otr@1092925 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/otrpreferences.h')
-rw-r--r-- | src/otrpreferences.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/otrpreferences.h b/src/otrpreferences.h new file mode 100644 index 0000000..0de6d5d --- /dev/null +++ b/src/otrpreferences.h @@ -0,0 +1,64 @@ +/*************************************************************************** + * Copyright (C) 2007 by Michael Zanetti + * + * * + * 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 OTRPREFERECES_H +#define OTRPREFERECES_H + +#include <kcmodule.h> +#include "otrlconfinterface.h" + +/** + * Preference widget for the OTR plugin + * @author Michael Zanetti + */ + +class OTRPreferences : public KCModule { + Q_OBJECT + +public: + OTRPreferences(QWidget *parent = 0, const char *name = 0, const QStringList &args = QStringList()); + ~OTRPreferences(); + +private: + OTRPrefsUI *preferencesDialog; + OtrlConfInterface *otrlConfInterface; + QMap<int, int> privKeys; + +private slots: // Public slots + void generateFingerprint(); + void showPrivFingerprint(int accountnr); + void verifyFingerprint(); + void fillFingerprints(); + void updateButtons(int row, int col); + void forgetFingerprint(); + +}; + + +class QAlignTableItem : public QTableItem { + +public : + QAlignTableItem(QTable *table, EditType editType, const QString& text, int alignment); + +private : + int align; +}; + +#endif |