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.
konversation/konversation/src/ignore_preferences.h

60 lines
1.5 KiB

/*
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.
*/
/*
Copyright (C) 2006 Dario Abatianni <eisfuchs@tigress.com>
Copyright (C) 2006 John Tapsell <johnflux@gmail.com>
*/
#ifndef IGNORE_CONFIG_H
#define IGNORE_CONFIG_H
#include "ignore_preferencesui.h"
#include "konvisettingspage.h"
#include <tqptrlist.h>
#include <tqlistview.h>
class Ignore;
class Ignore_Config : public Ignore_ConfigUI, public KonviSettingsPage
{
Q_OBJECT
public:
explicit Ignore_Config( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
~Ignore_Config();
TQString flagNames;
virtual void restorePageToDefaults();
virtual void saveSettings();
virtual void loadSettings();
virtual bool hasChanged();
private:
TQStringList m_oldIgnoreList;
TQStringList currentIgnoreList(); // in hasChanged() format
TQPtrList<Ignore> getIgnoreList(); // in prefs format
void updateEnabledness();
public slots:
virtual void languageChange();
protected slots:
void newIgnore();
void removeIgnore();
void flagCheckboxChanged();
void select(TQListViewItem* item);
void removeAllIgnore();
signals:
void modified();
};
#endif // IGNORE_CONFIG_H