Marble

GeoDataSoundCue.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2013 Illya Kovalevskyy <illya.kovalevskyy@gmail.com>
4//
5
6#ifndef GEODATASOUNDCUE_H
7#define GEODATASOUNDCUE_H
8
9#include "GeoDataTourPrimitive.h"
10
11#include <QString>
12
13namespace Marble
14{
15
16/**
17 */
18class GEODATA_EXPORT GeoDataSoundCue : public GeoDataTourPrimitive
19{
20public:
21 GeoDataSoundCue();
22 ~GeoDataSoundCue() override;
23
24 bool operator==(const GeoDataSoundCue &other) const;
25 bool operator!=(const GeoDataSoundCue &other) const;
26 const char *nodeType() const override;
27
28 QString href() const;
29 void setHref(const QString &url);
30
31 double delayedStart() const;
32 void setDelayedStart(double pause);
33
34private:
35 QString m_href;
36 double m_delayedStart;
37};
38
39} // namespace Marble
40
41#endif // GEODATASOUNDCUE_H
Q_SCRIPTABLE Q_NOREPLY void pause()
KIOCORE_EXPORT bool operator!=(const UDSEntry &entry, const UDSEntry &other)
KIOCORE_EXPORT bool operator==(const UDSEntry &entry, const UDSEntry &other)
Binds a QML item to a specific geodetic location in screen coordinates.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:37:03 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.