summaryrefslogtreecommitdiffstats
path: root/akregator/src/settings_advanced.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/settings_advanced.cpp')
-rw-r--r--akregator/src/settings_advanced.cpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/akregator/src/settings_advanced.cpp b/akregator/src/settings_advanced.cpp
new file mode 100644
index 00000000..5d125483
--- /dev/null
+++ b/akregator/src/settings_advanced.cpp
@@ -0,0 +1,54 @@
+#include "akregatorconfig.h"
+#include "settings_advanced.h"
+#include "storagefactory.h"
+#include "storagefactoryregistry.h"
+
+#include <qpushbutton.h>
+#include <qstringlist.h>
+#include <qwidget.h>
+
+#include <kcombobox.h>
+
+namespace Akregator {
+
+SettingsAdvanced::SettingsAdvanced(QWidget* parent, const char* name) : SettingsAdvancedBase(parent, name)
+{
+
+ QStringList backends = Backend::StorageFactoryRegistry::self()->list();
+ QString tname;
+ int i = 0;
+ QStringList::Iterator end( backends.end() );
+ for (QStringList::Iterator it = backends.begin(); it != end; ++it)
+ {
+ m_factories[i] = Backend::StorageFactoryRegistry::self()->getFactory(*it);
+ m_keyPos[m_factories[i]->key()] = i;
+ cbBackend->insertItem(m_factories[i]->name());
+ i++;
+ }
+ connect(pbBackendConfigure, SIGNAL(clicked()), this, SLOT(slotConfigureStorage()));
+ connect(cbBackend, SIGNAL(activated(int)), this, SLOT(slotFactorySelected(int)));
+}
+
+QString SettingsAdvanced::selectedFactory() const
+{
+ return m_factories[cbBackend->currentItem()]->key();
+}
+
+void SettingsAdvanced::selectFactory(const QString& key)
+{
+ cbBackend->setCurrentItem(m_keyPos[key]);
+ pbBackendConfigure->setEnabled((m_factories[m_keyPos[key]]->isConfigurable()));
+}
+
+void SettingsAdvanced::slotConfigureStorage()
+{
+ m_factories[cbBackend->currentItem()]->configure();
+}
+
+void SettingsAdvanced::slotFactorySelected(int pos)
+{
+ pbBackendConfigure->setEnabled(m_factories[pos]->isConfigurable());
+}
+
+} //namespace Akregator
+#include "settings_advanced.moc"