7#include <QtCore/qstring.h>
8#include <QtCore/qurl.h>
21
22
23
24
25
26
27
28
29
30
31
32
33
36
37
38QHelpSearchResult::QHelpSearchResult() : d(
new QHelpSearchResultData) { }
41
42
43QHelpSearchResult::QHelpSearchResult(
const QHelpSearchResult &other) =
default;
46
47
48
49QHelpSearchResult::QHelpSearchResult(
const QUrl &url,
const QString &title,
const QString &snippet)
50 : d(
new QHelpSearchResultData)
54 d->m_snippet = snippet;
58
59
60QHelpSearchResult::~QHelpSearchResult() =
default;
63
64
65QHelpSearchResult &QHelpSearchResult::operator=(
const QHelpSearchResult &other) =
default;
68
69
70QString QHelpSearchResult::title()
const
76
77
78QUrl QHelpSearchResult::url()
const
84
85
86QString QHelpSearchResult::snippet()
const
Combined button and popup list for selecting options.