Send correct mouse wheel events when scaling is enabled.
[kdenetwork.git] / knewsticker / feedsettingswidget.h
blob1f31a3624afe68778498d1bd97e4c6c410e167bc
1 /*
2 * feedsettingswidget.cpp
4 * Copyright (c) 2007 Frerich Raabe <raabe@kde.org>
6 * This program is distributed in the hope that it will be useful, but WITHOUT
7 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
8 * FOR A PARTICULAR PURPOSE. For licensing and distribution details, check the
9 * accompanying file 'COPYING'.
11 #ifndef FEEDSETTINGSWIDGET_H
12 #define FEEDSETTINGSWIDGET_H
14 #include "ui_feedsettings.h"
16 #include <QWidget>
18 class KProgressDialog;
19 class QListWidgetItem;
21 class FeedSettingsWidget : public QWidget
23 Q_OBJECT
24 public:
25 FeedSettingsWidget( QWidget *parent );
27 QStringList feedUrls() const;
29 private Q_SLOTS:
30 void feedItemChanged();
31 void addButtonClicked();
32 void removeButtonClicked();
33 void feedLoaded( const QUrl &url );
35 private:
36 Ui::FeedSettings ui;
37 KProgressDialog *m_downloadMessageBox;
38 QString m_addedFeedUrl;
41 #endif // !defined(FEEDSETTINGSWIDGET_H)