/usr/include/kcal/alarm.h is in kdepimlibs5-dev 4:4.14.2-2+deb8u2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 | /*
This file is part of the kcal library.
Copyright (c) 2001-2003 Cornelius Schumacher <schumacher@kde.org>
Copyright (c) 2003 David Jarvie <software@astrojar.org.uk>
Copyright (c) 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
/**
@file
This file is part of the API for handling calendar data and
defines the Alarm class.
@author Cornelius Schumacher \<schumacher@kde.org\>
*/
#ifndef KCAL_ALARM_H
#define KCAL_ALARM_H
#include <QtCore/QString>
#include <QtCore/QStringList>
#include <QtCore/QList>
#include <kdatetime.h>
#include "customproperties.h"
#include "duration.h"
#include "person.h"
#include "listbase.h"
#include "kcal_export.h"
#include <kpimutils/supertrait.h>
namespace boost {
template <typename T> class shared_ptr;
}
namespace KCal {
class Incidence;
/**
@brief
Represents an alarm notification.
Alarms are user notifications that occur at specified times.
Notifications can be on-screen pop-up dialogs, email messages,
the playing of audio files, or the running of another program.
Alarms always belong to a parent Incidence.
*/
class KCAL_DEPRECATED_EXPORT Alarm : public CustomProperties
{
public:
/**
The different types of alarms.
*/
enum Type {
Invalid, /**< Invalid, or no alarm */
Display, /**< Display a dialog box */
Procedure, /**< Call a script */
Email, /**< Send email */
Audio /**< Play an audio file */
};
/**
List of alarms.
*/
typedef ListBase<Alarm> List;
/**
A shared pointer to a Alarm object.
*/
typedef boost::shared_ptr<Alarm> Ptr;
/**
Constructs an alarm belonging to the @p parent Incidence.
@param parent is the Incidence this alarm will belong to.
*/
explicit Alarm( Incidence *parent );
/**
Copy constructor.
@param other is the alarm to copy.
*/
Alarm( const Alarm &other );
/**
Destroys the alarm.
*/
virtual ~Alarm();
/**
Assignment operator.
@since 4.5
*/
Alarm &operator=( const Alarm & );
/**
Compares two alarms for equality.
@param a is the comparison alarm.
*/
bool operator==( const Alarm &a ) const;
/**
Compares two alarms for inequality.
@param a is the comparison alarm.
*/
bool operator!=( const Alarm &a ) const { return !operator==( a ); }
/**
Sets the @p parent Incidence of the alarm.
@param parent is alarm parent Incidence to set.
@see parent()
*/
void setParent( Incidence *parent );
/**
Returns a pointer to the parent incidence of the alarm.
@see setParent()
*/
Incidence *parent() const;
/**
Sets the #Type for this alarm to @p type.
If the specified type is different from the current type of the alarm,
then the alarm's type-specific properties are re-initialized.
@param type is the alarm #Type to set.
@see type()
*/
void setType( Type type );
/**
Returns the #Type of the alarm.
@see setType()
*/
Type type() const;
/**
Sets the #Display type for this alarm.
If @p text is specified non-empty, then it is used as the description
text to display when the alarm is triggered.
@param text is the description to display when the alarm is triggered.
@see setText(), text()
*/
void setDisplayAlarm( const QString &text = QString() );
/**
Sets the description @p text to be displayed when the alarm is triggered.
Ignored if the alarm is not a display alarm.
@param text is the description to display when the alarm is triggered.
@see setDisplayAlarm(), text()
*/
void setText( const QString &text );
/**
Returns the display text string for a #Display alarm type.
Returns an empty string if the alarm is not a #Display type.
@see setDisplayAlarm(), setText()
*/
QString text() const;
/**
Sets the #Audio type for this alarm and the name of the audio file
to play when the alarm is triggered.
@param audioFile is the name of the audio file to play when the alarm
is triggered.
@see setAudioFile(), audioFile()
*/
void setAudioAlarm( const QString &audioFile = QString() );
/**
Sets the name of the audio file to play when the audio alarm is triggered.
Ignored if the alarm is not an #Audio type.
@param audioFile is the name of the audio file to play when the alarm
is triggered.
@see setAudioAlarm(), audioFile()
*/
void setAudioFile( const QString &audioFile );
/**
Returns the audio file name for an #Audio alarm type.
Returns an empty string if the alarm is not an #Audio type.
@see setAudioAlarm(), setAudioFile()
*/
QString audioFile() const;
/**
Sets the #Procedure type for this alarm and the program (with arguments)
to execute when the alarm is triggered.
@param programFile is the name of the program file to execute when
the alarm is triggered.
@param arguments is a string of arguments to supply to @p programFile.
@see setProgramFile(), programFile(),
setProgramArguments(), programArguments()
*/
void setProcedureAlarm( const QString &programFile,
const QString &arguments = QString() );
/**
Sets the program file to execute when the alarm is triggered.
Ignored if the alarm is not a #Procedure type.
@param programFile is the name of the program file to execute when
the alarm is triggered.
@see setProcedureAlarm(), programFile(),
setProgramArguments(), programArguments()
*/
void setProgramFile( const QString &programFile );
/**
Returns the program file name for a #Procedure alarm type.
Returns an empty string if the alarm is not a #Procedure type.
@see setProcedureAlarm(), setProgramFile(),
setProgramArguments(), programArguments()
*/
QString programFile() const;
/**
Sets the program arguments string when the alarm is triggered.
Ignored if the alarm is not a #Procedure type.
@param arguments is a string of arguments to supply to the program.
@see setProcedureAlarm(), setProgramFile(), programFile(),
programArguments()
*/
void setProgramArguments( const QString &arguments );
/**
Returns the program arguments string for a #Procedure alarm type.
Returns an empty string if the alarm is not a #Procedure type.
@see setProcedureAlarm(), setProgramFile(), programFile(),
setProgramArguments()
*/
QString programArguments() const;
/**
Sets the #Email type for this alarm and the email @p subject, @p text,
@p addresses, and @p attachments that make up an email message to be
sent when the alarm is triggered.
@param subject is the email subject.
@param text is a string containing the body of the email message.
@param addressees is Person list of email addresses.
@param attachments is a a QStringList of optional file names
of email attachments.
@see setMailSubject(), setMailText(), setMailAddresses(),
setMailAttachments()
*/
void setEmailAlarm( const QString &subject, const QString &text,
const QList<Person> &addressees,
const QStringList &attachments = QStringList() );
/**
Sets the email address of an #Email type alarm.
Ignored if the alarm is not an #Email type.
@param mailAlarmAddress is a Person to receive a mail message when
an #Email type alarm is triggered.
@see setMailSubject(), setMailText(), setMailAddresses(),
setMailAttachment(), setMailAttachments(), mailAddresses()
*/
void setMailAddress( const Person &mailAlarmAddress );
/**
Sets a list of email addresses of an #Email type alarm.
Ignored if the alarm is not an #Email type.
@param mailAlarmAddresses is a Person list to receive a mail message
when an #Email type alarm is triggered.
@see setMailSubject(), setMailText(), setMailAddress(),
setMailAttachments(), setMailAttachment(), mailAddresses()
*/
void setMailAddresses( const QList<Person> &mailAlarmAddresses );
/**
Adds an address to the list of email addresses to send mail to when the
alarm is triggered.
Ignored if the alarm is not an #Email type.
@param mailAlarmAddress is a Person to add to the list of addresses to
receive a mail message when an #Email type alarm is triggered.
@see setMailAddress(), setMailAddresses(), mailAddresses()
*/
void addMailAddress( const Person &mailAlarmAddress );
/**
Returns the list of addresses for an #Email alarm type.
Returns an empty list if the alarm is not an #Email type.
@see addMailAddress(), setMailAddress(), setMailAddresses()
*/
QList<Person> mailAddresses() const;
/**
Sets the subject line of a mail message for an #Email alarm type.
Ignored if the alarm is not an #Email type.
@param mailAlarmSubject is a string to be used as a subject line
of an email message to send when the #Email type alarm is triggered.
@see setMailText(), setMailAddress(), setMailAddresses(),
setMailAttachment(), setMailAttachments(), mailSubject()
*/
void setMailSubject( const QString &mailAlarmSubject );
/**
Returns the subject line string for an #Email alarm type.
Returns an empty string if the alarm is not an #Email type.
@see setMailSubject()
*/
QString mailSubject() const;
/**
Sets the filename to attach to a mail message for an #Email alarm type.
Ignored if the alarm is not an #Email type.
@param mailAttachFile is a string containing a filename to be attached
to an email message to send when the #Email type alarm is triggered.
@see setMailSubject(), setMailText(), setMailAddress(),
setMailAddresses(), setMailAttachments(), mailAttachments()
*/
void setMailAttachment( const QString &mailAttachFile );
/**
Sets a list of filenames to attach to a mail message for an #Email
alarm type. Ignored if the alarm is not an #Email type.
@param mailAttachFiles is a QString list of filenames to attach to
a mail message when an #Email type alarm is triggered.
@see setMailSubject(), setMailText(), setMailAttachment(),
setMailAddress(), setMailAddresses()
*/
void setMailAttachments( const QStringList &mailAttachFiles );
/**
Adds a filename to the list of files to attach to a mail message for
an #Email alarm type. Ignored if the alarm is not an #Email type.
@param mailAttachFile is a string containing a filename to be attached
to an email message to send when the #Email type alarm is triggered.
@see setMailAttachment(), setMailAttachments(), mailAttachments()
*/
void addMailAttachment( const QString &mailAttachFile );
/**
Returns the list of attachment filenames for an #Email alarm type.
Returns an empty list if the alarm is not an #Email type.
@see addMailAttachment(), setMailAttachment(), setMailAttachments()
*/
QStringList mailAttachments() const;
/**
Sets the body text for an #Email alarm type.
Ignored if the alarm is not an #Email type.
@param text is a string containing the body text of a mail message
when an #Email type alarm is triggered.
@see setMailSubject(), setMailAddress(), setMailAddresses(),
setMailAttachment(), setMailAttachments()
*/
void setMailText( const QString &text );
/**
Returns the body text for an #Email alarm type.
Returns an empty string if the alarm is not an #Email type.
@see setMailText()
*/
QString mailText() const;
/**
Sets the trigger time of the alarm.
@param alarmTime is the KDateTime alarm trigger.
@see time()
*/
void setTime( const KDateTime &alarmTime );
/**
Returns the alarm trigger date/time.
@see setTime()
*/
KDateTime time() const;
/**
Returns the date/time when the last repetition of the alarm goes off.
If the alarm does not repeat this is equivalent to calling time().
@see setTime()
*/
KDateTime endTime() const;
/**
Returns true if the alarm has a trigger date/time.
*/
bool hasTime() const;
/**
Sets the alarm offset relative to the start of the parent Incidence.
@param offset is a Duration to be used as a time relative to the
start of the parent Incidence to be used as the alarm trigger.
@see setEndOffset(), startOffset(), endOffset()
*/
void setStartOffset( const Duration &offset );
/**
Returns offset of alarm in time relative to the start of the parent
Incidence. If the alarm's time is not defined in terms of an offset
relative to the start of the event, returns zero.
@see setStartOffset(), hasStartOffset()
*/
Duration startOffset() const;
/**
Returns whether the alarm is defined in terms of an offset relative
to the start of the parent Incidence.
@see startOffset(), setStartOffset()
*/
bool hasStartOffset() const;
/**
Sets the alarm offset relative to the end of the parent Incidence.
@param offset is a Duration to be used as a time relative to the
end of the parent Incidence to be used as the alarm trigger.
@see setStartOffset(), startOffset(), endOffset()
*/
void setEndOffset( const Duration &offset );
/**
Returns offset of alarm in time relative to the end of the event.
If the alarm's time is not defined in terms of an offset relative
to the end of the event, returns zero.
@see setEndOffset(), hasEndOffset()
*/
Duration endOffset() const;
/**
Returns whether the alarm is defined in terms of an offset relative
to the end of the event.
@see endOffset(), setEndOffset()
*/
bool hasEndOffset() const;
/**
Shift the times of the alarm so that they appear at the same clock
time as before but in a new time zone. The shift is done from a viewing
time zone rather than from the actual alarm time zone.
For example, shifting an alarm whose start time is 09:00 America/New York,
using an old viewing time zone (@p oldSpec) of Europe/London, to a new
time zone (@p newSpec) of Europe/Paris, will result in the time being
shifted from 14:00 (which is the London time of the alarm start) to
14:00 Paris time.
@param oldSpec the time specification which provides the clock times
@param newSpec the new time specification
*/
void shiftTimes( const KDateTime::Spec &oldSpec,
const KDateTime::Spec &newSpec );
/**
Sets the snooze time interval for the alarm.
@param alarmSnoozeTime the time between snoozes.
@see snoozeTime()
*/
void setSnoozeTime( const Duration &alarmSnoozeTime );
/**
Returns the snooze time interval.
@see setSnoozeTime()
*/
Duration snoozeTime() const;
/**
Sets how many times an alarm is to repeat itself after its initial
occurrence (w/snoozes).
@param alarmRepeatCount is the number of times an alarm may repeat,
excluding the initial occurrence.
@see repeatCount()
*/
void setRepeatCount( int alarmRepeatCount );
/**
Returns how many times an alarm may repeats after its initial occurrence.
@see setRepeatCount()
*/
int repeatCount() const;
/**
Returns the date/time of the alarm's initial occurrence or its next
repetition after a given time.
@param preTime the date/time after which to find the next repetition.
@return the date/time of the next repetition, or an invalid date/time
if the specified time is at or after the alarm's last repetition.
@see previousRepetition()
*/
KDateTime nextRepetition( const KDateTime &preTime ) const;
/**
Returns the date/time of the alarm's latest repetition or, if none,
its initial occurrence before a given time.
@param afterTime is the date/time before which to find the latest
repetition.
@return the date and time of the latest repetition, or an invalid
date/time if the specified time is at or before the alarm's initial
occurrence.
@see nextRepetition()
*/
KDateTime previousRepetition( const KDateTime &afterTime ) const;
/**
Returns the interval between the alarm's initial occurrence and
its final repetition.
*/
Duration duration() const;
/**
Toggles the alarm status, i.e, an enable alarm becomes disabled
and a disabled alarm becomes enabled.
@see enabled(), setEnabled()
*/
void toggleAlarm();
/**
Sets the enabled status of the alarm.
@param enable if true, then enable the alarm; else disable the alarm.
@see enabled(), toggleAlarm()
*/
void setEnabled( bool enable );
/**
Returns the alarm enabled status: true (enabled) or false (disabled).
@see setEnabled(), toggleAlarm()
*/
bool enabled() const;
protected:
/**
@copydoc
CustomProperties::customPropertyUpdated()
*/
virtual void customPropertyUpdated();
private:
//@cond PRIVATE
class Private;
Private *const d;
//@endcond
};
}
#endif
|