Changeset View
Changeset View
Standalone View
Standalone View
src/datatypes/action.h
| Show All 28 Lines | |||||
| 29 | 29 | | |||
| 30 | /** Base class for actions. | 30 | /** Base class for actions. | ||
| 31 | * @see https://schema.org/Action | 31 | * @see https://schema.org/Action | ||
| 32 | */ | 32 | */ | ||
| 33 | class KITINERARY_EXPORT Action | 33 | class KITINERARY_EXPORT Action | ||
| 34 | { | 34 | { | ||
| 35 | KITINERARY_BASE_GADGET(Action) | 35 | KITINERARY_BASE_GADGET(Action) | ||
| 36 | KITINERARY_PROPERTY(QUrl, target, setTarget) | 36 | KITINERARY_PROPERTY(QUrl, target, setTarget) | ||
| 37 | KITINERARY_PROPERTY(QVariant, result, setResult) | ||||
| 37 | protected: | 38 | protected: | ||
| 38 | ///@cond internal | 39 | ///@cond internal | ||
| 39 | QExplicitlySharedDataPointer<ActionPrivate> d; | 40 | QExplicitlySharedDataPointer<ActionPrivate> d; | ||
| 40 | ///@endcond | 41 | ///@endcond | ||
| 41 | }; | 42 | }; | ||
| 42 | 43 | | |||
| 43 | /** Cancel action. | 44 | /** Cancel action. | ||
| 44 | * @see https://schema.org/CancelAction | 45 | * @see https://schema.org/CancelAction | ||
| ▲ Show 20 Lines • Show All 49 Lines • Show Last 20 Lines | |||||