akregator/src
addfeedwidgetbase.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef ADDFEEDWIDGET_H
00010 #define ADDFEEDWIDGET_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 class QLabel;
00020 class KLineEdit;
00021 class KSqueezedTextLabel;
00022
00023 namespace Akregator {
00024 class AddFeedWidgetBase : public QWidget
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 AddFeedWidgetBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00030 ~AddFeedWidgetBase();
00031
00032 QLabel* pixmapLabel1;
00033 KLineEdit* urlEdit;
00034 QLabel* textLabel1;
00035 QLabel* textLabel3;
00036 KSqueezedTextLabel* statusLabel;
00037
00038 protected:
00039 QVBoxLayout* AddFeedWidgetLayout;
00040 QSpacerItem* spacer5;
00041 QHBoxLayout* layout16;
00042 QSpacerItem* spacer2;
00043 QGridLayout* layout15;
00044
00045 protected slots:
00046 virtual void languageChange();
00047
00048 };
00049 }
00050
00051 #endif // ADDFEEDWIDGET_H
|