korganizer
htmlexportsettings.cpp
Go to the documentation of this file.
21 mEMailItem = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "EMail" ), mEMail );
24 mEMailItem->setWhatsThis( i18n("Enter the email address to print for the owner of the calendar.") );
26 mCreditNameItem = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Credit Name" ), mCreditName );
29 mCreditNameItem->setWhatsThis( i18n("Enter a creator application of the calendar, for example KOrganizer.") );
31 mCreditURLItem = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Credit URL" ), mCreditURL );
34 mCreditURLItem->setWhatsThis( i18n("Enter the URL of the creator application of the calendar, for example http://userbase.kde.org/KOrganizer") );
36 mPageTitleItem = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Page Title" ), mPageTitle, i18n("Calendar") );
41 mDateStartItem = new KConfigSkeleton::ItemDateTime( currentGroup(), QLatin1String( "Date Start" ), mDateStart );
46 mDateEndItem = new KConfigSkeleton::ItemDateTime( currentGroup(), QLatin1String( "Date End" ), mDateEnd );
51 mOutputFileItem = new KConfigSkeleton::ItemPath( currentGroup(), QLatin1String( "Output File" ), mOutputFile, QLatin1String( "$HOME/calendar.html" ) );
56 mStyleSheetItem = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Style Sheet" ), mStyleSheet );
59 mStyleSheetItem->setWhatsThis( i18n("CSS style sheet to be used by the final HTML page. This string contains the actual contents of the CSS, not a path to the style sheet.") );
61 mExcludePrivateItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Exclude Private" ), mExcludePrivate, true );
64 mExcludePrivateItem->setWhatsThis( i18n("Check this box if you do NOT want to export your private items.") );
66 mExcludeConfidentialItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Exclude Confidential" ), mExcludeConfidential, true );
69 mExcludeConfidentialItem->setWhatsThis( i18n("Check this box if you do NOT want to export your confidential items.") );
74 mEventViewItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Event View" ), mEventView, false );
79 mMonthViewItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Month View" ), mMonthView, true );
82 mMonthViewItem->setWhatsThis( i18n("Check this box if you want your events shown in a month view.") );
84 mWeekViewItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Week View" ), mWeekView, false );
87 mWeekViewItem->setWhatsThis( i18n("Check this box if you want your events shown in a week view.") );
89 mEventTitleItem = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Title" ), mEventTitle, i18n("Calendar") );
92 mEventTitleItem->setWhatsThis( i18n("Enter a string to use for the title of the event calendar.") );
94 mEventLocationItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Export Location" ), mEventLocation, true );
97 mEventLocationItem->setWhatsThis( i18n("Check this box if you want the event locations to be exported, only if the event has a location.") );
99 mEventCategoriesItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Export Categories" ), mEventCategories, true );
102 mEventCategoriesItem->setWhatsThis( i18n("Check this box if you want the event categories to be exported.") );
104 mEventAttendeesItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Export Attendees" ), mEventAttendees, false );
107 mEventAttendeesItem->setWhatsThis( i18n("Check this box if you want the event attendees to be exported.") );
112 mTodoViewItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Todo View" ), mTodoView, true );
115 mTodoViewItem->setWhatsThis( i18n("Check this box if you want your to-do list to also be exported to the HTML.") );
117 mTodoListTitleItem = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "TodoList Title" ), mTodoListTitle, i18n("To-do List") );
120 mTodoListTitleItem->setWhatsThis( i18n("Enter a string to use for the title of the to-do list.") );
122 mTaskDueDateItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Export Due Date" ), mTaskDueDate, true );
125 mTaskDueDateItem->setWhatsThis( i18n("Check this box if you want the to-do list due dates to be exported, if the to-do does have a due date.") );
127 mTaskLocationItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Export Location" ), mTaskLocation, true );
130 mTaskLocationItem->setWhatsThis( i18n("Check this box if you want the to-do locations to be exported, only if the to-do has a location.") );
132 mTaskCategoriesItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Export Categories" ), mTaskCategories, true );
135 mTaskCategoriesItem->setWhatsThis( i18n("Check this box if you want the to-do categories to be exported.") );
137 mTaskAttendeesItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Export Attendees" ), mTaskAttendees, false );
140 mTaskAttendeesItem->setWhatsThis( i18n("Check this box if you want the to-do attendees to be exported.") );
145 mJournalViewItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Journal View" ), mJournalView, false );
148 mJournalViewItem->setWhatsThis( i18n("Check this box if you want to export journals as well.") );
150 mJournalTitleItem = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Journal Title" ), mJournalTitle, i18n("Journals") );
153 mJournalTitleItem->setWhatsThis( i18n("Enter a title for the Journal list, if Journals are exported.") );
158 mFreeBusyViewItem = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "FreeBusy View" ), mFreeBusyView, false );
161 mFreeBusyViewItem->setWhatsThis( i18n("Check this box if you want to export free/busy information as well.") );
163 mFreeBusyTitleItem = new KConfigSkeleton::ItemString( currentGroup(), QLatin1String( "Free/Busy Title" ), mFreeBusyTitle, i18n("Busy times") );
166 mFreeBusyTitleItem->setWhatsThis( i18n("Enter a title for the free/busy list, if free/busy times are exported.") );
bool mExcludeConfidential
Definition: htmlexportsettings.h:734
QString mParamapplication
Definition: htmlexportsettings.h:721
~HTMLExportSettings()
Definition: htmlexportsettings.cpp:170
HTMLExportSettings(const QString &application)
Definition: htmlexportsettings.cpp:10
This file is part of the KDE documentation.
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:56:19 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:56:19 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.