Syndication

imagerdfimpl.h
1/*
2 This file is part of the syndication library
3 SPDX-FileCopyrightText: 2006 Frank Osterfeld <osterfeld@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#ifndef SYNDICATION_MAPPER_IMAGERDFIMPL_H
9#define SYNDICATION_MAPPER_IMAGERDFIMPL_H
10
11#include <QString>
12#include <image.h>
13#include <rdf/image.h>
14
15namespace Syndication
16{
17class ImageRDFImpl;
18typedef QSharedPointer<ImageRDFImpl> ImageRDFImplPtr;
19
20/**
21 *
22 * @internal
23 * @author Frank Osterfeld
24 */
26{
27public:
28 explicit ImageRDFImpl(const Syndication::RDF::Image &image);
29
30 bool isNull() const override;
31
32 QString url() const override;
33
34 QString title() const override;
35
36 QString link() const override;
37
38 QString description() const override;
39
40 uint width() const override;
41
42 uint height() const override;
43
44private:
46};
47
48} // namespace Syndication
49
50#endif // SYNDICATION_MAPPER_IMAGERDFIMPL_H
uint width() const override
The width of the image in pixels.
QString description() const override
optional text that can be included in the TITLE attribute of the link formed around the image in HTML...
bool isNull() const override
returns whether this image is a null object.
QString url() const override
the URL of a GIF, JPEG or PNG image
uint height() const override
The height of the image in pixels.
QString title() const override
Describes the image, can be used in the ALT attribute of the HTML <img> tag when the channel is rende...
QString link() const override
The URL of the site, when the channel is rendered, the image should be a link to the site.
This class represents an image file on the web.
Definition image.h:31
An image to be associated with an HTML rendering of the channel.
Definition rdf/image.h:27
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:15 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.