File indexing completed on 2024-12-29 05:00:27

0001 /*
0002  *   SPDX-FileCopyrightText: 2017 Weng Xuetian <wengxt@gmail.com>
0003  *
0004  *   SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #pragma once
0008 
0009 #include "potdprovider.h"
0010 
0011 class KJob;
0012 
0013 /**
0014  * This class provides the image for the Bing's homepage
0015  * url is obtained from https://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1
0016  */
0017 class BingProvider : public PotdProvider
0018 {
0019     Q_OBJECT
0020 
0021 public:
0022     explicit BingProvider(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
0023 
0024 private:
0025     void pageRequestFinished(KJob *job);
0026     void imageRequestFinished(KJob *job);
0027 
0028     int m_screenWidth;
0029     int m_screenHeight;
0030 };