|
|
|
/*
|
|
|
|
KNode, the KDE newsreader
|
|
|
|
Copyright (c) 1999-2005 the KNode authors.
|
|
|
|
See file AUTHORS for details
|
|
|
|
|
|
|
|
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, US
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KNCONFIGWIDGETS_H
|
|
|
|
#define KNCONFIGWIDGETS_H
|
|
|
|
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
#include <tdecmodule.h>
|
|
|
|
|
|
|
|
#include "knwidgets.h"
|
|
|
|
#include "smtpaccountwidget_base.h"
|
|
|
|
|
|
|
|
class TQButtonGroup;
|
|
|
|
class TQCheckBox;
|
|
|
|
class TQGroupBox;
|
|
|
|
class TQRadioButton;
|
|
|
|
class TQTextEdit;
|
|
|
|
|
|
|
|
class KScoringEditorWidget;
|
|
|
|
class TDEConfigBase;
|
|
|
|
class KLineEdit;
|
|
|
|
class KComboBox;
|
|
|
|
class KIntSpinBox;
|
|
|
|
class KSpellConfig;
|
|
|
|
class KURLCompletion;
|
|
|
|
|
|
|
|
namespace Kpgp {
|
|
|
|
class Config;
|
|
|
|
class SecretKeyRequester;
|
|
|
|
}
|
|
|
|
|
|
|
|
class KNAccountManager;
|
|
|
|
class KNArticleFilter;
|
|
|
|
class KNDisplayedHeader;
|
|
|
|
class KNFilterManager;
|
|
|
|
class KNNntpAccount;
|
|
|
|
class KNServerInfo;
|
|
|
|
|
|
|
|
namespace KNConfig {
|
|
|
|
class Appearance;
|
|
|
|
class Cleanup;
|
|
|
|
class Identity;
|
|
|
|
class DisplayedHeaders;
|
|
|
|
class GroupCleanupWidget;
|
|
|
|
class PostNewsTechnical;
|
|
|
|
class ReadNewsGeneral;
|
|
|
|
class ReadNewsNavigation;
|
|
|
|
class PostNewsComposer;
|
|
|
|
class ReadNewsViewer;
|
|
|
|
class Scoring;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace KNConfig {
|
|
|
|
|
|
|
|
class KDE_EXPORT IdentityWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
IdentityWidget(Identity *d, TQWidget *p=0, const char *n=0);
|
|
|
|
~IdentityWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TQLabel *f_ileName;
|
|
|
|
KLineEdit *n_ame,
|
|
|
|
*o_rga,
|
|
|
|
*e_mail,
|
|
|
|
*r_eplyTo,
|
|
|
|
*m_ailCopiesTo,
|
|
|
|
*s_ig;
|
|
|
|
TQRadioButton *s_igFile,
|
|
|
|
*s_igEdit;
|
|
|
|
TQCheckBox *s_igGenerator;
|
|
|
|
TQPushButton *c_hooseBtn,
|
|
|
|
*e_ditBtn;
|
|
|
|
TQTextEdit *s_igEditor;
|
|
|
|
TQButtonGroup *b_uttonGroup;
|
|
|
|
Kpgp::SecretKeyRequester
|
|
|
|
*s_igningKey;
|
|
|
|
KURLCompletion *c_ompletion;
|
|
|
|
|
|
|
|
Identity *d_ata;
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotSignatureType(int type);
|
|
|
|
void slotSignatureChoose();
|
|
|
|
void slotSignatureEdit();
|
|
|
|
void textFileNameChanged(const TQString &);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT NntpAccountListWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
NntpAccountListWidget(TQWidget *p=0, const char *n=0);
|
|
|
|
~NntpAccountListWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
class LBoxItem : public KNListBoxItem {
|
|
|
|
public:
|
|
|
|
LBoxItem(KNNntpAccount *a, const TQString &t, TQPixmap *p=0)
|
|
|
|
: KNListBoxItem(t, p) , account(a) {}
|
|
|
|
~LBoxItem() {}
|
|
|
|
KNNntpAccount *account;
|
|
|
|
};
|
|
|
|
|
|
|
|
KNDialogListBox *l_box;
|
|
|
|
TQPushButton *a_ddBtn,
|
|
|
|
*d_elBtn,
|
|
|
|
*e_ditBtn,
|
|
|
|
*s_ubBtn;
|
|
|
|
TQPixmap p_ixmap;
|
|
|
|
TQLabel *s_erverInfo,
|
|
|
|
*p_ortInfo;
|
|
|
|
|
|
|
|
KNAccountManager *a_ccManager;
|
|
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void slotAddItem(KNNntpAccount *a);
|
|
|
|
void slotRemoveItem(KNNntpAccount *a);
|
|
|
|
void slotUpdateItem(KNNntpAccount *a);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotSelectionChanged();
|
|
|
|
void slotItemSelected(int id);
|
|
|
|
void slotAddBtnClicked();
|
|
|
|
void slotDelBtnClicked();
|
|
|
|
void slotEditBtnClicked();
|
|
|
|
void slotSubBtnClicked();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT NntpAccountConfDialog : public KDialogBase {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
NntpAccountConfDialog(KNNntpAccount* acc, TQWidget *p=0, const char *n=0);
|
|
|
|
~NntpAccountConfDialog();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
KLineEdit *n_ame,
|
|
|
|
*s_erver,
|
|
|
|
*u_ser,
|
|
|
|
*p_ass,
|
|
|
|
*p_ort;
|
|
|
|
TQLabel *u_serLabel,
|
|
|
|
*p_assLabel,
|
|
|
|
*c_heckIntervalLabel;
|
|
|
|
KIntSpinBox *h_old,
|
|
|
|
*t_imeout,
|
|
|
|
*c_heckInterval;
|
|
|
|
TQCheckBox *f_etchDes,
|
|
|
|
*a_uth,
|
|
|
|
*u_seDiskCache,
|
|
|
|
*i_nterval;
|
|
|
|
KNConfig::IdentityWidget* i_dWidget;
|
|
|
|
|
|
|
|
KNNntpAccount *a_ccount;
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotOk();
|
|
|
|
void slotAuthChecked(bool b);
|
|
|
|
void slotIntervalChecked(bool b);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotPasswordChanged();
|
|
|
|
|
|
|
|
private:
|
|
|
|
GroupCleanupWidget *mCleanupWidget;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT SmtpAccountWidget : public SmtpAccountWidgetBase {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
SmtpAccountWidget(TQWidget *p=0, const char *n=0);
|
|
|
|
~SmtpAccountWidget() {}
|
|
|
|
|
|
|
|
virtual void load();
|
|
|
|
virtual void save();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
virtual void useExternalMailerToggled( bool b );
|
|
|
|
virtual void loginToggled( bool b );
|
|
|
|
void slotPasswordChanged();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
KNServerInfo *mAccount;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT AppearanceWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
AppearanceWidget(TQWidget *p=0, const char *n=0);
|
|
|
|
~AppearanceWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
void defaults();
|
|
|
|
|
|
|
|
//===================================================================================
|
|
|
|
// code taken from KMail, Copyright (C) 2000 Espen Sand, espen@kde.org
|
|
|
|
|
|
|
|
class KDE_EXPORT ColorListItem : public TQListBoxText {
|
|
|
|
|
|
|
|
public:
|
|
|
|
ColorListItem( const TQString &text, const TQColor &color=TQt::black );
|
|
|
|
~ColorListItem();
|
|
|
|
const TQColor& color() { return mColor; }
|
|
|
|
void setColor( const TQColor &color ) { mColor = color; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void paint( TQPainter * );
|
|
|
|
virtual int height( const TQListBox * ) const;
|
|
|
|
virtual int width( const TQListBox * ) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
TQColor mColor;
|
|
|
|
};
|
|
|
|
|
|
|
|
//===================================================================================
|
|
|
|
|
|
|
|
class KDE_EXPORT FontListItem : public TQListBoxText {
|
|
|
|
|
|
|
|
public:
|
|
|
|
FontListItem( const TQString &name, const TQFont & );
|
|
|
|
~FontListItem();
|
|
|
|
const TQFont& font() { return f_ont; }
|
|
|
|
void setFont( const TQFont &);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void paint( TQPainter * );
|
|
|
|
virtual int width( const TQListBox * ) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
TQFont f_ont;
|
|
|
|
TQString fontInfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
//===================================================================================
|
|
|
|
|
|
|
|
KNDialogListBox *c_List,
|
|
|
|
*f_List;
|
|
|
|
TQCheckBox *c_olorCB,
|
|
|
|
*f_ontCB;
|
|
|
|
TQPushButton *c_olChngBtn,
|
|
|
|
*f_ntChngBtn;
|
|
|
|
|
|
|
|
Appearance *d_ata;
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
//colors
|
|
|
|
void slotColCheckBoxToggled(bool b);
|
|
|
|
void slotColItemSelected(TQListBoxItem *); // show color dialog for the entry
|
|
|
|
void slotColChangeBtnClicked();
|
|
|
|
void slotColSelectionChanged();
|
|
|
|
|
|
|
|
//fonts
|
|
|
|
void slotFontCheckBoxToggled(bool b);
|
|
|
|
void slotFontItemSelected(TQListBoxItem *); // show font dialog for the entry
|
|
|
|
void slotFontChangeBtnClicked();
|
|
|
|
void slotFontSelectionChanged();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT ReadNewsGeneralWidget : public TDECModule {
|
|
|
|
|
|
|
|
public:
|
|
|
|
ReadNewsGeneralWidget(ReadNewsGeneral *d, TQWidget *p=0, const char *n=0);
|
|
|
|
~ReadNewsGeneralWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TQCheckBox *a_utoCB,
|
|
|
|
*m_arkCB,
|
|
|
|
*m_arkCrossCB,
|
|
|
|
*s_martScrollingCB,
|
|
|
|
*e_xpThrCB,
|
|
|
|
*d_efaultExpandCB,
|
|
|
|
*l_inesCB,
|
|
|
|
*u_nreadCB,
|
|
|
|
*s_coreCB;
|
|
|
|
KIntSpinBox *m_arkSecs,
|
|
|
|
*m_axFetch,
|
|
|
|
*c_ollCacheSize,
|
|
|
|
*a_rtCacheSize;
|
|
|
|
|
|
|
|
ReadNewsGeneral *d_ata;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT ReadNewsNavigationWidget : public TDECModule {
|
|
|
|
|
|
|
|
public:
|
|
|
|
ReadNewsNavigationWidget(ReadNewsNavigation *d, TQWidget *p=0, const char *n=0);
|
|
|
|
~ReadNewsNavigationWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TQCheckBox *m_arkAllReadGoNextCB,
|
|
|
|
*m_arkThreadReadGoNextCB,
|
|
|
|
*m_arkThreadReadCloseThreadCB,
|
|
|
|
*i_gnoreThreadGoNextCB,
|
|
|
|
*i_gnoreThreadCloseThreadCB;
|
|
|
|
|
|
|
|
ReadNewsNavigation *d_ata;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT ReadNewsViewerWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
ReadNewsViewerWidget(ReadNewsViewer *d, TQWidget *p=0, const char *n=0);
|
|
|
|
~ReadNewsViewerWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TQCheckBox *r_ewrapCB,
|
|
|
|
*r_emoveTrailingCB,
|
|
|
|
*s_igCB,
|
|
|
|
*o_penAttCB,
|
|
|
|
*a_ltAttCB,
|
|
|
|
*mShowRefBar,
|
|
|
|
*mAlwaysShowHTML;
|
|
|
|
KLineEdit *q_uoteCharacters;
|
|
|
|
|
|
|
|
ReadNewsViewer *d_ata;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT DisplayedHeadersWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
DisplayedHeadersWidget(DisplayedHeaders *d, TQWidget *p=0, const char *n=0);
|
|
|
|
~DisplayedHeadersWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
class HdrItem : public TQListBoxText {
|
|
|
|
|
|
|
|
public:
|
|
|
|
HdrItem( const TQString &t, KNDisplayedHeader *h ) : TQListBoxText(t), hdr(h) {}
|
|
|
|
~HdrItem() {}
|
|
|
|
|
|
|
|
KNDisplayedHeader *hdr;
|
|
|
|
};
|
|
|
|
|
|
|
|
HdrItem* generateItem(KNDisplayedHeader *);
|
|
|
|
|
|
|
|
KNDialogListBox *l_box;
|
|
|
|
TQPushButton *a_ddBtn,
|
|
|
|
*d_elBtn,
|
|
|
|
*e_ditBtn,
|
|
|
|
*u_pBtn,
|
|
|
|
*d_ownBtn;
|
|
|
|
bool s_ave;
|
|
|
|
|
|
|
|
DisplayedHeaders *d_ata;
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotItemSelected(int);
|
|
|
|
void slotSelectionChanged();
|
|
|
|
void slotAddBtnClicked();
|
|
|
|
void slotDelBtnClicked();
|
|
|
|
void slotEditBtnClicked();
|
|
|
|
void slotUpBtnClicked();
|
|
|
|
void slotDownBtnClicked();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT DisplayedHeaderConfDialog : public KDialogBase {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
DisplayedHeaderConfDialog(KNDisplayedHeader *h, TQWidget *p=0, char *n=0);
|
|
|
|
~DisplayedHeaderConfDialog();
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
KNDisplayedHeader *h_dr;
|
|
|
|
KComboBox *h_drC;
|
|
|
|
KLineEdit *n_ameE;
|
|
|
|
TQCheckBox *n_ameCB[4],
|
|
|
|
*v_alueCB[4];
|
|
|
|
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotOk();
|
|
|
|
void slotActivated(int);
|
|
|
|
void slotNameChanged(const TQString&);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT ScoringWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScoringWidget(Scoring *d, TQWidget *p=0, const char *n=0);
|
|
|
|
~ScoringWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
private:
|
|
|
|
KScoringEditorWidget *ksc;
|
|
|
|
KIntSpinBox *i_gnored,
|
|
|
|
*w_atched;
|
|
|
|
|
|
|
|
Scoring *d_ata;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT FilterListWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
FilterListWidget(TQWidget *p=0, const char *n=0);
|
|
|
|
~FilterListWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
void addItem(KNArticleFilter *f);
|
|
|
|
void removeItem(KNArticleFilter *f);
|
|
|
|
void updateItem(KNArticleFilter *f);
|
|
|
|
void addMenuItem(KNArticleFilter *f);
|
|
|
|
void removeMenuItem(KNArticleFilter *f);
|
|
|
|
TQValueList<int> menuOrder();
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
class LBoxItem : public KNListBoxItem {
|
|
|
|
public:
|
|
|
|
LBoxItem(KNArticleFilter *f, const TQString &t, TQPixmap *p=0)
|
|
|
|
: KNListBoxItem(t, p) , filter(f) {}
|
|
|
|
~LBoxItem() {}
|
|
|
|
|
|
|
|
KNArticleFilter *filter;
|
|
|
|
};
|
|
|
|
|
|
|
|
int findItem(TQListBox *l, KNArticleFilter *f);
|
|
|
|
|
|
|
|
KNDialogListBox *f_lb,
|
|
|
|
*m_lb;
|
|
|
|
|
|
|
|
TQPushButton *a_ddBtn,
|
|
|
|
*d_elBtn,
|
|
|
|
*e_ditBtn,
|
|
|
|
*c_opyBtn,
|
|
|
|
*u_pBtn,
|
|
|
|
*d_ownBtn,
|
|
|
|
*s_epAddBtn,
|
|
|
|
*s_epRemBtn;
|
|
|
|
|
|
|
|
TQPixmap a_ctive,
|
|
|
|
d_isabled;
|
|
|
|
|
|
|
|
KNFilterManager *f_ilManager;
|
|
|
|
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotAddBtnClicked();
|
|
|
|
void slotDelBtnClicked();
|
|
|
|
void slotEditBtnClicked();
|
|
|
|
void slotCopyBtnClicked();
|
|
|
|
void slotUpBtnClicked();
|
|
|
|
void slotDownBtnClicked();
|
|
|
|
void slotSepAddBtnClicked();
|
|
|
|
void slotSepRemBtnClicked();
|
|
|
|
void slotItemSelectedFilter(int);
|
|
|
|
void slotSelectionChangedFilter();
|
|
|
|
void slotSelectionChangedMenu();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT PostNewsTechnicalWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
PostNewsTechnicalWidget(PostNewsTechnical *d, TQWidget *p=0, const char *n=0);
|
|
|
|
~PostNewsTechnicalWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TQComboBox *c_harset,
|
|
|
|
*e_ncoding;
|
|
|
|
TQCheckBox *u_seOwnCSCB,
|
|
|
|
*g_enMIdCB,
|
|
|
|
*i_ncUaCB;
|
|
|
|
KNDialogListBox *l_box;
|
|
|
|
TQPushButton *a_ddBtn,
|
|
|
|
*d_elBtn,
|
|
|
|
*e_ditBtn;
|
|
|
|
KLineEdit *h_ost;
|
|
|
|
TQLabel *h_ostL;
|
|
|
|
|
|
|
|
PostNewsTechnical *d_ata;
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotGenMIdCBToggled(bool b);
|
|
|
|
void slotSelectionChanged();
|
|
|
|
void slotItemSelected(int id);
|
|
|
|
void slotAddBtnClicked();
|
|
|
|
void slotDelBtnClicked();
|
|
|
|
void slotEditBtnClicked();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT XHeaderConfDialog : public KDialogBase {
|
|
|
|
|
|
|
|
public:
|
|
|
|
XHeaderConfDialog(const TQString &h=TQString(), TQWidget *p=0, const char *n=0);
|
|
|
|
~XHeaderConfDialog();
|
|
|
|
|
|
|
|
TQString result();
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
KLineEdit *n_ame,
|
|
|
|
*v_alue;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT PostNewsComposerWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
PostNewsComposerWidget(PostNewsComposer *d, TQWidget *p=0, const char *n=0);
|
|
|
|
~PostNewsComposerWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
KIntSpinBox *m_axLen;
|
|
|
|
TQCheckBox *w_ordWrapCB,
|
|
|
|
*o_wnSigCB,
|
|
|
|
*r_ewrapCB,
|
|
|
|
*a_uthSigCB,
|
|
|
|
*c_ursorOnTopCB,
|
|
|
|
*e_xternCB;
|
|
|
|
KLineEdit *i_ntro,
|
|
|
|
*e_ditor;
|
|
|
|
|
|
|
|
PostNewsComposer *d_ata;
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotChooseEditor();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT PostNewsSpellingWidget : public TDECModule {
|
|
|
|
|
|
|
|
public:
|
|
|
|
PostNewsSpellingWidget(TQWidget *p=0, const char *n=0);
|
|
|
|
~PostNewsSpellingWidget();
|
|
|
|
|
|
|
|
void save();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
KSpellConfig *c_onf;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class KDE_EXPORT PrivacyWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
PrivacyWidget(TQWidget *p=0, const char *n=0);
|
|
|
|
~PrivacyWidget();
|
|
|
|
|
|
|
|
void save();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Kpgp::Config *c_onf;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//BEGIN: Cleanup configuration -----------------------------------------------
|
|
|
|
|
|
|
|
/** Configuration widget for group expireration */
|
|
|
|
class KDE_EXPORT GroupCleanupWidget : public TQWidget {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
GroupCleanupWidget( Cleanup *data, TQWidget *parent = 0, const char *name = 0 );
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void changed();
|
|
|
|
|
|
|
|
private:
|
|
|
|
TQCheckBox *mDefault, *mExpEnabled, *mExpUnavailable, *mPreserveThreads;
|
|
|
|
KIntSpinBox *mExpDays, *mExpReadDays, *mExpUnreadDays;
|
|
|
|
TQGroupBox *mExpGroup;
|
|
|
|
Cleanup *mData;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotDefaultToggled( bool state );
|
|
|
|
void expDaysChanged( int value );
|
|
|
|
void expReadDaysChanged( int value );
|
|
|
|
void expUnreadDaysChanged( int value );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Global cleanup configuration widget */
|
|
|
|
class KDE_EXPORT CleanupWidget : public TDECModule {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
CleanupWidget(TQWidget *p=0, const char *n=0);
|
|
|
|
~CleanupWidget();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TQCheckBox *f_olderCB;
|
|
|
|
KIntSpinBox *f_olderDays;
|
|
|
|
TQLabel *f_olderDaysL;
|
|
|
|
|
|
|
|
Cleanup *d_ata;
|
|
|
|
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotFolderCBtoggled(bool b);
|
|
|
|
void slotFolderDaysChanged(int value);
|
|
|
|
|
|
|
|
private:
|
|
|
|
GroupCleanupWidget *mGroupCleanup;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//END: Cleanup configuration -------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
/*class CacheWidget : public TDECModule {
|
|
|
|
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
CacheWidget(Cache *d, TQWidget *p=0, const char *n=0);
|
|
|
|
~CacheWidget();
|
|
|
|
|
|
|
|
void apply();
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
KIntSpinBox *m_emMaxArt,
|
|
|
|
*m_emMaxKB,
|
|
|
|
*d_iskMaxArt,
|
|
|
|
*d_iskMaxKB;
|
|
|
|
|
|
|
|
TQLabel *d_iskMaxArtL,
|
|
|
|
*d_iskMaxKBL;
|
|
|
|
|
|
|
|
Cache *d_ata;
|
|
|
|
|
|
|
|
|
|
|
|
}; */
|
|
|
|
|
|
|
|
|
|
|
|
} //KNConfig
|
|
|
|
|
|
|
|
#endif //KNCONFIGWIDGETS_H
|