X-Git-Url: http://git.maemo.org/git/?p=qtmads;a=blobdiff_plain;f=src%2Fqtmadsbannerad.h;fp=src%2Fqtmadsbannerad.h;h=b0173729347916386b7e6244d087e71ce0830856;hp=0000000000000000000000000000000000000000;hb=e494cd05f1809789fd03d888c5592753d04f2031;hpb=4c87a3c868d40870d0eed21fb6e01c014acd3062 diff --git a/src/qtmadsbannerad.h b/src/qtmadsbannerad.h new file mode 100644 index 0000000..b017372 --- /dev/null +++ b/src/qtmadsbannerad.h @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2009 Eetu Lehmusvuo. + * + * This file is part of QtMAds. + * + * QtMAds is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * QtMAds is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with QtMAds. If not, see . + * + */ + +#ifndef QTMADSBANNERAD_H +#define QTMADSBANNERAD_H + +#include "qtmadsadwidget.h" + +class QWebView; + +class QtmadsBannerAd : public QtmadsAdWidget +{ + Q_OBJECT + +public: + QtmadsBannerAd(QString service, quint32 id = 0, AdFit fitting = noFit, QWidget *parent = 0); + ~QtmadsBannerAd(); + + virtual void getAdAsHash(QHash &adParams); + virtual ParseState parseFromParameters(QHash &ad); + + void setAdFontSize(quint32 fontSize); + void setAsBannerAd(bool isOnlyBannerAd = true); + void setAsTextBannerAd(bool isOnlyTextBannerAd = true); + +public slots: + virtual void clearAd(); + +private: + QWebView *webView; +}; + +#endif // QTMADSBANNERAD_H