• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdepim API Reference
  • KDE Home
  • Contact Us
 

korganizer

  • sources
  • kde-4.12
  • kdepim
  • korganizer
koprefs_base.h
Go to the documentation of this file.
1 // This file is generated by kconfig_compiler from korganizer.kcfg.
2 // All changes you do to this file will be lost.
3 #ifndef KOPREFSBASE_H
4 #define KOPREFSBASE_H
5 
6 #include <kglobal.h>
7 #include <kconfigskeleton.h>
8 #include <kdebug.h>
9 
10 #include <klocale.h>
11 class KOPrefsBase : public KConfigSkeleton
12 {
13  public:
14  enum EnumDestination { standardDestination, askDestination };
15  enum EnumAgendaViewColors { CategoryInsideResourceOutside, ResourceInsideCategoryOutside, CategoryOnly, ResourceOnly };
16  enum EnumAgendaViewCalendarDisplay { CalendarsMerged, CalendarsSideBySide, AllCalendarViews };
17  enum EnumMonthViewColors { MonthItemCategoryInsideResourceOutside, MonthItemResourceInsideCategoryOutside, MonthItemCategoryOnly, MonthItemResourceOnly };
18  enum EnumDefaultTodoAttachMethod { TodoAttachAsk, TodoAttachLink, TodoAttachInlineFull };
19 
20  KOPrefsBase( );
21  ~KOPrefsBase();
22 
26  void setAutoExport( bool v )
27  {
28  if (!isImmutable( QString::fromLatin1( "AutoExport" ) ))
29  mAutoExport = v;
30  }
31 
35  bool autoExport() const
36  {
37  return mAutoExport;
38  }
39 
43  ItemBool *autoExportItem()
44  {
45  return mAutoExportItem;
46  }
47 
51  void setAutoExportInterval( int v )
52  {
53  if (v < 1)
54  {
55  kDebug() << "setAutoExportInterval: value " << v << " is less than the minimum value of 1";
56  v = 1;
57  }
58  if (!isImmutable( QString::fromLatin1( "AutoExportInterval" ) ))
59  mAutoExportInterval = v;
60  }
61 
65  int autoExportInterval() const
66  {
67  return mAutoExportInterval;
68  }
69 
73  ItemInt *autoExportIntervalItem()
74  {
75  return mAutoExportIntervalItem;
76  }
77 
81  void setConfirm( bool v )
82  {
83  if (!isImmutable( QString::fromLatin1( "Confirm" ) ))
84  mConfirm = v;
85  }
86 
90  bool confirm() const
91  {
92  return mConfirm;
93  }
94 
98  ItemBool *confirmItem()
99  {
100  return mConfirmItem;
101  }
102 
106  void setDestination( int v )
107  {
108  if (!isImmutable( QString::fromLatin1( "Destination" ) ))
109  mDestination = v;
110  }
111 
115  int destination() const
116  {
117  return mDestination;
118  }
119 
123  ItemEnum *destinationItem()
124  {
125  return mDestinationItem;
126  }
127 
131  void setShowReminderDaemon( bool v )
132  {
133  if (!isImmutable( QString::fromLatin1( "ShowReminderDaemon" ) ))
134  mShowReminderDaemon = v;
135  }
136 
140  bool showReminderDaemon() const
141  {
142  return mShowReminderDaemon;
143  }
144 
148  ItemBool *showReminderDaemonItem()
149  {
150  return mShowReminderDaemonItem;
151  }
152 
156  void setTimeZoneId( const QString & v )
157  {
158  if (!isImmutable( QString::fromLatin1( "TimeZoneId" ) ))
159  mTimeZoneId = v;
160  }
161 
165  QString timeZoneId() const
166  {
167  return mTimeZoneId;
168  }
169 
173  ItemString *timeZoneIdItem()
174  {
175  return mTimeZoneIdItem;
176  }
177 
181  void setDayBegins( const QDateTime & v )
182  {
183  if (!isImmutable( QString::fromLatin1( "DayBegins" ) ))
184  mDayBegins = v;
185  }
186 
190  QDateTime dayBegins() const
191  {
192  return mDayBegins;
193  }
194 
198  ItemDateTime *dayBeginsItem()
199  {
200  return mDayBeginsItem;
201  }
202 
206  void setHolidays( const QString & v )
207  {
208  if (!isImmutable( QString::fromLatin1( "Holidays" ) ))
209  mHolidays = v;
210  }
211 
215  QString holidays() const
216  {
217  return mHolidays;
218  }
219 
223  ItemString *holidaysItem()
224  {
225  return mHolidaysItem;
226  }
227 
231  void setWorkingHoursStart( const QDateTime & v )
232  {
233  if (!isImmutable( QString::fromLatin1( "WorkingHoursStart" ) ))
234  mWorkingHoursStart = v;
235  }
236 
240  QDateTime workingHoursStart() const
241  {
242  return mWorkingHoursStart;
243  }
244 
248  ItemDateTime *workingHoursStartItem()
249  {
250  return mWorkingHoursStartItem;
251  }
252 
256  void setWorkingHoursEnd( const QDateTime & v )
257  {
258  if (!isImmutable( QString::fromLatin1( "WorkingHoursEnd" ) ))
259  mWorkingHoursEnd = v;
260  }
261 
265  QDateTime workingHoursEnd() const
266  {
267  return mWorkingHoursEnd;
268  }
269 
273  ItemDateTime *workingHoursEndItem()
274  {
275  return mWorkingHoursEndItem;
276  }
277 
281  void setExcludeHolidays( bool v )
282  {
283  if (!isImmutable( QString::fromLatin1( "ExcludeHolidays" ) ))
284  mExcludeHolidays = v;
285  }
286 
290  bool excludeHolidays() const
291  {
292  return mExcludeHolidays;
293  }
294 
298  ItemBool *excludeHolidaysItem()
299  {
300  return mExcludeHolidaysItem;
301  }
302 
306  void setColorMonthBusyDaysEnabled( bool v )
307  {
308  if (!isImmutable( QString::fromLatin1( "ColorMonthBusyDaysEnabled" ) ))
309  mColorMonthBusyDaysEnabled = v;
310  }
311 
315  bool colorMonthBusyDaysEnabled() const
316  {
317  return mColorMonthBusyDaysEnabled;
318  }
319 
323  ItemBool *colorMonthBusyDaysEnabledItem()
324  {
325  return mColorMonthBusyDaysEnabledItem;
326  }
327 
331  void setEnableToolTips( bool v )
332  {
333  if (!isImmutable( QString::fromLatin1( "EnableToolTips" ) ))
334  mEnableToolTips = v;
335  }
336 
340  bool enableToolTips() const
341  {
342  return mEnableToolTips;
343  }
344 
348  ItemBool *enableToolTipsItem()
349  {
350  return mEnableToolTipsItem;
351  }
352 
356  void setTodosUseCategoryColors( bool v )
357  {
358  if (!isImmutable( QString::fromLatin1( "TodosUseCategoryColors" ) ))
359  mTodosUseCategoryColors = v;
360  }
361 
365  bool todosUseCategoryColors() const
366  {
367  return mTodosUseCategoryColors;
368  }
369 
373  ItemBool *todosUseCategoryColorsItem()
374  {
375  return mTodosUseCategoryColorsItem;
376  }
377 
381  void setNextXDays( int v )
382  {
383  if (!isImmutable( QString::fromLatin1( "NextXDays" ) ))
384  mNextXDays = v;
385  }
386 
390  int nextXDays() const
391  {
392  return mNextXDays;
393  }
394 
398  ItemInt *nextXDaysItem()
399  {
400  return mNextXDaysItem;
401  }
402 
406  void setDailyRecur( bool v )
407  {
408  if (!isImmutable( QString::fromLatin1( "DailyRecur" ) ))
409  mDailyRecur = v;
410  }
411 
415  bool dailyRecur() const
416  {
417  return mDailyRecur;
418  }
419 
423  ItemBool *dailyRecurItem()
424  {
425  return mDailyRecurItem;
426  }
427 
431  void setWeeklyRecur( bool v )
432  {
433  if (!isImmutable( QString::fromLatin1( "WeeklyRecur" ) ))
434  mWeeklyRecur = v;
435  }
436 
440  bool weeklyRecur() const
441  {
442  return mWeeklyRecur;
443  }
444 
448  ItemBool *weeklyRecurItem()
449  {
450  return mWeeklyRecurItem;
451  }
452 
456  void setHighlightTodos( bool v )
457  {
458  if (!isImmutable( QString::fromLatin1( "HighlightTodos" ) ))
459  mHighlightTodos = v;
460  }
461 
465  bool highlightTodos() const
466  {
467  return mHighlightTodos;
468  }
469 
473  ItemBool *highlightTodosItem()
474  {
475  return mHighlightTodosItem;
476  }
477 
481  void setHighlightJournals( bool v )
482  {
483  if (!isImmutable( QString::fromLatin1( "HighlightJournals" ) ))
484  mHighlightJournals = v;
485  }
486 
490  bool highlightJournals() const
491  {
492  return mHighlightJournals;
493  }
494 
498  ItemBool *highlightJournalsItem()
499  {
500  return mHighlightJournalsItem;
501  }
502 
506  void setWeekNumbersShowWork( bool v )
507  {
508  if (!isImmutable( QString::fromLatin1( "WeekNumbersShowWork" ) ))
509  mWeekNumbersShowWork = v;
510  }
511 
515  bool weekNumbersShowWork() const
516  {
517  return mWeekNumbersShowWork;
518  }
519 
523  ItemBool *weekNumbersShowWorkItem()
524  {
525  return mWeekNumbersShowWorkItem;
526  }
527 
531  void setHourSize( int v )
532  {
533  if (v < 4)
534  {
535  kDebug() << "setHourSize: value " << v << " is less than the minimum value of 4";
536  v = 4;
537  }
538 
539  if (v > 30)
540  {
541  kDebug() << "setHourSize: value " << v << " is greater than the maximum value of 30";
542  v = 30;
543  }
544 
545  if (!isImmutable( QString::fromLatin1( "HourSize" ) ))
546  mHourSize = v;
547  }
548 
552  int hourSize() const
553  {
554  return mHourSize;
555  }
556 
560  ItemInt *hourSizeItem()
561  {
562  return mHourSizeItem;
563  }
564 
568  void setEnableAgendaItemIcons( bool v )
569  {
570  if (!isImmutable( QString::fromLatin1( "EnableAgendaItemIcons" ) ))
571  mEnableAgendaItemIcons = v;
572  }
573 
577  bool enableAgendaItemIcons() const
578  {
579  return mEnableAgendaItemIcons;
580  }
581 
585  ItemBool *enableAgendaItemIconsItem()
586  {
587  return mEnableAgendaItemIconsItem;
588  }
589 
593  void setShowTodosAgendaView( bool v )
594  {
595  if (!isImmutable( QString::fromLatin1( "ShowTodosAgendaView" ) ))
596  mShowTodosAgendaView = v;
597  }
598 
602  bool showTodosAgendaView() const
603  {
604  return mShowTodosAgendaView;
605  }
606 
610  ItemBool *showTodosAgendaViewItem()
611  {
612  return mShowTodosAgendaViewItem;
613  }
614 
618  void setMarcusBainsEnabled( bool v )
619  {
620  if (!isImmutable( QString::fromLatin1( "MarcusBainsEnabled" ) ))
621  mMarcusBainsEnabled = v;
622  }
623 
627  bool marcusBainsEnabled() const
628  {
629  return mMarcusBainsEnabled;
630  }
631 
635  ItemBool *marcusBainsEnabledItem()
636  {
637  return mMarcusBainsEnabledItem;
638  }
639 
643  void setMarcusBainsShowSeconds( bool v )
644  {
645  if (!isImmutable( QString::fromLatin1( "MarcusBainsShowSeconds" ) ))
646  mMarcusBainsShowSeconds = v;
647  }
648 
652  bool marcusBainsShowSeconds() const
653  {
654  return mMarcusBainsShowSeconds;
655  }
656 
660  ItemBool *marcusBainsShowSecondsItem()
661  {
662  return mMarcusBainsShowSecondsItem;
663  }
664 
668  void setSelectionStartsEditor( bool v )
669  {
670  if (!isImmutable( QString::fromLatin1( "SelectionStartsEditor" ) ))
671  mSelectionStartsEditor = v;
672  }
673 
677  bool selectionStartsEditor() const
678  {
679  return mSelectionStartsEditor;
680  }
681 
685  ItemBool *selectionStartsEditorItem()
686  {
687  return mSelectionStartsEditorItem;
688  }
689 
693  void setAgendaViewColors( int v )
694  {
695  if (!isImmutable( QString::fromLatin1( "AgendaViewColors" ) ))
696  mAgendaViewColors = v;
697  }
698 
702  int agendaViewColors() const
703  {
704  return mAgendaViewColors;
705  }
706 
710  ItemEnum *agendaViewColorsItem()
711  {
712  return mAgendaViewColorsItem;
713  }
714 
718  void setColorBusyDaysEnabled( bool v )
719  {
720  if (!isImmutable( QString::fromLatin1( "ColorBusyDaysEnabled" ) ))
721  mColorBusyDaysEnabled = v;
722  }
723 
727  bool colorBusyDaysEnabled() const
728  {
729  return mColorBusyDaysEnabled;
730  }
731 
735  ItemBool *colorBusyDaysEnabledItem()
736  {
737  return mColorBusyDaysEnabledItem;
738  }
739 
743  void setAgendaViewCalendarDisplay( int v )
744  {
745  if (!isImmutable( QString::fromLatin1( "AgendaViewCalendarDisplay" ) ))
746  mAgendaViewCalendarDisplay = v;
747  }
748 
752  int agendaViewCalendarDisplay() const
753  {
754  return mAgendaViewCalendarDisplay;
755  }
756 
760  ItemEnum *agendaViewCalendarDisplayItem()
761  {
762  return mAgendaViewCalendarDisplayItem;
763  }
764 
768  void setEnableMonthItemIcons( bool v )
769  {
770  if (!isImmutable( QString::fromLatin1( "EnableMonthItemIcons" ) ))
771  mEnableMonthItemIcons = v;
772  }
773 
777  bool enableMonthItemIcons() const
778  {
779  return mEnableMonthItemIcons;
780  }
781 
785  ItemBool *enableMonthItemIconsItem()
786  {
787  return mEnableMonthItemIconsItem;
788  }
789 
793  void setShowTimeInMonthView( bool v )
794  {
795  if (!isImmutable( QString::fromLatin1( "ShowTimeInMonthView" ) ))
796  mShowTimeInMonthView = v;
797  }
798 
802  bool showTimeInMonthView() const
803  {
804  return mShowTimeInMonthView;
805  }
806 
810  ItemBool *showTimeInMonthViewItem()
811  {
812  return mShowTimeInMonthViewItem;
813  }
814 
818  void setShowTodosMonthView( bool v )
819  {
820  if (!isImmutable( QString::fromLatin1( "ShowTodosMonthView" ) ))
821  mShowTodosMonthView = v;
822  }
823 
827  bool showTodosMonthView() const
828  {
829  return mShowTodosMonthView;
830  }
831 
835  ItemBool *showTodosMonthViewItem()
836  {
837  return mShowTodosMonthViewItem;
838  }
839 
843  void setShowJournalsMonthView( bool v )
844  {
845  if (!isImmutable( QString::fromLatin1( "ShowJournalsMonthView" ) ))
846  mShowJournalsMonthView = v;
847  }
848 
852  bool showJournalsMonthView() const
853  {
854  return mShowJournalsMonthView;
855  }
856 
860  ItemBool *showJournalsMonthViewItem()
861  {
862  return mShowJournalsMonthViewItem;
863  }
864 
868  void setFullViewMonth( bool v )
869  {
870  if (!isImmutable( QString::fromLatin1( "FullViewMonth" ) ))
871  mFullViewMonth = v;
872  }
873 
877  bool fullViewMonth() const
878  {
879  return mFullViewMonth;
880  }
881 
885  ItemBool *fullViewMonthItem()
886  {
887  return mFullViewMonthItem;
888  }
889 
893  void setMonthViewColors( int v )
894  {
895  if (!isImmutable( QString::fromLatin1( "MonthViewColors" ) ))
896  mMonthViewColors = v;
897  }
898 
902  int monthViewColors() const
903  {
904  return mMonthViewColors;
905  }
906 
910  ItemEnum *monthViewColorsItem()
911  {
912  return mMonthViewColorsItem;
913  }
914 
918  void setSortCompletedTodosSeparately( bool v )
919  {
920  if (!isImmutable( QString::fromLatin1( "SortCompletedTodosSeparately" ) ))
921  mSortCompletedTodosSeparately = v;
922  }
923 
927  bool sortCompletedTodosSeparately() const
928  {
929  return mSortCompletedTodosSeparately;
930  }
931 
935  ItemBool *sortCompletedTodosSeparatelyItem()
936  {
937  return mSortCompletedTodosSeparatelyItem;
938  }
939 
943  void setFullViewTodo( bool v )
944  {
945  if (!isImmutable( QString::fromLatin1( "FullViewTodo" ) ))
946  mFullViewTodo = v;
947  }
948 
952  bool fullViewTodo() const
953  {
954  return mFullViewTodo;
955  }
956 
960  ItemBool *fullViewTodoItem()
961  {
962  return mFullViewTodoItem;
963  }
964 
968  void setFlatListTodo( bool v )
969  {
970  if (!isImmutable( QString::fromLatin1( "FlatListTodo" ) ))
971  mFlatListTodo = v;
972  }
973 
977  bool flatListTodo() const
978  {
979  return mFlatListTodo;
980  }
981 
985  ItemBool *flatListTodoItem()
986  {
987  return mFlatListTodoItem;
988  }
989 
993  void setRecordTodosInJournals( bool v )
994  {
995  if (!isImmutable( QString::fromLatin1( "RecordTodosInJournals" ) ))
996  mRecordTodosInJournals = v;
997  }
998 
1002  bool recordTodosInJournals() const
1003  {
1004  return mRecordTodosInJournals;
1005  }
1006 
1010  ItemBool *recordTodosInJournalsItem()
1011  {
1012  return mRecordTodosInJournalsItem;
1013  }
1014 
1018  void setHolidayColor( const QColor & v )
1019  {
1020  if (!isImmutable( QString::fromLatin1( "HolidayColor" ) ))
1021  mHolidayColor = v;
1022  }
1023 
1027  QColor holidayColor() const
1028  {
1029  return mHolidayColor;
1030  }
1031 
1035  ItemColor *holidayColorItem()
1036  {
1037  return mHolidayColorItem;
1038  }
1039 
1043  void setAgendaBgColor( const QColor & v )
1044  {
1045  if (!isImmutable( QString::fromLatin1( "AgendaBgColor" ) ))
1046  mAgendaBgColor = v;
1047  }
1048 
1052  QColor agendaBgColor() const
1053  {
1054  return mAgendaBgColor;
1055  }
1056 
1060  ItemColor *agendaBgColorItem()
1061  {
1062  return mAgendaBgColorItem;
1063  }
1064 
1068  void setAgendaMarcusBainsLineLineColor( const QColor & v )
1069  {
1070  if (!isImmutable( QString::fromLatin1( "AgendaMarcusBainsLineLineColor" ) ))
1071  mAgendaMarcusBainsLineLineColor = v;
1072  }
1073 
1077  QColor agendaMarcusBainsLineLineColor() const
1078  {
1079  return mAgendaMarcusBainsLineLineColor;
1080  }
1081 
1085  ItemColor *agendaMarcusBainsLineLineColorItem()
1086  {
1087  return mAgendaMarcusBainsLineLineColorItem;
1088  }
1089 
1093  void setViewBgBusyColor( const QColor & v )
1094  {
1095  if (!isImmutable( QString::fromLatin1( "ViewBgBusyColor" ) ))
1096  mViewBgBusyColor = v;
1097  }
1098 
1102  QColor viewBgBusyColor() const
1103  {
1104  return mViewBgBusyColor;
1105  }
1106 
1110  ItemColor *viewBgBusyColorItem()
1111  {
1112  return mViewBgBusyColorItem;
1113  }
1114 
1118  void setWorkingHoursColor( const QColor & v )
1119  {
1120  if (!isImmutable( QString::fromLatin1( "WorkingHoursColor" ) ))
1121  mWorkingHoursColor = v;
1122  }
1123 
1127  QColor workingHoursColor() const
1128  {
1129  return mWorkingHoursColor;
1130  }
1131 
1135  ItemColor *workingHoursColorItem()
1136  {
1137  return mWorkingHoursColorItem;
1138  }
1139 
1143  void setTodoDueTodayColor( const QColor & v )
1144  {
1145  if (!isImmutable( QString::fromLatin1( "TodoDueTodayColor" ) ))
1146  mTodoDueTodayColor = v;
1147  }
1148 
1152  QColor todoDueTodayColor() const
1153  {
1154  return mTodoDueTodayColor;
1155  }
1156 
1160  ItemColor *todoDueTodayColorItem()
1161  {
1162  return mTodoDueTodayColorItem;
1163  }
1164 
1168  void setTodoOverdueColor( const QColor & v )
1169  {
1170  if (!isImmutable( QString::fromLatin1( "TodoOverdueColor" ) ))
1171  mTodoOverdueColor = v;
1172  }
1173 
1177  QColor todoOverdueColor() const
1178  {
1179  return mTodoOverdueColor;
1180  }
1181 
1185  ItemColor *todoOverdueColorItem()
1186  {
1187  return mTodoOverdueColorItem;
1188  }
1189 
1193  void setAgendaTimeLabelsFont( const QFont & v )
1194  {
1195  if (!isImmutable( QString::fromLatin1( "AgendaTimeLabelsFont" ) ))
1196  mAgendaTimeLabelsFont = v;
1197  }
1198 
1202  QFont agendaTimeLabelsFont() const
1203  {
1204  return mAgendaTimeLabelsFont;
1205  }
1206 
1210  ItemFont *agendaTimeLabelsFontItem()
1211  {
1212  return mAgendaTimeLabelsFontItem;
1213  }
1214 
1218  void setMonthViewFont( const QFont & v )
1219  {
1220  if (!isImmutable( QString::fromLatin1( "MonthViewFont" ) ))
1221  mMonthViewFont = v;
1222  }
1223 
1227  QFont monthViewFont() const
1228  {
1229  return mMonthViewFont;
1230  }
1231 
1235  ItemFont *monthViewFontItem()
1236  {
1237  return mMonthViewFontItem;
1238  }
1239 
1243  void setAgendaViewFont( const QFont & v )
1244  {
1245  if (!isImmutable( QString::fromLatin1( "AgendaViewFont" ) ))
1246  mAgendaViewFont = v;
1247  }
1248 
1252  QFont agendaViewFont() const
1253  {
1254  return mAgendaViewFont;
1255  }
1256 
1260  ItemFont *agendaViewFontItem()
1261  {
1262  return mAgendaViewFontItem;
1263  }
1264 
1268  void setAgendaMarcusBainsLineFont( const QFont & v )
1269  {
1270  if (!isImmutable( QString::fromLatin1( "AgendaMarcusBainsLineFont" ) ))
1271  mAgendaMarcusBainsLineFont = v;
1272  }
1273 
1277  QFont agendaMarcusBainsLineFont() const
1278  {
1279  return mAgendaMarcusBainsLineFont;
1280  }
1281 
1285  ItemFont *agendaMarcusBainsLineFontItem()
1286  {
1287  return mAgendaMarcusBainsLineFontItem;
1288  }
1289 
1293  void setSelectedPlugins( const QStringList & v )
1294  {
1295  if (!isImmutable( QString::fromLatin1( "SelectedPlugins" ) ))
1296  mSelectedPlugins = v;
1297  }
1298 
1302  QStringList selectedPlugins() const
1303  {
1304  return mSelectedPlugins;
1305  }
1306 
1310  ItemStringList *selectedPluginsItem()
1311  {
1312  return mSelectedPluginsItem;
1313  }
1314 
1318  void setEnableQuickTodo( bool v )
1319  {
1320  if (!isImmutable( QString::fromLatin1( "EnableQuickTodo" ) ))
1321  mEnableQuickTodo = v;
1322  }
1323 
1327  bool enableQuickTodo() const
1328  {
1329  return mEnableQuickTodo;
1330  }
1331 
1335  ItemBool *enableQuickTodoItem()
1336  {
1337  return mEnableQuickTodoItem;
1338  }
1339 
1343  void setEnableTodoQuickSearch( bool v )
1344  {
1345  if (!isImmutable( QString::fromLatin1( "EnableTodoQuickSearch" ) ))
1346  mEnableTodoQuickSearch = v;
1347  }
1348 
1352  bool enableTodoQuickSearch() const
1353  {
1354  return mEnableTodoQuickSearch;
1355  }
1356 
1360  ItemBool *enableTodoQuickSearchItem()
1361  {
1362  return mEnableTodoQuickSearchItem;
1363  }
1364 
1368  void setDefaultTodoAttachMethod( int v )
1369  {
1370  if (!isImmutable( QString::fromLatin1( "DefaultTodoAttachMethod" ) ))
1371  mDefaultTodoAttachMethod = v;
1372  }
1373 
1377  int defaultTodoAttachMethod() const
1378  {
1379  return mDefaultTodoAttachMethod;
1380  }
1381 
1385  ItemEnum *defaultTodoAttachMethodItem()
1386  {
1387  return mDefaultTodoAttachMethodItem;
1388  }
1389 
1393  void setCompactDialogs( bool v )
1394  {
1395  if (!isImmutable( QString::fromLatin1( "CompactDialogs" ) ))
1396  mCompactDialogs = v;
1397  }
1398 
1402  bool compactDialogs() const
1403  {
1404  return mCompactDialogs;
1405  }
1406 
1410  ItemBool *compactDialogsItem()
1411  {
1412  return mCompactDialogsItem;
1413  }
1414 
1418  void setShowMenuBar( bool v )
1419  {
1420  if (!isImmutable( QString::fromLatin1( "ShowMenuBar" ) ))
1421  mShowMenuBar = v;
1422  }
1423 
1427  bool showMenuBar() const
1428  {
1429  return mShowMenuBar;
1430  }
1431 
1435  ItemBool *showMenuBarItem()
1436  {
1437  return mShowMenuBarItem;
1438  }
1439 
1443  void setWorkWeekMask( int v )
1444  {
1445  if (!isImmutable( QString::fromLatin1( "WorkWeekMask" ) ))
1446  mWorkWeekMask = v;
1447  }
1448 
1452  int workWeekMask() const
1453  {
1454  return mWorkWeekMask;
1455  }
1456 
1460  ItemInt *workWeekMaskItem()
1461  {
1462  return mWorkWeekMaskItem;
1463  }
1464 
1468  void setDefaultResourceColorSeed( int v )
1469  {
1470  if (!isImmutable( QString::fromLatin1( "DefaultResourceColorSeed" ) ))
1471  mDefaultResourceColorSeed = v;
1472  }
1473 
1477  int defaultResourceColorSeed() const
1478  {
1479  return mDefaultResourceColorSeed;
1480  }
1481 
1485  ItemInt *defaultResourceColorSeedItem()
1486  {
1487  return mDefaultResourceColorSeedItem;
1488  }
1489 
1493  void setDefaultResourceColors( const QStringList & v )
1494  {
1495  if (!isImmutable( QString::fromLatin1( "DefaultResourceColors" ) ))
1496  mDefaultResourceColors = v;
1497  }
1498 
1502  QStringList defaultResourceColors() const
1503  {
1504  return mDefaultResourceColors;
1505  }
1506 
1510  ItemStringList *defaultResourceColorsItem()
1511  {
1512  return mDefaultResourceColorsItem;
1513  }
1514 
1518  void setAssignDefaultResourceColors( bool v )
1519  {
1520  if (!isImmutable( QString::fromLatin1( "AssignDefaultResourceColors" ) ))
1521  mAssignDefaultResourceColors = v;
1522  }
1523 
1527  bool assignDefaultResourceColors() const
1528  {
1529  return mAssignDefaultResourceColors;
1530  }
1531 
1535  ItemBool *assignDefaultResourceColorsItem()
1536  {
1537  return mAssignDefaultResourceColorsItem;
1538  }
1539 
1543  void setDecorationsAtMonthViewTop( const QStringList & v )
1544  {
1545  if (!isImmutable( QString::fromLatin1( "DecorationsAtMonthViewTop" ) ))
1546  mDecorationsAtMonthViewTop = v;
1547  }
1548 
1552  QStringList decorationsAtMonthViewTop() const
1553  {
1554  return mDecorationsAtMonthViewTop;
1555  }
1556 
1560  ItemStringList *decorationsAtMonthViewTopItem()
1561  {
1562  return mDecorationsAtMonthViewTopItem;
1563  }
1564 
1568  void setDecorationsAtAgendaViewTop( const QStringList & v )
1569  {
1570  if (!isImmutable( QString::fromLatin1( "DecorationsAtAgendaViewTop" ) ))
1571  mDecorationsAtAgendaViewTop = v;
1572  }
1573 
1577  QStringList decorationsAtAgendaViewTop() const
1578  {
1579  return mDecorationsAtAgendaViewTop;
1580  }
1581 
1585  ItemStringList *decorationsAtAgendaViewTopItem()
1586  {
1587  return mDecorationsAtAgendaViewTopItem;
1588  }
1589 
1593  void setDecorationsAtAgendaViewBottom( const QStringList & v )
1594  {
1595  if (!isImmutable( QString::fromLatin1( "DecorationsAtAgendaViewBottom" ) ))
1596  mDecorationsAtAgendaViewBottom = v;
1597  }
1598 
1602  QStringList decorationsAtAgendaViewBottom() const
1603  {
1604  return mDecorationsAtAgendaViewBottom;
1605  }
1606 
1610  ItemStringList *decorationsAtAgendaViewBottomItem()
1611  {
1612  return mDecorationsAtAgendaViewBottomItem;
1613  }
1614 
1618  void setAgendaGridBackgroundColor( const QColor & v )
1619  {
1620  if (!isImmutable( QString::fromLatin1( "AgendaGridBackgroundColor" ) ))
1621  mAgendaGridBackgroundColor = v;
1622  }
1623 
1627  QColor agendaGridBackgroundColor() const
1628  {
1629  return mAgendaGridBackgroundColor;
1630  }
1631 
1635  ItemColor *agendaGridBackgroundColorItem()
1636  {
1637  return mAgendaGridBackgroundColorItem;
1638  }
1639 
1643  void setAgendaGridBackgroundImage( const QString & v )
1644  {
1645  if (!isImmutable( QString::fromLatin1( "AgendaGridBackgroundImage" ) ))
1646  mAgendaGridBackgroundImage = v;
1647  }
1648 
1652  QString agendaGridBackgroundImage() const
1653  {
1654  return mAgendaGridBackgroundImage;
1655  }
1656 
1660  ItemString *agendaGridBackgroundImageItem()
1661  {
1662  return mAgendaGridBackgroundImageItem;
1663  }
1664 
1668  void setAgendaGridHighlightColor( const QColor & v )
1669  {
1670  if (!isImmutable( QString::fromLatin1( "AgendaGridHighlightColor" ) ))
1671  mAgendaGridHighlightColor = v;
1672  }
1673 
1677  QColor agendaGridHighlightColor() const
1678  {
1679  return mAgendaGridHighlightColor;
1680  }
1681 
1685  ItemColor *agendaGridHighlightColorItem()
1686  {
1687  return mAgendaGridHighlightColorItem;
1688  }
1689 
1693  void setAgendaGridWorkHoursBackgroundImage( const QString & v )
1694  {
1695  if (!isImmutable( QString::fromLatin1( "AgendaGridWorkHoursBackgroundImage" ) ))
1696  mAgendaGridWorkHoursBackgroundImage = v;
1697  }
1698 
1702  QString agendaGridWorkHoursBackgroundImage() const
1703  {
1704  return mAgendaGridWorkHoursBackgroundImage;
1705  }
1706 
1710  ItemString *agendaGridWorkHoursBackgroundImageItem()
1711  {
1712  return mAgendaGridWorkHoursBackgroundImageItem;
1713  }
1714 
1718  void setAgendaCalendarItemsBackgroundColor( const QColor & v )
1719  {
1720  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsBackgroundColor" ) ))
1721  mAgendaCalendarItemsBackgroundColor = v;
1722  }
1723 
1727  QColor agendaCalendarItemsBackgroundColor() const
1728  {
1729  return mAgendaCalendarItemsBackgroundColor;
1730  }
1731 
1735  ItemColor *agendaCalendarItemsBackgroundColorItem()
1736  {
1737  return mAgendaCalendarItemsBackgroundColorItem;
1738  }
1739 
1743  void setAgendaCalendarItemsBackgroundImage( const QString & v )
1744  {
1745  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsBackgroundImage" ) ))
1746  mAgendaCalendarItemsBackgroundImage = v;
1747  }
1748 
1752  QString agendaCalendarItemsBackgroundImage() const
1753  {
1754  return mAgendaCalendarItemsBackgroundImage;
1755  }
1756 
1760  ItemString *agendaCalendarItemsBackgroundImageItem()
1761  {
1762  return mAgendaCalendarItemsBackgroundImageItem;
1763  }
1764 
1768  void setAgendaCalendarItemsFont( const QFont & v )
1769  {
1770  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsFont" ) ))
1771  mAgendaCalendarItemsFont = v;
1772  }
1773 
1777  QFont agendaCalendarItemsFont() const
1778  {
1779  return mAgendaCalendarItemsFont;
1780  }
1781 
1785  ItemFont *agendaCalendarItemsFontItem()
1786  {
1787  return mAgendaCalendarItemsFontItem;
1788  }
1789 
1793  void setAgendaCalendarItemsFrameColor( const QColor & v )
1794  {
1795  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsFrameColor" ) ))
1796  mAgendaCalendarItemsFrameColor = v;
1797  }
1798 
1802  QColor agendaCalendarItemsFrameColor() const
1803  {
1804  return mAgendaCalendarItemsFrameColor;
1805  }
1806 
1810  ItemColor *agendaCalendarItemsFrameColorItem()
1811  {
1812  return mAgendaCalendarItemsFrameColorItem;
1813  }
1814 
1818  void setAgendaCalendarItemsIcon( const QString & v )
1819  {
1820  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsIcon" ) ))
1821  mAgendaCalendarItemsIcon = v;
1822  }
1823 
1827  QString agendaCalendarItemsIcon() const
1828  {
1829  return mAgendaCalendarItemsIcon;
1830  }
1831 
1835  ItemString *agendaCalendarItemsIconItem()
1836  {
1837  return mAgendaCalendarItemsIconItem;
1838  }
1839 
1843  void setAgendaCalendarItemsEventsBackgroundImage( const QString & v )
1844  {
1845  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsEventsBackgroundImage" ) ))
1846  mAgendaCalendarItemsEventsBackgroundImage = v;
1847  }
1848 
1852  QString agendaCalendarItemsEventsBackgroundImage() const
1853  {
1854  return mAgendaCalendarItemsEventsBackgroundImage;
1855  }
1856 
1860  ItemString *agendaCalendarItemsEventsBackgroundImageItem()
1861  {
1862  return mAgendaCalendarItemsEventsBackgroundImageItem;
1863  }
1864 
1868  void setAgendaCalendarItemsEventsFont( const QFont & v )
1869  {
1870  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsEventsFont" ) ))
1871  mAgendaCalendarItemsEventsFont = v;
1872  }
1873 
1877  QFont agendaCalendarItemsEventsFont() const
1878  {
1879  return mAgendaCalendarItemsEventsFont;
1880  }
1881 
1885  ItemFont *agendaCalendarItemsEventsFontItem()
1886  {
1887  return mAgendaCalendarItemsEventsFontItem;
1888  }
1889 
1893  void setAgendaCalendarItemsEventsFrameColor( const QColor & v )
1894  {
1895  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsEventsFrameColor" ) ))
1896  mAgendaCalendarItemsEventsFrameColor = v;
1897  }
1898 
1902  QColor agendaCalendarItemsEventsFrameColor() const
1903  {
1904  return mAgendaCalendarItemsEventsFrameColor;
1905  }
1906 
1910  ItemColor *agendaCalendarItemsEventsFrameColorItem()
1911  {
1912  return mAgendaCalendarItemsEventsFrameColorItem;
1913  }
1914 
1918  void setAgendaCalendarItemsEventsIcon( const QString & v )
1919  {
1920  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsEventsIcon" ) ))
1921  mAgendaCalendarItemsEventsIcon = v;
1922  }
1923 
1927  QString agendaCalendarItemsEventsIcon() const
1928  {
1929  return mAgendaCalendarItemsEventsIcon;
1930  }
1931 
1935  ItemString *agendaCalendarItemsEventsIconItem()
1936  {
1937  return mAgendaCalendarItemsEventsIconItem;
1938  }
1939 
1943  void setAgendaCalendarItemsToDosBackgroundColor( const QColor & v )
1944  {
1945  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosBackgroundColor" ) ))
1946  mAgendaCalendarItemsToDosBackgroundColor = v;
1947  }
1948 
1952  QColor agendaCalendarItemsToDosBackgroundColor() const
1953  {
1954  return mAgendaCalendarItemsToDosBackgroundColor;
1955  }
1956 
1960  ItemColor *agendaCalendarItemsToDosBackgroundColorItem()
1961  {
1962  return mAgendaCalendarItemsToDosBackgroundColorItem;
1963  }
1964 
1968  void setAgendaCalendarItemsToDosBackgroundImage( const QString & v )
1969  {
1970  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosBackgroundImage" ) ))
1971  mAgendaCalendarItemsToDosBackgroundImage = v;
1972  }
1973 
1977  QString agendaCalendarItemsToDosBackgroundImage() const
1978  {
1979  return mAgendaCalendarItemsToDosBackgroundImage;
1980  }
1981 
1985  ItemString *agendaCalendarItemsToDosBackgroundImageItem()
1986  {
1987  return mAgendaCalendarItemsToDosBackgroundImageItem;
1988  }
1989 
1993  void setAgendaCalendarItemsToDosFont( const QFont & v )
1994  {
1995  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosFont" ) ))
1996  mAgendaCalendarItemsToDosFont = v;
1997  }
1998 
2002  QFont agendaCalendarItemsToDosFont() const
2003  {
2004  return mAgendaCalendarItemsToDosFont;
2005  }
2006 
2010  ItemFont *agendaCalendarItemsToDosFontItem()
2011  {
2012  return mAgendaCalendarItemsToDosFontItem;
2013  }
2014 
2018  void setAgendaCalendarItemsToDosFrameColor( const QColor & v )
2019  {
2020  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosFrameColor" ) ))
2021  mAgendaCalendarItemsToDosFrameColor = v;
2022  }
2023 
2027  QColor agendaCalendarItemsToDosFrameColor() const
2028  {
2029  return mAgendaCalendarItemsToDosFrameColor;
2030  }
2031 
2035  ItemColor *agendaCalendarItemsToDosFrameColorItem()
2036  {
2037  return mAgendaCalendarItemsToDosFrameColorItem;
2038  }
2039 
2043  void setAgendaCalendarItemsToDosIcon( const QString & v )
2044  {
2045  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosIcon" ) ))
2046  mAgendaCalendarItemsToDosIcon = v;
2047  }
2048 
2052  QString agendaCalendarItemsToDosIcon() const
2053  {
2054  return mAgendaCalendarItemsToDosIcon;
2055  }
2056 
2060  ItemString *agendaCalendarItemsToDosIconItem()
2061  {
2062  return mAgendaCalendarItemsToDosIconItem;
2063  }
2064 
2068  void setAgendaCalendarItemsToDosDueTodayBackgroundImage( const QString & v )
2069  {
2070  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosDueTodayBackgroundImage" ) ))
2071  mAgendaCalendarItemsToDosDueTodayBackgroundImage = v;
2072  }
2073 
2077  QString agendaCalendarItemsToDosDueTodayBackgroundImage() const
2078  {
2079  return mAgendaCalendarItemsToDosDueTodayBackgroundImage;
2080  }
2081 
2085  ItemString *agendaCalendarItemsToDosDueTodayBackgroundImageItem()
2086  {
2087  return mAgendaCalendarItemsToDosDueTodayBackgroundImageItem;
2088  }
2089 
2093  void setAgendaCalendarItemsToDosDueTodayFont( const QFont & v )
2094  {
2095  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosDueTodayFont" ) ))
2096  mAgendaCalendarItemsToDosDueTodayFont = v;
2097  }
2098 
2102  QFont agendaCalendarItemsToDosDueTodayFont() const
2103  {
2104  return mAgendaCalendarItemsToDosDueTodayFont;
2105  }
2106 
2110  ItemFont *agendaCalendarItemsToDosDueTodayFontItem()
2111  {
2112  return mAgendaCalendarItemsToDosDueTodayFontItem;
2113  }
2114 
2118  void setAgendaCalendarItemsToDosDueTodayFrameColor( const QColor & v )
2119  {
2120  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosDueTodayFrameColor" ) ))
2121  mAgendaCalendarItemsToDosDueTodayFrameColor = v;
2122  }
2123 
2127  QColor agendaCalendarItemsToDosDueTodayFrameColor() const
2128  {
2129  return mAgendaCalendarItemsToDosDueTodayFrameColor;
2130  }
2131 
2135  ItemColor *agendaCalendarItemsToDosDueTodayFrameColorItem()
2136  {
2137  return mAgendaCalendarItemsToDosDueTodayFrameColorItem;
2138  }
2139 
2143  void setAgendaCalendarItemsToDosDueTodayIcon( const QString & v )
2144  {
2145  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosDueTodayIcon" ) ))
2146  mAgendaCalendarItemsToDosDueTodayIcon = v;
2147  }
2148 
2152  QString agendaCalendarItemsToDosDueTodayIcon() const
2153  {
2154  return mAgendaCalendarItemsToDosDueTodayIcon;
2155  }
2156 
2160  ItemString *agendaCalendarItemsToDosDueTodayIconItem()
2161  {
2162  return mAgendaCalendarItemsToDosDueTodayIconItem;
2163  }
2164 
2168  void setAgendaCalendarItemsToDosOverdueBackgroundImage( const QString & v )
2169  {
2170  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosOverdueBackgroundImage" ) ))
2171  mAgendaCalendarItemsToDosOverdueBackgroundImage = v;
2172  }
2173 
2177  QString agendaCalendarItemsToDosOverdueBackgroundImage() const
2178  {
2179  return mAgendaCalendarItemsToDosOverdueBackgroundImage;
2180  }
2181 
2185  ItemString *agendaCalendarItemsToDosOverdueBackgroundImageItem()
2186  {
2187  return mAgendaCalendarItemsToDosOverdueBackgroundImageItem;
2188  }
2189 
2193  void setAgendaCalendarItemsToDosOverdueFont( const QFont & v )
2194  {
2195  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosOverdueFont" ) ))
2196  mAgendaCalendarItemsToDosOverdueFont = v;
2197  }
2198 
2202  QFont agendaCalendarItemsToDosOverdueFont() const
2203  {
2204  return mAgendaCalendarItemsToDosOverdueFont;
2205  }
2206 
2210  ItemFont *agendaCalendarItemsToDosOverdueFontItem()
2211  {
2212  return mAgendaCalendarItemsToDosOverdueFontItem;
2213  }
2214 
2218  void setAgendaCalendarItemsToDosOverdueFrameColor( const QColor & v )
2219  {
2220  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosOverdueFrameColor" ) ))
2221  mAgendaCalendarItemsToDosOverdueFrameColor = v;
2222  }
2223 
2227  QColor agendaCalendarItemsToDosOverdueFrameColor() const
2228  {
2229  return mAgendaCalendarItemsToDosOverdueFrameColor;
2230  }
2231 
2235  ItemColor *agendaCalendarItemsToDosOverdueFrameColorItem()
2236  {
2237  return mAgendaCalendarItemsToDosOverdueFrameColorItem;
2238  }
2239 
2243  void setAgendaCalendarItemsToDosOverdueIcon( const QString & v )
2244  {
2245  if (!isImmutable( QString::fromLatin1( "AgendaCalendarItemsToDosOverdueIcon" ) ))
2246  mAgendaCalendarItemsToDosOverdueIcon = v;
2247  }
2248 
2252  QString agendaCalendarItemsToDosOverdueIcon() const
2253  {
2254  return mAgendaCalendarItemsToDosOverdueIcon;
2255  }
2256 
2260  ItemString *agendaCalendarItemsToDosOverdueIconItem()
2261  {
2262  return mAgendaCalendarItemsToDosOverdueIconItem;
2263  }
2264 
2268  void setAgendaHolidaysBackgroundColor( const QColor & v )
2269  {
2270  if (!isImmutable( QString::fromLatin1( "AgendaHolidaysBackgroundColor" ) ))
2271  mAgendaHolidaysBackgroundColor = v;
2272  }
2273 
2277  QColor agendaHolidaysBackgroundColor() const
2278  {
2279  return mAgendaHolidaysBackgroundColor;
2280  }
2281 
2285  ItemColor *agendaHolidaysBackgroundColorItem()
2286  {
2287  return mAgendaHolidaysBackgroundColorItem;
2288  }
2289 
2293  void setAgendaHolidaysBackgroundImage( const QString & v )
2294  {
2295  if (!isImmutable( QString::fromLatin1( "AgendaHolidaysBackgroundImage" ) ))
2296  mAgendaHolidaysBackgroundImage = v;
2297  }
2298 
2302  QString agendaHolidaysBackgroundImage() const
2303  {
2304  return mAgendaHolidaysBackgroundImage;
2305  }
2306 
2310  ItemString *agendaHolidaysBackgroundImageItem()
2311  {
2312  return mAgendaHolidaysBackgroundImageItem;
2313  }
2314 
2318  void setMonthGridBackgroundColor( const QColor & v )
2319  {
2320  if (!isImmutable( QString::fromLatin1( "MonthGridBackgroundColor" ) ))
2321  mMonthGridBackgroundColor = v;
2322  }
2323 
2327  QColor monthGridBackgroundColor() const
2328  {
2329  return mMonthGridBackgroundColor;
2330  }
2331 
2335  ItemColor *monthGridBackgroundColorItem()
2336  {
2337  return mMonthGridBackgroundColorItem;
2338  }
2339 
2343  void setMonthGridBackgroundImage( const QString & v )
2344  {
2345  if (!isImmutable( QString::fromLatin1( "MonthGridBackgroundImage" ) ))
2346  mMonthGridBackgroundImage = v;
2347  }
2348 
2352  QString monthGridBackgroundImage() const
2353  {
2354  return mMonthGridBackgroundImage;
2355  }
2356 
2360  ItemString *monthGridBackgroundImageItem()
2361  {
2362  return mMonthGridBackgroundImageItem;
2363  }
2364 
2368  void setMonthGridHighlightColor( const QColor & v )
2369  {
2370  if (!isImmutable( QString::fromLatin1( "MonthGridHighlightColor" ) ))
2371  mMonthGridHighlightColor = v;
2372  }
2373 
2377  QColor monthGridHighlightColor() const
2378  {
2379  return mMonthGridHighlightColor;
2380  }
2381 
2385  ItemColor *monthGridHighlightColorItem()
2386  {
2387  return mMonthGridHighlightColorItem;
2388  }
2389 
2393  void setMonthGridWorkHoursBackgroundColor( const QColor & v )
2394  {
2395  if (!isImmutable( QString::fromLatin1( "MonthGridWorkHoursBackgroundColor" ) ))
2396  mMonthGridWorkHoursBackgroundColor = v;
2397  }
2398 
2402  QColor monthGridWorkHoursBackgroundColor() const
2403  {
2404  return mMonthGridWorkHoursBackgroundColor;
2405  }
2406 
2410  ItemColor *monthGridWorkHoursBackgroundColorItem()
2411  {
2412  return mMonthGridWorkHoursBackgroundColorItem;
2413  }
2414 
2418  void setMonthGridWorkHoursBackgroundImage( const QString & v )
2419  {
2420  if (!isImmutable( QString::fromLatin1( "MonthGridWorkHoursBackgroundImage" ) ))
2421  mMonthGridWorkHoursBackgroundImage = v;
2422  }
2423 
2427  QString monthGridWorkHoursBackgroundImage() const
2428  {
2429  return mMonthGridWorkHoursBackgroundImage;
2430  }
2431 
2435  ItemString *monthGridWorkHoursBackgroundImageItem()
2436  {
2437  return mMonthGridWorkHoursBackgroundImageItem;
2438  }
2439 
2443  void setMonthCalendarItemsBackgroundColor( const QColor & v )
2444  {
2445  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsBackgroundColor" ) ))
2446  mMonthCalendarItemsBackgroundColor = v;
2447  }
2448 
2452  QColor monthCalendarItemsBackgroundColor() const
2453  {
2454  return mMonthCalendarItemsBackgroundColor;
2455  }
2456 
2460  ItemColor *monthCalendarItemsBackgroundColorItem()
2461  {
2462  return mMonthCalendarItemsBackgroundColorItem;
2463  }
2464 
2468  void setMonthCalendarItemsBackgroundImage( const QString & v )
2469  {
2470  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsBackgroundImage" ) ))
2471  mMonthCalendarItemsBackgroundImage = v;
2472  }
2473 
2477  QString monthCalendarItemsBackgroundImage() const
2478  {
2479  return mMonthCalendarItemsBackgroundImage;
2480  }
2481 
2485  ItemString *monthCalendarItemsBackgroundImageItem()
2486  {
2487  return mMonthCalendarItemsBackgroundImageItem;
2488  }
2489 
2493  void setMonthCalendarItemsFont( const QFont & v )
2494  {
2495  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsFont" ) ))
2496  mMonthCalendarItemsFont = v;
2497  }
2498 
2502  QFont monthCalendarItemsFont() const
2503  {
2504  return mMonthCalendarItemsFont;
2505  }
2506 
2510  ItemFont *monthCalendarItemsFontItem()
2511  {
2512  return mMonthCalendarItemsFontItem;
2513  }
2514 
2518  void setMonthCalendarItemsFrameColor( const QColor & v )
2519  {
2520  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsFrameColor" ) ))
2521  mMonthCalendarItemsFrameColor = v;
2522  }
2523 
2527  QColor monthCalendarItemsFrameColor() const
2528  {
2529  return mMonthCalendarItemsFrameColor;
2530  }
2531 
2535  ItemColor *monthCalendarItemsFrameColorItem()
2536  {
2537  return mMonthCalendarItemsFrameColorItem;
2538  }
2539 
2543  void setMonthCalendarItemsIcon( const QString & v )
2544  {
2545  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsIcon" ) ))
2546  mMonthCalendarItemsIcon = v;
2547  }
2548 
2552  QString monthCalendarItemsIcon() const
2553  {
2554  return mMonthCalendarItemsIcon;
2555  }
2556 
2560  ItemString *monthCalendarItemsIconItem()
2561  {
2562  return mMonthCalendarItemsIconItem;
2563  }
2564 
2568  void setMonthCalendarItemsEventsBackgroundColor( const QColor & v )
2569  {
2570  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsEventsBackgroundColor" ) ))
2571  mMonthCalendarItemsEventsBackgroundColor = v;
2572  }
2573 
2577  QColor monthCalendarItemsEventsBackgroundColor() const
2578  {
2579  return mMonthCalendarItemsEventsBackgroundColor;
2580  }
2581 
2585  ItemColor *monthCalendarItemsEventsBackgroundColorItem()
2586  {
2587  return mMonthCalendarItemsEventsBackgroundColorItem;
2588  }
2589 
2593  void setMonthCalendarItemsEventsBackgroundImage( const QString & v )
2594  {
2595  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsEventsBackgroundImage" ) ))
2596  mMonthCalendarItemsEventsBackgroundImage = v;
2597  }
2598 
2602  QString monthCalendarItemsEventsBackgroundImage() const
2603  {
2604  return mMonthCalendarItemsEventsBackgroundImage;
2605  }
2606 
2610  ItemString *monthCalendarItemsEventsBackgroundImageItem()
2611  {
2612  return mMonthCalendarItemsEventsBackgroundImageItem;
2613  }
2614 
2618  void setMonthCalendarItemsEventsFont( const QFont & v )
2619  {
2620  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsEventsFont" ) ))
2621  mMonthCalendarItemsEventsFont = v;
2622  }
2623 
2627  QFont monthCalendarItemsEventsFont() const
2628  {
2629  return mMonthCalendarItemsEventsFont;
2630  }
2631 
2635  ItemFont *monthCalendarItemsEventsFontItem()
2636  {
2637  return mMonthCalendarItemsEventsFontItem;
2638  }
2639 
2643  void setMonthCalendarItemsEventsFrameColor( const QColor & v )
2644  {
2645  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsEventsFrameColor" ) ))
2646  mMonthCalendarItemsEventsFrameColor = v;
2647  }
2648 
2652  QColor monthCalendarItemsEventsFrameColor() const
2653  {
2654  return mMonthCalendarItemsEventsFrameColor;
2655  }
2656 
2660  ItemColor *monthCalendarItemsEventsFrameColorItem()
2661  {
2662  return mMonthCalendarItemsEventsFrameColorItem;
2663  }
2664 
2668  void setMonthCalendarItemsEventsIcon( const QString & v )
2669  {
2670  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsEventsIcon" ) ))
2671  mMonthCalendarItemsEventsIcon = v;
2672  }
2673 
2677  QString monthCalendarItemsEventsIcon() const
2678  {
2679  return mMonthCalendarItemsEventsIcon;
2680  }
2681 
2685  ItemString *monthCalendarItemsEventsIconItem()
2686  {
2687  return mMonthCalendarItemsEventsIconItem;
2688  }
2689 
2693  void setMonthCalendarItemsToDosBackgroundColor( const QColor & v )
2694  {
2695  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosBackgroundColor" ) ))
2696  mMonthCalendarItemsToDosBackgroundColor = v;
2697  }
2698 
2702  QColor monthCalendarItemsToDosBackgroundColor() const
2703  {
2704  return mMonthCalendarItemsToDosBackgroundColor;
2705  }
2706 
2710  ItemColor *monthCalendarItemsToDosBackgroundColorItem()
2711  {
2712  return mMonthCalendarItemsToDosBackgroundColorItem;
2713  }
2714 
2718  void setMonthCalendarItemsToDosBackgroundImage( const QString & v )
2719  {
2720  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosBackgroundImage" ) ))
2721  mMonthCalendarItemsToDosBackgroundImage = v;
2722  }
2723 
2727  QString monthCalendarItemsToDosBackgroundImage() const
2728  {
2729  return mMonthCalendarItemsToDosBackgroundImage;
2730  }
2731 
2735  ItemString *monthCalendarItemsToDosBackgroundImageItem()
2736  {
2737  return mMonthCalendarItemsToDosBackgroundImageItem;
2738  }
2739 
2743  void setMonthCalendarItemsToDosFont( const QFont & v )
2744  {
2745  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosFont" ) ))
2746  mMonthCalendarItemsToDosFont = v;
2747  }
2748 
2752  QFont monthCalendarItemsToDosFont() const
2753  {
2754  return mMonthCalendarItemsToDosFont;
2755  }
2756 
2760  ItemFont *monthCalendarItemsToDosFontItem()
2761  {
2762  return mMonthCalendarItemsToDosFontItem;
2763  }
2764 
2768  void setMonthCalendarItemsToDosFrameColor( const QColor & v )
2769  {
2770  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosFrameColor" ) ))
2771  mMonthCalendarItemsToDosFrameColor = v;
2772  }
2773 
2777  QColor monthCalendarItemsToDosFrameColor() const
2778  {
2779  return mMonthCalendarItemsToDosFrameColor;
2780  }
2781 
2785  ItemColor *monthCalendarItemsToDosFrameColorItem()
2786  {
2787  return mMonthCalendarItemsToDosFrameColorItem;
2788  }
2789 
2793  void setMonthCalendarItemsToDosIcon( const QString & v )
2794  {
2795  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosIcon" ) ))
2796  mMonthCalendarItemsToDosIcon = v;
2797  }
2798 
2802  QString monthCalendarItemsToDosIcon() const
2803  {
2804  return mMonthCalendarItemsToDosIcon;
2805  }
2806 
2810  ItemString *monthCalendarItemsToDosIconItem()
2811  {
2812  return mMonthCalendarItemsToDosIconItem;
2813  }
2814 
2818  void setMonthCalendarItemsToDosDueTodayBackgroundColor( const QColor & v )
2819  {
2820  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosDueTodayBackgroundColor" ) ))
2821  mMonthCalendarItemsToDosDueTodayBackgroundColor = v;
2822  }
2823 
2827  QColor monthCalendarItemsToDosDueTodayBackgroundColor() const
2828  {
2829  return mMonthCalendarItemsToDosDueTodayBackgroundColor;
2830  }
2831 
2835  ItemColor *monthCalendarItemsToDosDueTodayBackgroundColorItem()
2836  {
2837  return mMonthCalendarItemsToDosDueTodayBackgroundColorItem;
2838  }
2839 
2843  void setMonthCalendarItemsToDosDueTodayBackgroundImage( const QString & v )
2844  {
2845  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosDueTodayBackgroundImage" ) ))
2846  mMonthCalendarItemsToDosDueTodayBackgroundImage = v;
2847  }
2848 
2852  QString monthCalendarItemsToDosDueTodayBackgroundImage() const
2853  {
2854  return mMonthCalendarItemsToDosDueTodayBackgroundImage;
2855  }
2856 
2860  ItemString *monthCalendarItemsToDosDueTodayBackgroundImageItem()
2861  {
2862  return mMonthCalendarItemsToDosDueTodayBackgroundImageItem;
2863  }
2864 
2868  void setMonthCalendarItemsToDosDueTodayFont( const QFont & v )
2869  {
2870  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosDueTodayFont" ) ))
2871  mMonthCalendarItemsToDosDueTodayFont = v;
2872  }
2873 
2877  QFont monthCalendarItemsToDosDueTodayFont() const
2878  {
2879  return mMonthCalendarItemsToDosDueTodayFont;
2880  }
2881 
2885  ItemFont *monthCalendarItemsToDosDueTodayFontItem()
2886  {
2887  return mMonthCalendarItemsToDosDueTodayFontItem;
2888  }
2889 
2893  void setMonthCalendarItemsToDosDueTodayFrameColor( const QColor & v )
2894  {
2895  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosDueTodayFrameColor" ) ))
2896  mMonthCalendarItemsToDosDueTodayFrameColor = v;
2897  }
2898 
2902  QColor monthCalendarItemsToDosDueTodayFrameColor() const
2903  {
2904  return mMonthCalendarItemsToDosDueTodayFrameColor;
2905  }
2906 
2910  ItemColor *monthCalendarItemsToDosDueTodayFrameColorItem()
2911  {
2912  return mMonthCalendarItemsToDosDueTodayFrameColorItem;
2913  }
2914 
2918  void setMonthCalendarItemsToDosDueTodayIcon( const QString & v )
2919  {
2920  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosDueTodayIcon" ) ))
2921  mMonthCalendarItemsToDosDueTodayIcon = v;
2922  }
2923 
2927  QString monthCalendarItemsToDosDueTodayIcon() const
2928  {
2929  return mMonthCalendarItemsToDosDueTodayIcon;
2930  }
2931 
2935  ItemString *monthCalendarItemsToDosDueTodayIconItem()
2936  {
2937  return mMonthCalendarItemsToDosDueTodayIconItem;
2938  }
2939 
2943  void setMonthCalendarItemsToDosOverdueBackgroundColor( const QColor & v )
2944  {
2945  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosOverdueBackgroundColor" ) ))
2946  mMonthCalendarItemsToDosOverdueBackgroundColor = v;
2947  }
2948 
2952  QColor monthCalendarItemsToDosOverdueBackgroundColor() const
2953  {
2954  return mMonthCalendarItemsToDosOverdueBackgroundColor;
2955  }
2956 
2960  ItemColor *monthCalendarItemsToDosOverdueBackgroundColorItem()
2961  {
2962  return mMonthCalendarItemsToDosOverdueBackgroundColorItem;
2963  }
2964 
2968  void setMonthCalendarItemsToDosOverdueBackgroundImage( const QString & v )
2969  {
2970  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosOverdueBackgroundImage" ) ))
2971  mMonthCalendarItemsToDosOverdueBackgroundImage = v;
2972  }
2973 
2977  QString monthCalendarItemsToDosOverdueBackgroundImage() const
2978  {
2979  return mMonthCalendarItemsToDosOverdueBackgroundImage;
2980  }
2981 
2985  ItemString *monthCalendarItemsToDosOverdueBackgroundImageItem()
2986  {
2987  return mMonthCalendarItemsToDosOverdueBackgroundImageItem;
2988  }
2989 
2993  void setMonthCalendarItemsToDosOverdueFont( const QFont & v )
2994  {
2995  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosOverdueFont" ) ))
2996  mMonthCalendarItemsToDosOverdueFont = v;
2997  }
2998 
3002  QFont monthCalendarItemsToDosOverdueFont() const
3003  {
3004  return mMonthCalendarItemsToDosOverdueFont;
3005  }
3006 
3010  ItemFont *monthCalendarItemsToDosOverdueFontItem()
3011  {
3012  return mMonthCalendarItemsToDosOverdueFontItem;
3013  }
3014 
3018  void setMonthCalendarItemsToDosOverdueFrameColor( const QColor & v )
3019  {
3020  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosOverdueFrameColor" ) ))
3021  mMonthCalendarItemsToDosOverdueFrameColor = v;
3022  }
3023 
3027  QColor monthCalendarItemsToDosOverdueFrameColor() const
3028  {
3029  return mMonthCalendarItemsToDosOverdueFrameColor;
3030  }
3031 
3035  ItemColor *monthCalendarItemsToDosOverdueFrameColorItem()
3036  {
3037  return mMonthCalendarItemsToDosOverdueFrameColorItem;
3038  }
3039 
3043  void setMonthCalendarItemsToDosOverdueIcon( const QString & v )
3044  {
3045  if (!isImmutable( QString::fromLatin1( "MonthCalendarItemsToDosOverdueIcon" ) ))
3046  mMonthCalendarItemsToDosOverdueIcon = v;
3047  }
3048 
3052  QString monthCalendarItemsToDosOverdueIcon() const
3053  {
3054  return mMonthCalendarItemsToDosOverdueIcon;
3055  }
3056 
3060  ItemString *monthCalendarItemsToDosOverdueIconItem()
3061  {
3062  return mMonthCalendarItemsToDosOverdueIconItem;
3063  }
3064 
3068  void setMonthHolidaysBackgroundColor( const QColor & v )
3069  {
3070  if (!isImmutable( QString::fromLatin1( "MonthHolidaysBackgroundColor" ) ))
3071  mMonthHolidaysBackgroundColor = v;
3072  }
3073 
3077  QColor monthHolidaysBackgroundColor() const
3078  {
3079  return mMonthHolidaysBackgroundColor;
3080  }
3081 
3085  ItemColor *monthHolidaysBackgroundColorItem()
3086  {
3087  return mMonthHolidaysBackgroundColorItem;
3088  }
3089 
3093  void setMonthHolidaysBackgroundImage( const QString & v )
3094  {
3095  if (!isImmutable( QString::fromLatin1( "MonthHolidaysBackgroundImage" ) ))
3096  mMonthHolidaysBackgroundImage = v;
3097  }
3098 
3102  QString monthHolidaysBackgroundImage() const
3103  {
3104  return mMonthHolidaysBackgroundImage;
3105  }
3106 
3110  ItemString *monthHolidaysBackgroundImageItem()
3111  {
3112  return mMonthHolidaysBackgroundImageItem;
3113  }
3114 
3115  protected:
3116  public:
3117 
3118  // Save Settings
3119  bool mAutoExport;
3120  int mAutoExportInterval;
3121  bool mConfirm;
3122  int mDestination;
3123 
3124  // System Tray
3125  bool mShowReminderDaemon;
3126 
3127  // Time & Date
3128  QString mTimeZoneId;
3129  QDateTime mDayBegins;
3130  QString mHolidays;
3131  QDateTime mWorkingHoursStart;
3132  QDateTime mWorkingHoursEnd;
3133  bool mExcludeHolidays;
3134  bool mColorMonthBusyDaysEnabled;
3135 
3136  // General View
3137  bool mEnableToolTips;
3138  bool mTodosUseCategoryColors;
3139  int mNextXDays;
3140  bool mDailyRecur;
3141  bool mWeeklyRecur;
3142  bool mHighlightTodos;
3143  bool mHighlightJournals;
3144  bool mWeekNumbersShowWork;
3145 
3146  // Agenda View
3147  int mHourSize;
3148  bool mEnableAgendaItemIcons;
3149  bool mShowTodosAgendaView;
3150  bool mMarcusBainsEnabled;
3151  bool mMarcusBainsShowSeconds;
3152  bool mSelectionStartsEditor;
3153  int mAgendaViewColors;
3154  bool mColorBusyDaysEnabled;
3155  int mAgendaViewCalendarDisplay;
3156 
3157  // Month View
3158  bool mEnableMonthItemIcons;
3159  bool mShowTimeInMonthView;
3160  bool mShowTodosMonthView;
3161  bool mShowJournalsMonthView;
3162  bool mFullViewMonth;
3163  int mMonthViewColors;
3164 
3165  // Todo View
3166  bool mSortCompletedTodosSeparately;
3167  bool mFullViewTodo;
3168  bool mFlatListTodo;
3169  bool mRecordTodosInJournals;
3170 
3171  // Colors
3172  QColor mHolidayColor;
3173  QColor mAgendaBgColor;
3174  QColor mAgendaMarcusBainsLineLineColor;
3175  QColor mViewBgBusyColor;
3176  QColor mWorkingHoursColor;
3177  QColor mTodoDueTodayColor;
3178  QColor mTodoOverdueColor;
3179 
3180  // Fonts
3181  QFont mAgendaTimeLabelsFont;
3182  QFont mMonthViewFont;
3183  QFont mAgendaViewFont;
3184  QFont mAgendaMarcusBainsLineFont;
3185 
3186  // KOrganizer Plugins
3187  QStringList mSelectedPlugins;
3188 
3189  // Hidden Options
3190  bool mEnableQuickTodo;
3191  bool mEnableTodoQuickSearch;
3192  int mDefaultTodoAttachMethod;
3193  bool mCompactDialogs;
3194  bool mShowMenuBar;
3195 
3196  // Internal Settings
3197  int mWorkWeekMask;
3198  int mDefaultResourceColorSeed;
3199  QStringList mDefaultResourceColors;
3200  bool mAssignDefaultResourceColors;
3201  QStringList mDecorationsAtMonthViewTop;
3202  QStringList mDecorationsAtAgendaViewTop;
3203  QStringList mDecorationsAtAgendaViewBottom;
3204 
3205  // Theming
3206  QColor mAgendaGridBackgroundColor;
3207  QString mAgendaGridBackgroundImage;
3208  QColor mAgendaGridHighlightColor;
3209  QString mAgendaGridWorkHoursBackgroundImage;
3210  QColor mAgendaCalendarItemsBackgroundColor;
3211  QString mAgendaCalendarItemsBackgroundImage;
3212  QFont mAgendaCalendarItemsFont;
3213  QColor mAgendaCalendarItemsFrameColor;
3214  QString mAgendaCalendarItemsIcon;
3215  QString mAgendaCalendarItemsEventsBackgroundImage;
3216  QFont mAgendaCalendarItemsEventsFont;
3217  QColor mAgendaCalendarItemsEventsFrameColor;
3218  QString mAgendaCalendarItemsEventsIcon;
3219  QColor mAgendaCalendarItemsToDosBackgroundColor;
3220  QString mAgendaCalendarItemsToDosBackgroundImage;
3221  QFont mAgendaCalendarItemsToDosFont;
3222  QColor mAgendaCalendarItemsToDosFrameColor;
3223  QString mAgendaCalendarItemsToDosIcon;
3224  QString mAgendaCalendarItemsToDosDueTodayBackgroundImage;
3225  QFont mAgendaCalendarItemsToDosDueTodayFont;
3226  QColor mAgendaCalendarItemsToDosDueTodayFrameColor;
3227  QString mAgendaCalendarItemsToDosDueTodayIcon;
3228  QString mAgendaCalendarItemsToDosOverdueBackgroundImage;
3229  QFont mAgendaCalendarItemsToDosOverdueFont;
3230  QColor mAgendaCalendarItemsToDosOverdueFrameColor;
3231  QString mAgendaCalendarItemsToDosOverdueIcon;
3232  QColor mAgendaHolidaysBackgroundColor;
3233  QString mAgendaHolidaysBackgroundImage;
3234 
3235  // Theme/Month view
3236  QColor mMonthGridBackgroundColor;
3237  QString mMonthGridBackgroundImage;
3238  QColor mMonthGridHighlightColor;
3239  QColor mMonthGridWorkHoursBackgroundColor;
3240  QString mMonthGridWorkHoursBackgroundImage;
3241  QColor mMonthCalendarItemsBackgroundColor;
3242  QString mMonthCalendarItemsBackgroundImage;
3243  QFont mMonthCalendarItemsFont;
3244  QColor mMonthCalendarItemsFrameColor;
3245  QString mMonthCalendarItemsIcon;
3246  QColor mMonthCalendarItemsEventsBackgroundColor;
3247  QString mMonthCalendarItemsEventsBackgroundImage;
3248  QFont mMonthCalendarItemsEventsFont;
3249  QColor mMonthCalendarItemsEventsFrameColor;
3250  QString mMonthCalendarItemsEventsIcon;
3251  QColor mMonthCalendarItemsToDosBackgroundColor;
3252  QString mMonthCalendarItemsToDosBackgroundImage;
3253  QFont mMonthCalendarItemsToDosFont;
3254  QColor mMonthCalendarItemsToDosFrameColor;
3255  QString mMonthCalendarItemsToDosIcon;
3256  QColor mMonthCalendarItemsToDosDueTodayBackgroundColor;
3257  QString mMonthCalendarItemsToDosDueTodayBackgroundImage;
3258  QFont mMonthCalendarItemsToDosDueTodayFont;
3259  QColor mMonthCalendarItemsToDosDueTodayFrameColor;
3260  QString mMonthCalendarItemsToDosDueTodayIcon;
3261  QColor mMonthCalendarItemsToDosOverdueBackgroundColor;
3262  QString mMonthCalendarItemsToDosOverdueBackgroundImage;
3263  QFont mMonthCalendarItemsToDosOverdueFont;
3264  QColor mMonthCalendarItemsToDosOverdueFrameColor;
3265  QString mMonthCalendarItemsToDosOverdueIcon;
3266  QColor mMonthHolidaysBackgroundColor;
3267  QString mMonthHolidaysBackgroundImage;
3268 
3269  private:
3270  ItemBool *mAutoExportItem;
3271  ItemInt *mAutoExportIntervalItem;
3272  ItemBool *mConfirmItem;
3273  ItemEnum *mDestinationItem;
3274  ItemBool *mShowReminderDaemonItem;
3275  ItemString *mTimeZoneIdItem;
3276  ItemDateTime *mDayBeginsItem;
3277  ItemString *mHolidaysItem;
3278  ItemDateTime *mWorkingHoursStartItem;
3279  ItemDateTime *mWorkingHoursEndItem;
3280  ItemBool *mExcludeHolidaysItem;
3281  ItemBool *mColorMonthBusyDaysEnabledItem;
3282  ItemBool *mEnableToolTipsItem;
3283  ItemBool *mTodosUseCategoryColorsItem;
3284  ItemInt *mNextXDaysItem;
3285  ItemBool *mDailyRecurItem;
3286  ItemBool *mWeeklyRecurItem;
3287  ItemBool *mHighlightTodosItem;
3288  ItemBool *mHighlightJournalsItem;
3289  ItemBool *mWeekNumbersShowWorkItem;
3290  ItemInt *mHourSizeItem;
3291  ItemBool *mEnableAgendaItemIconsItem;
3292  ItemBool *mShowTodosAgendaViewItem;
3293  ItemBool *mMarcusBainsEnabledItem;
3294  ItemBool *mMarcusBainsShowSecondsItem;
3295  ItemBool *mSelectionStartsEditorItem;
3296  ItemEnum *mAgendaViewColorsItem;
3297  ItemBool *mColorBusyDaysEnabledItem;
3298  ItemEnum *mAgendaViewCalendarDisplayItem;
3299  ItemBool *mEnableMonthItemIconsItem;
3300  ItemBool *mShowTimeInMonthViewItem;
3301  ItemBool *mShowTodosMonthViewItem;
3302  ItemBool *mShowJournalsMonthViewItem;
3303  ItemBool *mFullViewMonthItem;
3304  ItemEnum *mMonthViewColorsItem;
3305  ItemBool *mSortCompletedTodosSeparatelyItem;
3306  ItemBool *mFullViewTodoItem;
3307  ItemBool *mFlatListTodoItem;
3308  ItemBool *mRecordTodosInJournalsItem;
3309  ItemColor *mHolidayColorItem;
3310  ItemColor *mAgendaBgColorItem;
3311  ItemColor *mAgendaMarcusBainsLineLineColorItem;
3312  ItemColor *mViewBgBusyColorItem;
3313  ItemColor *mWorkingHoursColorItem;
3314  ItemColor *mTodoDueTodayColorItem;
3315  ItemColor *mTodoOverdueColorItem;
3316  ItemFont *mAgendaTimeLabelsFontItem;
3317  ItemFont *mMonthViewFontItem;
3318  ItemFont *mAgendaViewFontItem;
3319  ItemFont *mAgendaMarcusBainsLineFontItem;
3320  ItemStringList *mSelectedPluginsItem;
3321  ItemBool *mEnableQuickTodoItem;
3322  ItemBool *mEnableTodoQuickSearchItem;
3323  ItemEnum *mDefaultTodoAttachMethodItem;
3324  ItemBool *mCompactDialogsItem;
3325  ItemBool *mShowMenuBarItem;
3326  ItemInt *mWorkWeekMaskItem;
3327  ItemInt *mDefaultResourceColorSeedItem;
3328  ItemStringList *mDefaultResourceColorsItem;
3329  ItemBool *mAssignDefaultResourceColorsItem;
3330  ItemStringList *mDecorationsAtMonthViewTopItem;
3331  ItemStringList *mDecorationsAtAgendaViewTopItem;
3332  ItemStringList *mDecorationsAtAgendaViewBottomItem;
3333  ItemColor *mAgendaGridBackgroundColorItem;
3334  ItemString *mAgendaGridBackgroundImageItem;
3335  ItemColor *mAgendaGridHighlightColorItem;
3336  ItemString *mAgendaGridWorkHoursBackgroundImageItem;
3337  ItemColor *mAgendaCalendarItemsBackgroundColorItem;
3338  ItemString *mAgendaCalendarItemsBackgroundImageItem;
3339  ItemFont *mAgendaCalendarItemsFontItem;
3340  ItemColor *mAgendaCalendarItemsFrameColorItem;
3341  ItemString *mAgendaCalendarItemsIconItem;
3342  ItemString *mAgendaCalendarItemsEventsBackgroundImageItem;
3343  ItemFont *mAgendaCalendarItemsEventsFontItem;
3344  ItemColor *mAgendaCalendarItemsEventsFrameColorItem;
3345  ItemString *mAgendaCalendarItemsEventsIconItem;
3346  ItemColor *mAgendaCalendarItemsToDosBackgroundColorItem;
3347  ItemString *mAgendaCalendarItemsToDosBackgroundImageItem;
3348  ItemFont *mAgendaCalendarItemsToDosFontItem;
3349  ItemColor *mAgendaCalendarItemsToDosFrameColorItem;
3350  ItemString *mAgendaCalendarItemsToDosIconItem;
3351  ItemString *mAgendaCalendarItemsToDosDueTodayBackgroundImageItem;
3352  ItemFont *mAgendaCalendarItemsToDosDueTodayFontItem;
3353  ItemColor *mAgendaCalendarItemsToDosDueTodayFrameColorItem;
3354  ItemString *mAgendaCalendarItemsToDosDueTodayIconItem;
3355  ItemString *mAgendaCalendarItemsToDosOverdueBackgroundImageItem;
3356  ItemFont *mAgendaCalendarItemsToDosOverdueFontItem;
3357  ItemColor *mAgendaCalendarItemsToDosOverdueFrameColorItem;
3358  ItemString *mAgendaCalendarItemsToDosOverdueIconItem;
3359  ItemColor *mAgendaHolidaysBackgroundColorItem;
3360  ItemString *mAgendaHolidaysBackgroundImageItem;
3361  ItemColor *mMonthGridBackgroundColorItem;
3362  ItemString *mMonthGridBackgroundImageItem;
3363  ItemColor *mMonthGridHighlightColorItem;
3364  ItemColor *mMonthGridWorkHoursBackgroundColorItem;
3365  ItemString *mMonthGridWorkHoursBackgroundImageItem;
3366  ItemColor *mMonthCalendarItemsBackgroundColorItem;
3367  ItemString *mMonthCalendarItemsBackgroundImageItem;
3368  ItemFont *mMonthCalendarItemsFontItem;
3369  ItemColor *mMonthCalendarItemsFrameColorItem;
3370  ItemString *mMonthCalendarItemsIconItem;
3371  ItemColor *mMonthCalendarItemsEventsBackgroundColorItem;
3372  ItemString *mMonthCalendarItemsEventsBackgroundImageItem;
3373  ItemFont *mMonthCalendarItemsEventsFontItem;
3374  ItemColor *mMonthCalendarItemsEventsFrameColorItem;
3375  ItemString *mMonthCalendarItemsEventsIconItem;
3376  ItemColor *mMonthCalendarItemsToDosBackgroundColorItem;
3377  ItemString *mMonthCalendarItemsToDosBackgroundImageItem;
3378  ItemFont *mMonthCalendarItemsToDosFontItem;
3379  ItemColor *mMonthCalendarItemsToDosFrameColorItem;
3380  ItemString *mMonthCalendarItemsToDosIconItem;
3381  ItemColor *mMonthCalendarItemsToDosDueTodayBackgroundColorItem;
3382  ItemString *mMonthCalendarItemsToDosDueTodayBackgroundImageItem;
3383  ItemFont *mMonthCalendarItemsToDosDueTodayFontItem;
3384  ItemColor *mMonthCalendarItemsToDosDueTodayFrameColorItem;
3385  ItemString *mMonthCalendarItemsToDosDueTodayIconItem;
3386  ItemColor *mMonthCalendarItemsToDosOverdueBackgroundColorItem;
3387  ItemString *mMonthCalendarItemsToDosOverdueBackgroundImageItem;
3388  ItemFont *mMonthCalendarItemsToDosOverdueFontItem;
3389  ItemColor *mMonthCalendarItemsToDosOverdueFrameColorItem;
3390  ItemString *mMonthCalendarItemsToDosOverdueIconItem;
3391  ItemColor *mMonthHolidaysBackgroundColorItem;
3392  ItemString *mMonthHolidaysBackgroundImageItem;
3393 };
3394 
3395 #endif
3396 
KOPrefsBase::setMarcusBainsEnabled
void setMarcusBainsEnabled(bool v)
Set Show current-time (Marcus Bains) line.
Definition: koprefs_base.h:618
KOPrefsBase::monthCalendarItemsEventsBackgroundColorItem
ItemColor * monthCalendarItemsEventsBackgroundColorItem()
Get Item object corresponding to MonthCalendarItemsEventsBackgroundColor()
Definition: koprefs_base.h:2585
KOPrefsBase::todoDueTodayColor
QColor todoDueTodayColor() const
Get To-do due today color.
Definition: koprefs_base.h:1152
KOPrefsBase::setAgendaCalendarItemsEventsBackgroundImage
void setAgendaCalendarItemsEventsBackgroundImage(const QString &v)
Set Agenda CalendarItems Events Background Image.
Definition: koprefs_base.h:1843
KOPrefsBase::mCompactDialogs
bool mCompactDialogs
Definition: koprefs_base.h:3193
KOPrefsBase::setNextXDays
void setNextXDays(int v)
Set Next x days.
Definition: koprefs_base.h:381
KOPrefsBase::mMonthCalendarItemsToDosBackgroundImage
QString mMonthCalendarItemsToDosBackgroundImage
Definition: koprefs_base.h:3252
KOPrefsBase::setWorkingHoursStart
void setWorkingHoursStart(const QDateTime &v)
Set Daily starting hour.
Definition: koprefs_base.h:231
KOPrefsBase::agendaCalendarItemsFont
QFont agendaCalendarItemsFont() const
Get Agenda CalendarItems Font.
Definition: koprefs_base.h:1777
KOPrefsBase::agendaCalendarItemsEventsFrameColor
QColor agendaCalendarItemsEventsFrameColor() const
Get Agenda CalendarItems Events Frame Color.
Definition: koprefs_base.h:1902
KOPrefsBase::mFullViewTodo
bool mFullViewTodo
Definition: koprefs_base.h:3167
KOPrefsBase::monthCalendarItemsToDosOverdueBackgroundColor
QColor monthCalendarItemsToDosOverdueBackgroundColor() const
Get To-do overdue color.
Definition: koprefs_base.h:2952
KOPrefsBase::AllCalendarViews
Definition: koprefs_base.h:16
KOPrefsBase::setFullViewTodo
void setFullViewTodo(bool v)
Set To-do list view uses full window.
Definition: koprefs_base.h:943
KOPrefsBase::mMonthGridBackgroundImage
QString mMonthGridBackgroundImage
Definition: koprefs_base.h:3237
KOPrefsBase::setMonthCalendarItemsEventsFont
void setMonthCalendarItemsEventsFont(const QFont &v)
Set Month CalendarItems Events Font.
Definition: koprefs_base.h:2618
KOPrefsBase::setFlatListTodo
void setFlatListTodo(bool v)
Set Display to-dos in a flat list.
Definition: koprefs_base.h:968
KOPrefsBase::agendaCalendarItemsToDosOverdueBackgroundImage
QString agendaCalendarItemsToDosOverdueBackgroundImage() const
Get Agenda CalendarItems ToDos Overdue Background Image.
Definition: koprefs_base.h:2177
KOPrefsBase::weekNumbersShowWorkItem
ItemBool * weekNumbersShowWorkItem()
Get Item object corresponding to WeekNumbersShowWork()
Definition: koprefs_base.h:523
KOPrefsBase::defaultTodoAttachMethod
int defaultTodoAttachMethod() const
Get Default todo attachment method.
Definition: koprefs_base.h:1377
KOPrefsBase::monthGridBackgroundColorItem
ItemColor * monthGridBackgroundColorItem()
Get Item object corresponding to MonthGridBackgroundColor()
Definition: koprefs_base.h:2335
KOPrefsBase::setMonthCalendarItemsFrameColor
void setMonthCalendarItemsFrameColor(const QColor &v)
Set Month CalendarItems Frame Color.
Definition: koprefs_base.h:2518
KOPrefsBase::monthCalendarItemsFont
QFont monthCalendarItemsFont() const
Get Month CalendarItems Font.
Definition: koprefs_base.h:2502
KOPrefsBase::timeZoneIdItem
ItemString * timeZoneIdItem()
Get Item object corresponding to TimeZoneId()
Definition: koprefs_base.h:173
KOPrefsBase::EnumAgendaViewColors
EnumAgendaViewColors
Definition: koprefs_base.h:15
KOPrefsBase::setAgendaCalendarItemsFrameColor
void setAgendaCalendarItemsFrameColor(const QColor &v)
Set Agenda CalendarItems Frame Color.
Definition: koprefs_base.h:1793
KOPrefsBase::setDecorationsAtMonthViewTop
void setDecorationsAtMonthViewTop(const QStringList &v)
Set Decorations At Month View Top.
Definition: koprefs_base.h:1543
KOPrefsBase::setDecorationsAtAgendaViewTop
void setDecorationsAtAgendaViewTop(const QStringList &v)
Set Decorations At Agenda View Top.
Definition: koprefs_base.h:1568
KOPrefsBase::mAgendaGridWorkHoursBackgroundImage
QString mAgendaGridWorkHoursBackgroundImage
Definition: koprefs_base.h:3209
KOPrefsBase::showTodosMonthView
bool showTodosMonthView() const
Get Show to-dos.
Definition: koprefs_base.h:827
KOPrefsBase::mWeekNumbersShowWork
bool mWeekNumbersShowWork
Definition: koprefs_base.h:3144
KOPrefsBase::monthCalendarItemsToDosOverdueFrameColor
QColor monthCalendarItemsToDosOverdueFrameColor() const
Get Month CalendarItems ToDos Overdue Frame Color.
Definition: koprefs_base.h:3027
KOPrefsBase::monthCalendarItemsToDosBackgroundImage
QString monthCalendarItemsToDosBackgroundImage() const
Get Month CalendarItems ToDos Background Image.
Definition: koprefs_base.h:2727
KOPrefsBase::setMonthCalendarItemsToDosIcon
void setMonthCalendarItemsToDosIcon(const QString &v)
Set Month CalendarItems ToDos Icon.
Definition: koprefs_base.h:2793
KOPrefsBase::excludeHolidays
bool excludeHolidays() const
Get Exclude holidays.
Definition: koprefs_base.h:290
KOPrefsBase::agendaViewColors
int agendaViewColors() const
Get Color Usage.
Definition: koprefs_base.h:702
KOPrefsBase::mAssignDefaultResourceColors
bool mAssignDefaultResourceColors
Definition: koprefs_base.h:3200
KOPrefsBase::mAgendaCalendarItemsToDosOverdueIcon
QString mAgendaCalendarItemsToDosOverdueIcon
Definition: koprefs_base.h:3231
KOPrefsBase::mRecordTodosInJournals
bool mRecordTodosInJournals
Definition: koprefs_base.h:3169
KOPrefsBase::enableTodoQuickSearchItem
ItemBool * enableTodoQuickSearchItem()
Get Item object corresponding to EnableTodoQuickSearch()
Definition: koprefs_base.h:1360
KOPrefsBase::mExcludeHolidays
bool mExcludeHolidays
Definition: koprefs_base.h:3133
KOPrefsBase::mShowMenuBar
bool mShowMenuBar
Definition: koprefs_base.h:3194
KOPrefsBase::agendaCalendarItemsBackgroundImageItem
ItemString * agendaCalendarItemsBackgroundImageItem()
Get Item object corresponding to AgendaCalendarItemsBackgroundImage()
Definition: koprefs_base.h:1760
KOPrefsBase::mMonthCalendarItemsToDosDueTodayBackgroundColor
QColor mMonthCalendarItemsToDosDueTodayBackgroundColor
Definition: koprefs_base.h:3256
KOPrefsBase::todosUseCategoryColorsItem
ItemBool * todosUseCategoryColorsItem()
Get Item object corresponding to TodosUseCategoryColors()
Definition: koprefs_base.h:373
KOPrefsBase::hourSize
int hourSize() const
Get Hour size.
Definition: koprefs_base.h:552
KOPrefsBase::marcusBainsEnabledItem
ItemBool * marcusBainsEnabledItem()
Get Item object corresponding to MarcusBainsEnabled()
Definition: koprefs_base.h:635
KOPrefsBase::mAgendaCalendarItemsBackgroundImage
QString mAgendaCalendarItemsBackgroundImage
Definition: koprefs_base.h:3211
KOPrefsBase::monthCalendarItemsToDosOverdueBackgroundColorItem
ItemColor * monthCalendarItemsToDosOverdueBackgroundColorItem()
Get Item object corresponding to MonthCalendarItemsToDosOverdueBackgroundColor()
Definition: koprefs_base.h:2960
KOPrefsBase::monthCalendarItemsToDosBackgroundImageItem
ItemString * monthCalendarItemsToDosBackgroundImageItem()
Get Item object corresponding to MonthCalendarItemsToDosBackgroundImage()
Definition: koprefs_base.h:2735
KOPrefsBase::setAgendaCalendarItemsToDosDueTodayFrameColor
void setAgendaCalendarItemsToDosDueTodayFrameColor(const QColor &v)
Set Agenda CalendarItems ToDos DueToday Frame Color.
Definition: koprefs_base.h:2118
KOPrefsBase::setMonthCalendarItemsIcon
void setMonthCalendarItemsIcon(const QString &v)
Set Month CalendarItems Icon.
Definition: koprefs_base.h:2543
KOPrefsBase::mAgendaHolidaysBackgroundColor
QColor mAgendaHolidaysBackgroundColor
Definition: koprefs_base.h:3232
KOPrefsBase::mMarcusBainsShowSeconds
bool mMarcusBainsShowSeconds
Definition: koprefs_base.h:3151
KOPrefsBase::monthCalendarItemsEventsFrameColorItem
ItemColor * monthCalendarItemsEventsFrameColorItem()
Get Item object corresponding to MonthCalendarItemsEventsFrameColor()
Definition: koprefs_base.h:2660
KOPrefsBase::setSelectionStartsEditor
void setSelectionStartsEditor(bool v)
Set Time range selection in agenda view starts event editor.
Definition: koprefs_base.h:668
KOPrefsBase::confirmItem
ItemBool * confirmItem()
Get Item object corresponding to Confirm()
Definition: koprefs_base.h:98
KOPrefsBase::setAgendaHolidaysBackgroundColor
void setAgendaHolidaysBackgroundColor(const QColor &v)
Set Holiday color.
Definition: koprefs_base.h:2268
KOPrefsBase::monthCalendarItemsToDosDueTodayFrameColorItem
ItemColor * monthCalendarItemsToDosDueTodayFrameColorItem()
Get Item object corresponding to MonthCalendarItemsToDosDueTodayFrameColor()
Definition: koprefs_base.h:2910
KOPrefsBase::assignDefaultResourceColors
bool assignDefaultResourceColors() const
Get AssignDefaultResourceColors.
Definition: koprefs_base.h:1527
KOPrefsBase::mMonthGridBackgroundColor
QColor mMonthGridBackgroundColor
Definition: koprefs_base.h:3236
KOPrefsBase::sortCompletedTodosSeparatelyItem
ItemBool * sortCompletedTodosSeparatelyItem()
Get Item object corresponding to SortCompletedTodosSeparately()
Definition: koprefs_base.h:935
KOPrefsBase::agendaBgColor
QColor agendaBgColor() const
Get Agenda view background color.
Definition: koprefs_base.h:1052
KOPrefsBase::defaultResourceColorSeed
int defaultResourceColorSeed() const
Get DefaultResourceColorSeed.
Definition: koprefs_base.h:1477
KOPrefsBase::mMonthCalendarItemsEventsBackgroundColor
QColor mMonthCalendarItemsEventsBackgroundColor
Definition: koprefs_base.h:3246
KOPrefsBase::monthCalendarItemsEventsBackgroundImageItem
ItemString * monthCalendarItemsEventsBackgroundImageItem()
Get Item object corresponding to MonthCalendarItemsEventsBackgroundImage()
Definition: koprefs_base.h:2610
KOPrefsBase::mAgendaCalendarItemsToDosDueTodayBackgroundImage
QString mAgendaCalendarItemsToDosDueTodayBackgroundImage
Definition: koprefs_base.h:3224
KOPrefsBase::mEnableTodoQuickSearch
bool mEnableTodoQuickSearch
Definition: koprefs_base.h:3191
KOPrefsBase::agendaGridWorkHoursBackgroundImageItem
ItemString * agendaGridWorkHoursBackgroundImageItem()
Get Item object corresponding to AgendaGridWorkHoursBackgroundImage()
Definition: koprefs_base.h:1710
KOPrefsBase::mAgendaCalendarItemsEventsFrameColor
QColor mAgendaCalendarItemsEventsFrameColor
Definition: koprefs_base.h:3217
KOPrefsBase::mAgendaCalendarItemsFrameColor
QColor mAgendaCalendarItemsFrameColor
Definition: koprefs_base.h:3213
KOPrefsBase::setHourSize
void setHourSize(int v)
Set Hour size.
Definition: koprefs_base.h:531
KOPrefsBase::mMonthCalendarItemsBackgroundColor
QColor mMonthCalendarItemsBackgroundColor
Definition: koprefs_base.h:3241
KOPrefsBase::setAgendaCalendarItemsToDosOverdueFrameColor
void setAgendaCalendarItemsToDosOverdueFrameColor(const QColor &v)
Set Agenda CalendarItems ToDos Overdue Frame Color.
Definition: koprefs_base.h:2218
KOPrefsBase::mAgendaCalendarItemsToDosDueTodayFont
QFont mAgendaCalendarItemsToDosDueTodayFont
Definition: koprefs_base.h:3225
KOPrefsBase::enableQuickTodo
bool enableQuickTodo() const
Get Quick Todo.
Definition: koprefs_base.h:1327
KOPrefsBase::setAgendaCalendarItemsToDosDueTodayFont
void setAgendaCalendarItemsToDosDueTodayFont(const QFont &v)
Set Agenda CalendarItems ToDos DueToday Font.
Definition: koprefs_base.h:2093
KOPrefsBase::askDestination
Definition: koprefs_base.h:14
KOPrefsBase::mAgendaCalendarItemsToDosDueTodayFrameColor
QColor mAgendaCalendarItemsToDosDueTodayFrameColor
Definition: koprefs_base.h:3226
KOPrefsBase::monthCalendarItemsFontItem
ItemFont * monthCalendarItemsFontItem()
Get Item object corresponding to MonthCalendarItemsFont()
Definition: koprefs_base.h:2510
KOPrefsBase::mAgendaCalendarItemsFont
QFont mAgendaCalendarItemsFont
Definition: koprefs_base.h:3212
KOPrefsBase::compactDialogs
bool compactDialogs() const
Get CompactDialogs.
Definition: koprefs_base.h:1402
KOPrefsBase::agendaCalendarItemsToDosDueTodayFrameColor
QColor agendaCalendarItemsToDosDueTodayFrameColor() const
Get Agenda CalendarItems ToDos DueToday Frame Color.
Definition: koprefs_base.h:2127
KOPrefsBase::autoExportInterval
int autoExportInterval() const
Get Export &interval in minutes.
Definition: koprefs_base.h:65
KOPrefsBase::setAgendaCalendarItemsToDosOverdueBackgroundImage
void setAgendaCalendarItemsToDosOverdueBackgroundImage(const QString &v)
Set Agenda CalendarItems ToDos Overdue Background Image.
Definition: koprefs_base.h:2168
KOPrefsBase::monthCalendarItemsToDosOverdueFont
QFont monthCalendarItemsToDosOverdueFont() const
Get Month CalendarItems ToDos Overdue Font.
Definition: koprefs_base.h:3002
KOPrefsBase::~KOPrefsBase
~KOPrefsBase()
Definition: koprefs_base.cpp:633
KOPrefsBase::setMarcusBainsShowSeconds
void setMarcusBainsShowSeconds(bool v)
Set Show seconds on the current-time (Marcus Bains) line.
Definition: koprefs_base.h:643
KOPrefsBase::setDefaultResourceColorSeed
void setDefaultResourceColorSeed(int v)
Set DefaultResourceColorSeed.
Definition: koprefs_base.h:1468
KOPrefsBase::monthViewFontItem
ItemFont * monthViewFontItem()
Get Item object corresponding to MonthViewFont()
Definition: koprefs_base.h:1235
KOPrefsBase::mMonthCalendarItemsEventsBackgroundImage
QString mMonthCalendarItemsEventsBackgroundImage
Definition: koprefs_base.h:3247
KOPrefsBase::agendaGridBackgroundImage
QString agendaGridBackgroundImage() const
Get Agenda Grid Background Image.
Definition: koprefs_base.h:1652
KOPrefsBase::selectedPlugins
QStringList selectedPlugins() const
Get SelectedPlugins.
Definition: koprefs_base.h:1302
KOPrefsBase::setHolidays
void setHolidays(const QString &v)
Set Use holiday region:
Definition: koprefs_base.h:206
KOPrefsBase::EnumAgendaViewCalendarDisplay
EnumAgendaViewCalendarDisplay
Definition: koprefs_base.h:16
KOPrefsBase::showMenuBarItem
ItemBool * showMenuBarItem()
Get Item object corresponding to ShowMenuBar()
Definition: koprefs_base.h:1435
KOPrefsBase::selectionStartsEditorItem
ItemBool * selectionStartsEditorItem()
Get Item object corresponding to SelectionStartsEditor()
Definition: koprefs_base.h:685
KOPrefsBase::defaultResourceColorSeedItem
ItemInt * defaultResourceColorSeedItem()
Get Item object corresponding to DefaultResourceColorSeed()
Definition: koprefs_base.h:1485
KOPrefsBase::setAgendaCalendarItemsEventsFont
void setAgendaCalendarItemsEventsFont(const QFont &v)
Set Agenda CalendarItems Events Font.
Definition: koprefs_base.h:1868
KOPrefsBase::agendaGridBackgroundColorItem
ItemColor * agendaGridBackgroundColorItem()
Get Item object corresponding to AgendaGridBackgroundColor()
Definition: koprefs_base.h:1635
KOPrefsBase::setMonthCalendarItemsToDosBackgroundColor
void setMonthCalendarItemsToDosBackgroundColor(const QColor &v)
Set Month CalendarItems ToDos Background Color.
Definition: koprefs_base.h:2693
KOPrefsBase::setAgendaMarcusBainsLineLineColor
void setAgendaMarcusBainsLineLineColor(const QColor &v)
Set Agenda view current-time line color.
Definition: koprefs_base.h:1068
KOPrefsBase::mAgendaViewColors
int mAgendaViewColors
Definition: koprefs_base.h:3153
KOPrefsBase::setEnableAgendaItemIcons
void setEnableAgendaItemIcons(bool v)
Set Show icons in agenda view items.
Definition: koprefs_base.h:568
KOPrefsBase::agendaCalendarItemsToDosDueTodayFrameColorItem
ItemColor * agendaCalendarItemsToDosDueTodayFrameColorItem()
Get Item object corresponding to AgendaCalendarItemsToDosDueTodayFrameColor()
Definition: koprefs_base.h:2135
KOPrefsBase::setExcludeHolidays
void setExcludeHolidays(bool v)
Set Exclude holidays.
Definition: koprefs_base.h:281
KOPrefsBase::mMonthCalendarItemsToDosDueTodayFont
QFont mMonthCalendarItemsToDosDueTodayFont
Definition: koprefs_base.h:3258
KOPrefsBase::decorationsAtMonthViewTopItem
ItemStringList * decorationsAtMonthViewTopItem()
Get Item object corresponding to DecorationsAtMonthViewTop()
Definition: koprefs_base.h:1560
KOPrefsBase::monthCalendarItemsToDosIcon
QString monthCalendarItemsToDosIcon() const
Get Month CalendarItems ToDos Icon.
Definition: koprefs_base.h:2802
KOPrefsBase::monthGridHighlightColor
QColor monthGridHighlightColor() const
Get Highlight color.
Definition: koprefs_base.h:2377
KOPrefsBase::agendaHolidaysBackgroundImageItem
ItemString * agendaHolidaysBackgroundImageItem()
Get Item object corresponding to AgendaHolidaysBackgroundImage()
Definition: koprefs_base.h:2310
KOPrefsBase::mDefaultResourceColors
QStringList mDefaultResourceColors
Definition: koprefs_base.h:3199
KOPrefsBase::mDefaultTodoAttachMethod
int mDefaultTodoAttachMethod
Definition: koprefs_base.h:3192
KOPrefsBase::setMonthGridWorkHoursBackgroundImage
void setMonthGridWorkHoursBackgroundImage(const QString &v)
Set Month Grid WorkHours Background Image.
Definition: koprefs_base.h:2418
KOPrefsBase::setAgendaViewColors
void setAgendaViewColors(int v)
Set Color Usage.
Definition: koprefs_base.h:693
KOPrefsBase::agendaViewColorsItem
ItemEnum * agendaViewColorsItem()
Get Item object corresponding to AgendaViewColors()
Definition: koprefs_base.h:710
KOPrefsBase::todosUseCategoryColors
bool todosUseCategoryColors() const
Get To-dos use category colors.
Definition: koprefs_base.h:365
KOPrefsBase::autoExportIntervalItem
ItemInt * autoExportIntervalItem()
Get Item object corresponding to AutoExportInterval()
Definition: koprefs_base.h:73
KOPrefsBase::mHighlightTodos
bool mHighlightTodos
Definition: koprefs_base.h:3142
KOPrefsBase::mTodoOverdueColor
QColor mTodoOverdueColor
Definition: koprefs_base.h:3178
KOPrefsBase::viewBgBusyColor
QColor viewBgBusyColor() const
Get Busy days background color.
Definition: koprefs_base.h:1102
KOPrefsBase::mWorkWeekMask
int mWorkWeekMask
Definition: koprefs_base.h:3197
KOPrefsBase::setTodoDueTodayColor
void setTodoDueTodayColor(const QColor &v)
Set To-do due today color.
Definition: koprefs_base.h:1143
KOPrefsBase::agendaCalendarItemsFrameColorItem
ItemColor * agendaCalendarItemsFrameColorItem()
Get Item object corresponding to AgendaCalendarItemsFrameColor()
Definition: koprefs_base.h:1810
KOPrefsBase::agendaTimeLabelsFontItem
ItemFont * agendaTimeLabelsFontItem()
Get Item object corresponding to AgendaTimeLabelsFont()
Definition: koprefs_base.h:1210
KOPrefsBase::monthCalendarItemsFrameColor
QColor monthCalendarItemsFrameColor() const
Get Month CalendarItems Frame Color.
Definition: koprefs_base.h:2527
KOPrefsBase::fullViewTodoItem
ItemBool * fullViewTodoItem()
Get Item object corresponding to FullViewTodo()
Definition: koprefs_base.h:960
KOPrefsBase::setMonthCalendarItemsEventsFrameColor
void setMonthCalendarItemsEventsFrameColor(const QColor &v)
Set Month CalendarItems Events Frame Color.
Definition: koprefs_base.h:2643
KOPrefsBase::monthGridHighlightColorItem
ItemColor * monthGridHighlightColorItem()
Get Item object corresponding to MonthGridHighlightColor()
Definition: koprefs_base.h:2385
KOPrefsBase::mMonthCalendarItemsFont
QFont mMonthCalendarItemsFont
Definition: koprefs_base.h:3243
KOPrefsBase::monthCalendarItemsEventsFontItem
ItemFont * monthCalendarItemsEventsFontItem()
Get Item object corresponding to MonthCalendarItemsEventsFont()
Definition: koprefs_base.h:2635
KOPrefsBase::mAgendaCalendarItemsToDosBackgroundColor
QColor mAgendaCalendarItemsToDosBackgroundColor
Definition: koprefs_base.h:3219
KOPrefsBase::destinationItem
ItemEnum * destinationItem()
Get Item object corresponding to Destination()
Definition: koprefs_base.h:123
KConfigSkeleton
KOPrefsBase::confirm
bool confirm() const
Get Confirm deletes.
Definition: koprefs_base.h:90
KOPrefsBase::setMonthHolidaysBackgroundImage
void setMonthHolidaysBackgroundImage(const QString &v)
Set Month Holidays Background Image.
Definition: koprefs_base.h:3093
KOPrefsBase::setEnableMonthItemIcons
void setEnableMonthItemIcons(bool v)
Set Show icons in month view items.
Definition: koprefs_base.h:768
KOPrefsBase::monthCalendarItemsBackgroundColorItem
ItemColor * monthCalendarItemsBackgroundColorItem()
Get Item object corresponding to MonthCalendarItemsBackgroundColor()
Definition: koprefs_base.h:2460
KOPrefsBase::enableToolTipsItem
ItemBool * enableToolTipsItem()
Get Item object corresponding to EnableToolTips()
Definition: koprefs_base.h:348
KOPrefsBase::mAgendaCalendarItemsEventsFont
QFont mAgendaCalendarItemsEventsFont
Definition: koprefs_base.h:3216
KOPrefsBase::fullViewMonthItem
ItemBool * fullViewMonthItem()
Get Item object corresponding to FullViewMonth()
Definition: koprefs_base.h:885
KOPrefsBase::mHourSize
int mHourSize
Definition: koprefs_base.h:3147
KOPrefsBase::setWeeklyRecur
void setWeeklyRecur(bool v)
Set Show items that recur weekly.
Definition: koprefs_base.h:431
KOPrefsBase::excludeHolidaysItem
ItemBool * excludeHolidaysItem()
Get Item object corresponding to ExcludeHolidays()
Definition: koprefs_base.h:298
KOPrefsBase::agendaCalendarItemsEventsIconItem
ItemString * agendaCalendarItemsEventsIconItem()
Get Item object corresponding to AgendaCalendarItemsEventsIcon()
Definition: koprefs_base.h:1935
KOPrefsBase::agendaViewCalendarDisplay
int agendaViewCalendarDisplay() const
Get Multiple Calendar Display.
Definition: koprefs_base.h:752
KOPrefsBase::autoExport
bool autoExport() const
Get Export to HTML periodically.
Definition: koprefs_base.h:35
KOPrefsBase::TodoAttachInlineFull
Definition: koprefs_base.h:18
KOPrefsBase::setAgendaCalendarItemsEventsFrameColor
void setAgendaCalendarItemsEventsFrameColor(const QColor &v)
Set Agenda CalendarItems Events Frame Color.
Definition: koprefs_base.h:1893
KOPrefsBase::setConfirm
void setConfirm(bool v)
Set Confirm deletes.
Definition: koprefs_base.h:81
KOPrefsBase::mSortCompletedTodosSeparately
bool mSortCompletedTodosSeparately
Definition: koprefs_base.h:3166
KOPrefsBase::setColorBusyDaysEnabled
void setColorBusyDaysEnabled(bool v)
Set Color busy days with a different background color.
Definition: koprefs_base.h:718
KOPrefsBase::setAgendaTimeLabelsFont
void setAgendaTimeLabelsFont(const QFont &v)
Set Time bar.
Definition: koprefs_base.h:1193
KOPrefsBase::agendaGridHighlightColor
QColor agendaGridHighlightColor() const
Get Highlight color.
Definition: koprefs_base.h:1677
KOPrefsBase::agendaCalendarItemsToDosOverdueIconItem
ItemString * agendaCalendarItemsToDosOverdueIconItem()
Get Item object corresponding to AgendaCalendarItemsToDosOverdueIcon()
Definition: koprefs_base.h:2260
KOPrefsBase::setHolidayColor
void setHolidayColor(const QColor &v)
Set Holiday color.
Definition: koprefs_base.h:1018
KOPrefsBase::setMonthCalendarItemsToDosDueTodayBackgroundColor
void setMonthCalendarItemsToDosDueTodayBackgroundColor(const QColor &v)
Set To-do due today color.
Definition: koprefs_base.h:2818
KOPrefsBase::agendaCalendarItemsBackgroundImage
QString agendaCalendarItemsBackgroundImage() const
Get Agenda CalendarItems Background Image.
Definition: koprefs_base.h:1752
KOPrefsBase::mMonthCalendarItemsToDosFont
QFont mMonthCalendarItemsToDosFont
Definition: koprefs_base.h:3253
KOPrefsBase::setAgendaBgColor
void setAgendaBgColor(const QColor &v)
Set Agenda view background color.
Definition: koprefs_base.h:1043
KOPrefsBase::monthCalendarItemsToDosDueTodayFontItem
ItemFont * monthCalendarItemsToDosDueTodayFontItem()
Get Item object corresponding to MonthCalendarItemsToDosDueTodayFont()
Definition: koprefs_base.h:2885
KOPrefsBase::colorMonthBusyDaysEnabled
bool colorMonthBusyDaysEnabled() const
Get Color busy days with a different background color.
Definition: koprefs_base.h:315
KOPrefsBase::setMonthCalendarItemsEventsIcon
void setMonthCalendarItemsEventsIcon(const QString &v)
Set Month CalendarItems Events Icon.
Definition: koprefs_base.h:2668
KOPrefsBase::monthCalendarItemsToDosBackgroundColorItem
ItemColor * monthCalendarItemsToDosBackgroundColorItem()
Get Item object corresponding to MonthCalendarItemsToDosBackgroundColor()
Definition: koprefs_base.h:2710
KOPrefsBase::setEnableTodoQuickSearch
void setEnableTodoQuickSearch(bool v)
Set Todo Quick Search.
Definition: koprefs_base.h:1343
KOPrefsBase::setAgendaCalendarItemsFont
void setAgendaCalendarItemsFont(const QFont &v)
Set Agenda CalendarItems Font.
Definition: koprefs_base.h:1768
KOPrefsBase::selectionStartsEditor
bool selectionStartsEditor() const
Get Time range selection in agenda view starts event editor.
Definition: koprefs_base.h:677
KOPrefsBase::mAgendaMarcusBainsLineLineColor
QColor mAgendaMarcusBainsLineLineColor
Definition: koprefs_base.h:3174
KOPrefsBase::defaultResourceColors
QStringList defaultResourceColors() const
Get DefaultResourceColors.
Definition: koprefs_base.h:1502
KOPrefsBase::defaultTodoAttachMethodItem
ItemEnum * defaultTodoAttachMethodItem()
Get Item object corresponding to DefaultTodoAttachMethod()
Definition: koprefs_base.h:1385
KOPrefsBase::dayBeginsItem
ItemDateTime * dayBeginsItem()
Get Item object corresponding to DayBegins()
Definition: koprefs_base.h:198
KOPrefsBase::viewBgBusyColorItem
ItemColor * viewBgBusyColorItem()
Get Item object corresponding to ViewBgBusyColor()
Definition: koprefs_base.h:1110
KOPrefsBase::monthViewFont
QFont monthViewFont() const
Get Month view.
Definition: koprefs_base.h:1227
KOPrefsBase::todoOverdueColorItem
ItemColor * todoOverdueColorItem()
Get Item object corresponding to TodoOverdueColor()
Definition: koprefs_base.h:1185
KOPrefsBase::monthCalendarItemsIcon
QString monthCalendarItemsIcon() const
Get Month CalendarItems Icon.
Definition: koprefs_base.h:2552
KOPrefsBase::monthCalendarItemsToDosDueTodayBackgroundImage
QString monthCalendarItemsToDosDueTodayBackgroundImage() const
Get Month CalendarItems ToDos DueToday Background Image.
Definition: koprefs_base.h:2852
KOPrefsBase::colorBusyDaysEnabledItem
ItemBool * colorBusyDaysEnabledItem()
Get Item object corresponding to ColorBusyDaysEnabled()
Definition: koprefs_base.h:735
KOPrefsBase::mAgendaGridHighlightColor
QColor mAgendaGridHighlightColor
Definition: koprefs_base.h:3208
KOPrefsBase::weeklyRecur
bool weeklyRecur() const
Get Show items that recur weekly.
Definition: koprefs_base.h:440
KOPrefsBase::workingHoursEnd
QDateTime workingHoursEnd() const
Get Daily ending hour.
Definition: koprefs_base.h:265
KOPrefsBase::mMonthCalendarItemsFrameColor
QColor mMonthCalendarItemsFrameColor
Definition: koprefs_base.h:3244
KOPrefsBase::CategoryOnly
Definition: koprefs_base.h:15
KOPrefsBase::setHighlightJournals
void setHighlightJournals(bool v)
Set Show journals instead of events when in Journal View.
Definition: koprefs_base.h:481
KOPrefsBase::mMonthCalendarItemsToDosOverdueFont
QFont mMonthCalendarItemsToDosOverdueFont
Definition: koprefs_base.h:3263
KOPrefsBase::monthHolidaysBackgroundImageItem
ItemString * monthHolidaysBackgroundImageItem()
Get Item object corresponding to MonthHolidaysBackgroundImage()
Definition: koprefs_base.h:3110
KOPrefsBase::agendaHolidaysBackgroundColor
QColor agendaHolidaysBackgroundColor() const
Get Holiday color.
Definition: koprefs_base.h:2277
KOPrefsBase::agendaMarcusBainsLineFontItem
ItemFont * agendaMarcusBainsLineFontItem()
Get Item object corresponding to AgendaMarcusBainsLineFont()
Definition: koprefs_base.h:1285
KOPrefsBase::mShowTodosMonthView
bool mShowTodosMonthView
Definition: koprefs_base.h:3160
KOPrefsBase::agendaCalendarItemsToDosDueTodayFont
QFont agendaCalendarItemsToDosDueTodayFont() const
Get Agenda CalendarItems ToDos DueToday Font.
Definition: koprefs_base.h:2102
KOPrefsBase::setTodoOverdueColor
void setTodoOverdueColor(const QColor &v)
Set To-do overdue color.
Definition: koprefs_base.h:1168
KOPrefsBase::MonthItemResourceOnly
Definition: koprefs_base.h:17
KOPrefsBase::holidaysItem
ItemString * holidaysItem()
Get Item object corresponding to Holidays()
Definition: koprefs_base.h:223
KOPrefsBase::holidayColorItem
ItemColor * holidayColorItem()
Get Item object corresponding to HolidayColor()
Definition: koprefs_base.h:1035
KOPrefsBase::setEnableQuickTodo
void setEnableQuickTodo(bool v)
Set Quick Todo.
Definition: koprefs_base.h:1318
KOPrefsBase::setAgendaHolidaysBackgroundImage
void setAgendaHolidaysBackgroundImage(const QString &v)
Set Agenda Holidays Background Image.
Definition: koprefs_base.h:2293
KOPrefsBase::agendaHolidaysBackgroundColorItem
ItemColor * agendaHolidaysBackgroundColorItem()
Get Item object corresponding to AgendaHolidaysBackgroundColor()
Definition: koprefs_base.h:2285
KOPrefsBase::monthCalendarItemsToDosBackgroundColor
QColor monthCalendarItemsToDosBackgroundColor() const
Get Month CalendarItems ToDos Background Color.
Definition: koprefs_base.h:2702
KOPrefsBase::setAgendaCalendarItemsEventsIcon
void setAgendaCalendarItemsEventsIcon(const QString &v)
Set Agenda CalendarItems Events Icon.
Definition: koprefs_base.h:1918
KOPrefsBase::enableAgendaItemIcons
bool enableAgendaItemIcons() const
Get Show icons in agenda view items.
Definition: koprefs_base.h:577
KOPrefsBase::setMonthCalendarItemsFont
void setMonthCalendarItemsFont(const QFont &v)
Set Month CalendarItems Font.
Definition: koprefs_base.h:2493
KOPrefsBase::flatListTodo
bool flatListTodo() const
Get Display to-dos in a flat list.
Definition: koprefs_base.h:977
KOPrefsBase::mAgendaViewCalendarDisplay
int mAgendaViewCalendarDisplay
Definition: koprefs_base.h:3155
KOPrefsBase::monthGridWorkHoursBackgroundImage
QString monthGridWorkHoursBackgroundImage() const
Get Month Grid WorkHours Background Image.
Definition: koprefs_base.h:2427
KOPrefsBase::mMonthCalendarItemsToDosDueTodayBackgroundImage
QString mMonthCalendarItemsToDosDueTodayBackgroundImage
Definition: koprefs_base.h:3257
KOPrefsBase::setAgendaGridHighlightColor
void setAgendaGridHighlightColor(const QColor &v)
Set Highlight color.
Definition: koprefs_base.h:1668
KOPrefsBase::mColorMonthBusyDaysEnabled
bool mColorMonthBusyDaysEnabled
Definition: koprefs_base.h:3134
KOPrefsBase::monthCalendarItemsToDosOverdueIcon
QString monthCalendarItemsToDosOverdueIcon() const
Get Month CalendarItems ToDos Overdue Icon.
Definition: koprefs_base.h:3052
KOPrefsBase::agendaCalendarItemsToDosOverdueIcon
QString agendaCalendarItemsToDosOverdueIcon() const
Get Agenda CalendarItems ToDos Overdue Icon.
Definition: koprefs_base.h:2252
KOPrefsBase::mDailyRecur
bool mDailyRecur
Definition: koprefs_base.h:3140
KOPrefsBase::monthCalendarItemsEventsFrameColor
QColor monthCalendarItemsEventsFrameColor() const
Get Month CalendarItems Events Frame Color.
Definition: koprefs_base.h:2652
KOPrefsBase::agendaCalendarItemsToDosIconItem
ItemString * agendaCalendarItemsToDosIconItem()
Get Item object corresponding to AgendaCalendarItemsToDosIcon()
Definition: koprefs_base.h:2060
KOPrefsBase::mDecorationsAtMonthViewTop
QStringList mDecorationsAtMonthViewTop
Definition: koprefs_base.h:3201
KOPrefsBase::monthCalendarItemsToDosDueTodayFrameColor
QColor monthCalendarItemsToDosDueTodayFrameColor() const
Get Month CalendarItems ToDos DueToday Frame Color.
Definition: koprefs_base.h:2902
KOPrefsBase::mHighlightJournals
bool mHighlightJournals
Definition: koprefs_base.h:3143
KOPrefsBase::monthCalendarItemsToDosIconItem
ItemString * monthCalendarItemsToDosIconItem()
Get Item object corresponding to MonthCalendarItemsToDosIcon()
Definition: koprefs_base.h:2810
KOPrefsBase::showTodosMonthViewItem
ItemBool * showTodosMonthViewItem()
Get Item object corresponding to ShowTodosMonthView()
Definition: koprefs_base.h:835
KOPrefsBase::showReminderDaemon
bool showReminderDaemon() const
Get Show Reminder Daemon in the System Tray.
Definition: koprefs_base.h:140
KOPrefsBase::showTimeInMonthView
bool showTimeInMonthView() const
Get Show time in month view items.
Definition: koprefs_base.h:802
KOPrefsBase::CategoryInsideResourceOutside
Definition: koprefs_base.h:15
KOPrefsBase::agendaCalendarItemsToDosBackgroundColor
QColor agendaCalendarItemsToDosBackgroundColor() const
Get Agenda CalendarItems ToDos Background Color.
Definition: koprefs_base.h:1952
KOPrefsBase::dailyRecur
bool dailyRecur() const
Get Show items that recur daily.
Definition: koprefs_base.h:415
KOPrefsBase::monthHolidaysBackgroundColorItem
ItemColor * monthHolidaysBackgroundColorItem()
Get Item object corresponding to MonthHolidaysBackgroundColor()
Definition: koprefs_base.h:3085
KOPrefsBase::setAgendaCalendarItemsToDosIcon
void setAgendaCalendarItemsToDosIcon(const QString &v)
Set Agenda CalendarItems ToDos Icon.
Definition: koprefs_base.h:2043
KOPrefsBase::mAgendaCalendarItemsToDosBackgroundImage
QString mAgendaCalendarItemsToDosBackgroundImage
Definition: koprefs_base.h:3220
KOPrefsBase::agendaCalendarItemsFontItem
ItemFont * agendaCalendarItemsFontItem()
Get Item object corresponding to AgendaCalendarItemsFont()
Definition: koprefs_base.h:1785
KOPrefsBase::setAgendaCalendarItemsToDosDueTodayBackgroundImage
void setAgendaCalendarItemsToDosDueTodayBackgroundImage(const QString &v)
Set Agenda CalendarItems ToDos DueToday Background Image.
Definition: koprefs_base.h:2068
KOPrefsBase::monthCalendarItemsToDosFrameColorItem
ItemColor * monthCalendarItemsToDosFrameColorItem()
Get Item object corresponding to MonthCalendarItemsToDosFrameColor()
Definition: koprefs_base.h:2785
KOPrefsBase::agendaCalendarItemsToDosFontItem
ItemFont * agendaCalendarItemsToDosFontItem()
Get Item object corresponding to AgendaCalendarItemsToDosFont()
Definition: koprefs_base.h:2010
KOPrefsBase::MonthItemCategoryInsideResourceOutside
Definition: koprefs_base.h:17
KOPrefsBase::workingHoursColor
QColor workingHoursColor() const
Get Working hours color.
Definition: koprefs_base.h:1127
KOPrefsBase::monthGridWorkHoursBackgroundColor
QColor monthGridWorkHoursBackgroundColor() const
Get Working hours color.
Definition: koprefs_base.h:2402
KOPrefsBase::workWeekMask
int workWeekMask() const
Get Work Week Mask.
Definition: koprefs_base.h:1452
KOPrefsBase::agendaCalendarItemsFrameColor
QColor agendaCalendarItemsFrameColor() const
Get Agenda CalendarItems Frame Color.
Definition: koprefs_base.h:1802
KOPrefsBase::monthCalendarItemsToDosOverdueBackgroundImageItem
ItemString * monthCalendarItemsToDosOverdueBackgroundImageItem()
Get Item object corresponding to MonthCalendarItemsToDosOverdueBackgroundImage()
Definition: koprefs_base.h:2985
KOPrefsBase::monthCalendarItemsIconItem
ItemString * monthCalendarItemsIconItem()
Get Item object corresponding to MonthCalendarItemsIcon()
Definition: koprefs_base.h:2560
KOPrefsBase::agendaGridBackgroundColor
QColor agendaGridBackgroundColor() const
Get Agenda view background color.
Definition: koprefs_base.h:1627
KOPrefsBase::destination
int destination() const
Get New Events, To-dos and Journal Entries Should.
Definition: koprefs_base.h:115
KOPrefsBase::agendaCalendarItemsEventsBackgroundImage
QString agendaCalendarItemsEventsBackgroundImage() const
Get Agenda CalendarItems Events Background Image.
Definition: koprefs_base.h:1852
KOPrefsBase::mEnableQuickTodo
bool mEnableQuickTodo
Definition: koprefs_base.h:3190
KOPrefsBase::mDecorationsAtAgendaViewBottom
QStringList mDecorationsAtAgendaViewBottom
Definition: koprefs_base.h:3203
KOPrefsBase::monthCalendarItemsEventsBackgroundImage
QString monthCalendarItemsEventsBackgroundImage() const
Get Month CalendarItems Events Background Image.
Definition: koprefs_base.h:2602
KOPrefsBase::setMonthHolidaysBackgroundColor
void setMonthHolidaysBackgroundColor(const QColor &v)
Set Holiday color.
Definition: koprefs_base.h:3068
KOPrefsBase::EnumDefaultTodoAttachMethod
EnumDefaultTodoAttachMethod
Definition: koprefs_base.h:18
KOPrefsBase::setDecorationsAtAgendaViewBottom
void setDecorationsAtAgendaViewBottom(const QStringList &v)
Set Decorations At Agenda View Bottom.
Definition: koprefs_base.h:1593
KOPrefsBase::mMonthCalendarItemsBackgroundImage
QString mMonthCalendarItemsBackgroundImage
Definition: koprefs_base.h:3242
KOPrefsBase::mMonthViewColors
int mMonthViewColors
Definition: koprefs_base.h:3163
KOPrefsBase::setAgendaViewFont
void setAgendaViewFont(const QFont &v)
Set Agenda view.
Definition: koprefs_base.h:1243
KOPrefsBase::mMonthCalendarItemsToDosDueTodayFrameColor
QColor mMonthCalendarItemsToDosDueTodayFrameColor
Definition: koprefs_base.h:3259
KOPrefsBase::showJournalsMonthViewItem
ItemBool * showJournalsMonthViewItem()
Get Item object corresponding to ShowJournalsMonthView()
Definition: koprefs_base.h:860
KOPrefsBase::EnumDestination
EnumDestination
Definition: koprefs_base.h:14
KOPrefsBase::agendaCalendarItemsToDosOverdueFont
QFont agendaCalendarItemsToDosOverdueFont() const
Get Agenda CalendarItems ToDos Overdue Font.
Definition: koprefs_base.h:2202
KOPrefsBase::mMonthCalendarItemsToDosDueTodayIcon
QString mMonthCalendarItemsToDosDueTodayIcon
Definition: koprefs_base.h:3260
KOPrefsBase::setAgendaGridBackgroundImage
void setAgendaGridBackgroundImage(const QString &v)
Set Agenda Grid Background Image.
Definition: koprefs_base.h:1643
KOPrefsBase::monthViewColorsItem
ItemEnum * monthViewColorsItem()
Get Item object corresponding to MonthViewColors()
Definition: koprefs_base.h:910
KOPrefsBase::fullViewTodo
bool fullViewTodo() const
Get To-do list view uses full window.
Definition: koprefs_base.h:952
KOPrefsBase::agendaCalendarItemsToDosDueTodayBackgroundImageItem
ItemString * agendaCalendarItemsToDosDueTodayBackgroundImageItem()
Get Item object corresponding to AgendaCalendarItemsToDosDueTodayBackgroundImage() ...
Definition: koprefs_base.h:2085
KOPrefsBase::agendaCalendarItemsToDosOverdueFrameColorItem
ItemColor * agendaCalendarItemsToDosOverdueFrameColorItem()
Get Item object corresponding to AgendaCalendarItemsToDosOverdueFrameColor()
Definition: koprefs_base.h:2235
KOPrefsBase::setAgendaCalendarItemsIcon
void setAgendaCalendarItemsIcon(const QString &v)
Set Agenda CalendarItems Icon.
Definition: koprefs_base.h:1818
KOPrefsBase::setMonthCalendarItemsToDosOverdueBackgroundImage
void setMonthCalendarItemsToDosOverdueBackgroundImage(const QString &v)
Set Month CalendarItems ToDos Overdue Background Image.
Definition: koprefs_base.h:2968
KOPrefsBase::enableAgendaItemIconsItem
ItemBool * enableAgendaItemIconsItem()
Get Item object corresponding to EnableAgendaItemIcons()
Definition: koprefs_base.h:585
KOPrefsBase::colorBusyDaysEnabled
bool colorBusyDaysEnabled() const
Get Color busy days with a different background color.
Definition: koprefs_base.h:727
KOPrefsBase::agendaCalendarItemsToDosOverdueFrameColor
QColor agendaCalendarItemsToDosOverdueFrameColor() const
Get Agenda CalendarItems ToDos Overdue Frame Color.
Definition: koprefs_base.h:2227
KOPrefsBase::mFlatListTodo
bool mFlatListTodo
Definition: koprefs_base.h:3168
KOPrefsBase::monthCalendarItemsToDosOverdueFrameColorItem
ItemColor * monthCalendarItemsToDosOverdueFrameColorItem()
Get Item object corresponding to MonthCalendarItemsToDosOverdueFrameColor()
Definition: koprefs_base.h:3035
KOPrefsBase::setTimeZoneId
void setTimeZoneId(const QString &v)
Set TimeZoneId.
Definition: koprefs_base.h:156
KOPrefsBase::fullViewMonth
bool fullViewMonth() const
Get Month view uses full window.
Definition: koprefs_base.h:877
KOPrefsBase::mMonthCalendarItemsEventsIcon
QString mMonthCalendarItemsEventsIcon
Definition: koprefs_base.h:3250
KOPrefsBase::agendaCalendarItemsIconItem
ItemString * agendaCalendarItemsIconItem()
Get Item object corresponding to AgendaCalendarItemsIcon()
Definition: koprefs_base.h:1835
KOPrefsBase::agendaCalendarItemsToDosDueTodayBackgroundImage
QString agendaCalendarItemsToDosDueTodayBackgroundImage() const
Get Agenda CalendarItems ToDos DueToday Background Image.
Definition: koprefs_base.h:2077
KOPrefsBase::mAgendaTimeLabelsFont
QFont mAgendaTimeLabelsFont
Definition: koprefs_base.h:3181
KOPrefsBase::defaultResourceColorsItem
ItemStringList * defaultResourceColorsItem()
Get Item object corresponding to DefaultResourceColors()
Definition: koprefs_base.h:1510
KOPrefsBase::mTodosUseCategoryColors
bool mTodosUseCategoryColors
Definition: koprefs_base.h:3138
KOPrefsBase::mAgendaCalendarItemsToDosIcon
QString mAgendaCalendarItemsToDosIcon
Definition: koprefs_base.h:3223
KOPrefsBase::marcusBainsEnabled
bool marcusBainsEnabled() const
Get Show current-time (Marcus Bains) line.
Definition: koprefs_base.h:627
KOPrefsBase::agendaCalendarItemsEventsBackgroundImageItem
ItemString * agendaCalendarItemsEventsBackgroundImageItem()
Get Item object corresponding to AgendaCalendarItemsEventsBackgroundImage()
Definition: koprefs_base.h:1860
KOPrefsBase::setMonthCalendarItemsToDosFont
void setMonthCalendarItemsToDosFont(const QFont &v)
Set Month CalendarItems ToDos Font.
Definition: koprefs_base.h:2743
KOPrefsBase::setMonthCalendarItemsEventsBackgroundImage
void setMonthCalendarItemsEventsBackgroundImage(const QString &v)
Set Month CalendarItems Events Background Image.
Definition: koprefs_base.h:2593
KOPrefsBase::agendaCalendarItemsToDosIcon
QString agendaCalendarItemsToDosIcon() const
Get Agenda CalendarItems ToDos Icon.
Definition: koprefs_base.h:2052
KOPrefsBase::setMonthViewColors
void setMonthViewColors(int v)
Set Color Usage.
Definition: koprefs_base.h:893
KOPrefsBase::agendaMarcusBainsLineFont
QFont agendaMarcusBainsLineFont() const
Get Current-time line.
Definition: koprefs_base.h:1277
KOPrefsBase::setMonthCalendarItemsToDosOverdueIcon
void setMonthCalendarItemsToDosOverdueIcon(const QString &v)
Set Month CalendarItems ToDos Overdue Icon.
Definition: koprefs_base.h:3043
KOPrefsBase::setMonthCalendarItemsToDosBackgroundImage
void setMonthCalendarItemsToDosBackgroundImage(const QString &v)
Set Month CalendarItems ToDos Background Image.
Definition: koprefs_base.h:2718
KOPrefsBase::mNextXDays
int mNextXDays
Definition: koprefs_base.h:3139
KOPrefsBase::setMonthCalendarItemsToDosDueTodayFont
void setMonthCalendarItemsToDosDueTodayFont(const QFont &v)
Set Month CalendarItems ToDos DueToday Font.
Definition: koprefs_base.h:2868
KOPrefsBase::mHolidays
QString mHolidays
Definition: koprefs_base.h:3130
KOPrefsBase::mAgendaGridBackgroundImage
QString mAgendaGridBackgroundImage
Definition: koprefs_base.h:3207
KOPrefsBase::showTodosAgendaViewItem
ItemBool * showTodosAgendaViewItem()
Get Item object corresponding to ShowTodosAgendaView()
Definition: koprefs_base.h:610
KOPrefsBase::setViewBgBusyColor
void setViewBgBusyColor(const QColor &v)
Set Busy days background color.
Definition: koprefs_base.h:1093
KOPrefsBase::mMonthCalendarItemsEventsFont
QFont mMonthCalendarItemsEventsFont
Definition: koprefs_base.h:3248
KOPrefsBase::showTimeInMonthViewItem
ItemBool * showTimeInMonthViewItem()
Get Item object corresponding to ShowTimeInMonthView()
Definition: koprefs_base.h:810
KOPrefsBase::CalendarsSideBySide
Definition: koprefs_base.h:16
KOPrefsBase::enableMonthItemIcons
bool enableMonthItemIcons() const
Get Show icons in month view items.
Definition: koprefs_base.h:777
KOPrefsBase::monthCalendarItemsToDosDueTodayFont
QFont monthCalendarItemsToDosDueTodayFont() const
Get Month CalendarItems ToDos DueToday Font.
Definition: koprefs_base.h:2877
KOPrefsBase::setMonthCalendarItemsToDosOverdueBackgroundColor
void setMonthCalendarItemsToDosOverdueBackgroundColor(const QColor &v)
Set To-do overdue color.
Definition: koprefs_base.h:2943
KOPrefsBase::recordTodosInJournals
bool recordTodosInJournals() const
Get Record completed to-dos in journal entries.
Definition: koprefs_base.h:1002
KOPrefsBase::mDefaultResourceColorSeed
int mDefaultResourceColorSeed
Definition: koprefs_base.h:3198
KOPrefsBase::agendaCalendarItemsToDosOverdueBackgroundImageItem
ItemString * agendaCalendarItemsToDosOverdueBackgroundImageItem()
Get Item object corresponding to AgendaCalendarItemsToDosOverdueBackgroundImage() ...
Definition: koprefs_base.h:2185
KOPrefsBase::agendaMarcusBainsLineLineColorItem
ItemColor * agendaMarcusBainsLineLineColorItem()
Get Item object corresponding to AgendaMarcusBainsLineLineColor()
Definition: koprefs_base.h:1085
KOPrefsBase::setMonthCalendarItemsEventsBackgroundColor
void setMonthCalendarItemsEventsBackgroundColor(const QColor &v)
Set Default event color.
Definition: koprefs_base.h:2568
KOPrefsBase::setDailyRecur
void setDailyRecur(bool v)
Set Show items that recur daily.
Definition: koprefs_base.h:406
KOPrefsBase::mMonthGridWorkHoursBackgroundColor
QColor mMonthGridWorkHoursBackgroundColor
Definition: koprefs_base.h:3239
KOPrefsBase::assignDefaultResourceColorsItem
ItemBool * assignDefaultResourceColorsItem()
Get Item object corresponding to AssignDefaultResourceColors()
Definition: koprefs_base.h:1535
KOPrefsBase::setDestination
void setDestination(int v)
Set New Events, To-dos and Journal Entries Should.
Definition: koprefs_base.h:106
KOPrefsBase::monthGridBackgroundImageItem
ItemString * monthGridBackgroundImageItem()
Get Item object corresponding to MonthGridBackgroundImage()
Definition: koprefs_base.h:2360
KOPrefsBase::ResourceOnly
Definition: koprefs_base.h:15
KOPrefsBase::selectedPluginsItem
ItemStringList * selectedPluginsItem()
Get Item object corresponding to SelectedPlugins()
Definition: koprefs_base.h:1310
KOPrefsBase::agendaCalendarItemsToDosBackgroundImageItem
ItemString * agendaCalendarItemsToDosBackgroundImageItem()
Get Item object corresponding to AgendaCalendarItemsToDosBackgroundImage()
Definition: koprefs_base.h:1985
KOPrefsBase::monthCalendarItemsBackgroundImage
QString monthCalendarItemsBackgroundImage() const
Get Month CalendarItems Background Image.
Definition: koprefs_base.h:2477
KOPrefsBase::decorationsAtAgendaViewTopItem
ItemStringList * decorationsAtAgendaViewTopItem()
Get Item object corresponding to DecorationsAtAgendaViewTop()
Definition: koprefs_base.h:1585
KOPrefsBase::mViewBgBusyColor
QColor mViewBgBusyColor
Definition: koprefs_base.h:3175
KOPrefsBase::setDayBegins
void setDayBegins(const QDateTime &v)
Set Day begins at.
Definition: koprefs_base.h:181
KOPrefsBase::agendaMarcusBainsLineLineColor
QColor agendaMarcusBainsLineLineColor() const
Get Agenda view current-time line color.
Definition: koprefs_base.h:1077
KOPrefsBase::monthCalendarItemsToDosOverdueFontItem
ItemFont * monthCalendarItemsToDosOverdueFontItem()
Get Item object corresponding to MonthCalendarItemsToDosOverdueFont()
Definition: koprefs_base.h:3010
KOPrefsBase::setMonthCalendarItemsBackgroundColor
void setMonthCalendarItemsBackgroundColor(const QColor &v)
Set Month CalendarItems Background Color.
Definition: koprefs_base.h:2443
KOPrefsBase::mAgendaCalendarItemsEventsBackgroundImage
QString mAgendaCalendarItemsEventsBackgroundImage
Definition: koprefs_base.h:3215
KOPrefsBase::agendaCalendarItemsBackgroundColor
QColor agendaCalendarItemsBackgroundColor() const
Get Agenda CalendarItems Background Color.
Definition: koprefs_base.h:1727
KOPrefsBase::decorationsAtAgendaViewBottom
QStringList decorationsAtAgendaViewBottom() const
Get Decorations At Agenda View Bottom.
Definition: koprefs_base.h:1602
KOPrefsBase::setMonthGridHighlightColor
void setMonthGridHighlightColor(const QColor &v)
Set Highlight color.
Definition: koprefs_base.h:2368
KOPrefsBase::highlightJournals
bool highlightJournals() const
Get Show journals instead of events when in Journal View.
Definition: koprefs_base.h:490
KOPrefsBase::enableTodoQuickSearch
bool enableTodoQuickSearch() const
Get Todo Quick Search.
Definition: koprefs_base.h:1352
KOPrefsBase::mAgendaCalendarItemsToDosOverdueFont
QFont mAgendaCalendarItemsToDosOverdueFont
Definition: koprefs_base.h:3229
KOPrefsBase::decorationsAtAgendaViewBottomItem
ItemStringList * decorationsAtAgendaViewBottomItem()
Get Item object corresponding to DecorationsAtAgendaViewBottom()
Definition: koprefs_base.h:1610
KOPrefsBase::mAgendaCalendarItemsToDosOverdueBackgroundImage
QString mAgendaCalendarItemsToDosOverdueBackgroundImage
Definition: koprefs_base.h:3228
KOPrefsBase::setWeekNumbersShowWork
void setWeekNumbersShowWork(bool v)
Set Week numbers select a work week when in work week mode.
Definition: koprefs_base.h:506
KOPrefsBase::setAssignDefaultResourceColors
void setAssignDefaultResourceColors(bool v)
Set AssignDefaultResourceColors.
Definition: koprefs_base.h:1518
KOPrefsBase::mAgendaCalendarItemsIcon
QString mAgendaCalendarItemsIcon
Definition: koprefs_base.h:3214
KOPrefsBase::holidayColor
QColor holidayColor() const
Get Holiday color.
Definition: koprefs_base.h:1027
KOPrefsBase::setHighlightTodos
void setHighlightTodos(bool v)
Set Show to-dos instead of events when in Todo View.
Definition: koprefs_base.h:456
KOPrefsBase::mShowTimeInMonthView
bool mShowTimeInMonthView
Definition: koprefs_base.h:3159
KOPrefsBase::mHolidayColor
QColor mHolidayColor
Definition: koprefs_base.h:3172
KOPrefsBase::setMonthGridBackgroundColor
void setMonthGridBackgroundColor(const QColor &v)
Set Month view background color.
Definition: koprefs_base.h:2318
KOPrefsBase::monthCalendarItemsEventsIconItem
ItemString * monthCalendarItemsEventsIconItem()
Get Item object corresponding to MonthCalendarItemsEventsIcon()
Definition: koprefs_base.h:2685
KOPrefsBase::mAgendaCalendarItemsToDosFont
QFont mAgendaCalendarItemsToDosFont
Definition: koprefs_base.h:3221
KOPrefsBase::marcusBainsShowSeconds
bool marcusBainsShowSeconds() const
Get Show seconds on the current-time (Marcus Bains) line.
Definition: koprefs_base.h:652
KOPrefsBase::setAgendaCalendarItemsToDosOverdueFont
void setAgendaCalendarItemsToDosOverdueFont(const QFont &v)
Set Agenda CalendarItems ToDos Overdue Font.
Definition: koprefs_base.h:2193
KOPrefsBase::mEnableToolTips
bool mEnableToolTips
Definition: koprefs_base.h:3137
KOPrefsBase::monthCalendarItemsToDosFont
QFont monthCalendarItemsToDosFont() const
Get Month CalendarItems ToDos Font.
Definition: koprefs_base.h:2752
KOPrefsBase::mMonthViewFont
QFont mMonthViewFont
Definition: koprefs_base.h:3182
KOPrefsBase::mTodoDueTodayColor
QColor mTodoDueTodayColor
Definition: koprefs_base.h:3177
KOPrefsBase::mAgendaCalendarItemsEventsIcon
QString mAgendaCalendarItemsEventsIcon
Definition: koprefs_base.h:3218
KOPrefsBase::mMonthCalendarItemsToDosFrameColor
QColor mMonthCalendarItemsToDosFrameColor
Definition: koprefs_base.h:3254
KOPrefsBase::agendaCalendarItemsEventsFont
QFont agendaCalendarItemsEventsFont() const
Get Agenda CalendarItems Events Font.
Definition: koprefs_base.h:1877
KOPrefsBase::monthViewColors
int monthViewColors() const
Get Color Usage.
Definition: koprefs_base.h:902
KOPrefsBase::agendaViewFont
QFont agendaViewFont() const
Get Agenda view.
Definition: koprefs_base.h:1252
KOPrefsBase::mMonthCalendarItemsToDosOverdueFrameColor
QColor mMonthCalendarItemsToDosOverdueFrameColor
Definition: koprefs_base.h:3264
KOPrefsBase::monthCalendarItemsToDosDueTodayBackgroundColorItem
ItemColor * monthCalendarItemsToDosDueTodayBackgroundColorItem()
Get Item object corresponding to MonthCalendarItemsToDosDueTodayBackgroundColor() ...
Definition: koprefs_base.h:2835
KOPrefsBase::monthCalendarItemsToDosOverdueBackgroundImage
QString monthCalendarItemsToDosOverdueBackgroundImage() const
Get Month CalendarItems ToDos Overdue Background Image.
Definition: koprefs_base.h:2977
KOPrefsBase::setMonthViewFont
void setMonthViewFont(const QFont &v)
Set Month view.
Definition: koprefs_base.h:1218
KOPrefsBase::setMonthCalendarItemsToDosOverdueFrameColor
void setMonthCalendarItemsToDosOverdueFrameColor(const QColor &v)
Set Month CalendarItems ToDos Overdue Frame Color.
Definition: koprefs_base.h:3018
KOPrefsBase::setAgendaGridWorkHoursBackgroundImage
void setAgendaGridWorkHoursBackgroundImage(const QString &v)
Set Agenda Grid WorkHours Background Image.
Definition: koprefs_base.h:1693
KOPrefsBase::mEnableAgendaItemIcons
bool mEnableAgendaItemIcons
Definition: koprefs_base.h:3148
KOPrefsBase::monthCalendarItemsBackgroundColor
QColor monthCalendarItemsBackgroundColor() const
Get Month CalendarItems Background Color.
Definition: koprefs_base.h:2452
KOPrefsBase::highlightTodosItem
ItemBool * highlightTodosItem()
Get Item object corresponding to HighlightTodos()
Definition: koprefs_base.h:473
KOPrefsBase::setMonthCalendarItemsBackgroundImage
void setMonthCalendarItemsBackgroundImage(const QString &v)
Set Month CalendarItems Background Image.
Definition: koprefs_base.h:2468
KOPrefsBase::monthHolidaysBackgroundImage
QString monthHolidaysBackgroundImage() const
Get Month Holidays Background Image.
Definition: koprefs_base.h:3102
KOPrefsBase::mAgendaViewFont
QFont mAgendaViewFont
Definition: koprefs_base.h:3183
KOPrefsBase::mDayBegins
QDateTime mDayBegins
Definition: koprefs_base.h:3129
KOPrefsBase::setAgendaMarcusBainsLineFont
void setAgendaMarcusBainsLineFont(const QFont &v)
Set Current-time line.
Definition: koprefs_base.h:1268
KOPrefsBase::mMonthCalendarItemsIcon
QString mMonthCalendarItemsIcon
Definition: koprefs_base.h:3245
KOPrefsBase::mMonthCalendarItemsToDosOverdueBackgroundColor
QColor mMonthCalendarItemsToDosOverdueBackgroundColor
Definition: koprefs_base.h:3261
KOPrefsBase::mAgendaCalendarItemsBackgroundColor
QColor mAgendaCalendarItemsBackgroundColor
Definition: koprefs_base.h:3210
KOPrefsBase::mConfirm
bool mConfirm
Definition: koprefs_base.h:3121
KOPrefsBase::agendaCalendarItemsToDosFont
QFont agendaCalendarItemsToDosFont() const
Get Agenda CalendarItems ToDos Font.
Definition: koprefs_base.h:2002
KOPrefsBase::todoDueTodayColorItem
ItemColor * todoDueTodayColorItem()
Get Item object corresponding to TodoDueTodayColor()
Definition: koprefs_base.h:1160
KOPrefsBase::setMonthCalendarItemsToDosOverdueFont
void setMonthCalendarItemsToDosOverdueFont(const QFont &v)
Set Month CalendarItems ToDos Overdue Font.
Definition: koprefs_base.h:2993
KOPrefsBase::monthCalendarItemsEventsBackgroundColor
QColor monthCalendarItemsEventsBackgroundColor() const
Get Default event color.
Definition: koprefs_base.h:2577
KOPrefsBase::setMonthGridWorkHoursBackgroundColor
void setMonthGridWorkHoursBackgroundColor(const QColor &v)
Set Working hours color.
Definition: koprefs_base.h:2393
KOPrefsBase::setEnableToolTips
void setEnableToolTips(bool v)
Set Enable tooltips for displaying summaries.
Definition: koprefs_base.h:331
KOPrefsBase::decorationsAtMonthViewTop
QStringList decorationsAtMonthViewTop() const
Get Decorations At Month View Top.
Definition: koprefs_base.h:1552
KOPrefsBase::monthCalendarItemsToDosOverdueIconItem
ItemString * monthCalendarItemsToDosOverdueIconItem()
Get Item object corresponding to MonthCalendarItemsToDosOverdueIcon()
Definition: koprefs_base.h:3060
KOPrefsBase::mMonthHolidaysBackgroundColor
QColor mMonthHolidaysBackgroundColor
Definition: koprefs_base.h:3266
KOPrefsBase::agendaCalendarItemsToDosDueTodayFontItem
ItemFont * agendaCalendarItemsToDosDueTodayFontItem()
Get Item object corresponding to AgendaCalendarItemsToDosDueTodayFont()
Definition: koprefs_base.h:2110
KOPrefsBase::dailyRecurItem
ItemBool * dailyRecurItem()
Get Item object corresponding to DailyRecur()
Definition: koprefs_base.h:423
KOPrefsBase::EnumMonthViewColors
EnumMonthViewColors
Definition: koprefs_base.h:17
KOPrefsBase::monthCalendarItemsToDosDueTodayBackgroundColor
QColor monthCalendarItemsToDosDueTodayBackgroundColor() const
Get To-do due today color.
Definition: koprefs_base.h:2827
KOPrefsBase::mAgendaBgColor
QColor mAgendaBgColor
Definition: koprefs_base.h:3173
KOPrefsBase::mWeeklyRecur
bool mWeeklyRecur
Definition: koprefs_base.h:3141
KOPrefsBase::setAgendaCalendarItemsToDosFont
void setAgendaCalendarItemsToDosFont(const QFont &v)
Set Agenda CalendarItems ToDos Font.
Definition: koprefs_base.h:1993
KOPrefsBase::mShowReminderDaemon
bool mShowReminderDaemon
Definition: koprefs_base.h:3125
KOPrefsBase::setAutoExportInterval
void setAutoExportInterval(int v)
Set Export &interval in minutes.
Definition: koprefs_base.h:51
KOPrefsBase::agendaViewFontItem
ItemFont * agendaViewFontItem()
Get Item object corresponding to AgendaViewFont()
Definition: koprefs_base.h:1260
KOPrefsBase::workingHoursColorItem
ItemColor * workingHoursColorItem()
Get Item object corresponding to WorkingHoursColor()
Definition: koprefs_base.h:1135
KOPrefsBase::marcusBainsShowSecondsItem
ItemBool * marcusBainsShowSecondsItem()
Get Item object corresponding to MarcusBainsShowSeconds()
Definition: koprefs_base.h:660
KOPrefsBase::TodoAttachAsk
Definition: koprefs_base.h:18
KOPrefsBase::nextXDaysItem
ItemInt * nextXDaysItem()
Get Item object corresponding to NextXDays()
Definition: koprefs_base.h:398
KOPrefsBase::mMonthCalendarItemsEventsFrameColor
QColor mMonthCalendarItemsEventsFrameColor
Definition: koprefs_base.h:3249
KOPrefsBase::mAgendaCalendarItemsToDosOverdueFrameColor
QColor mAgendaCalendarItemsToDosOverdueFrameColor
Definition: koprefs_base.h:3230
KOPrefsBase
Definition: koprefs_base.h:11
KOPrefsBase::mDestination
int mDestination
Definition: koprefs_base.h:3122
KOPrefsBase::sortCompletedTodosSeparately
bool sortCompletedTodosSeparately() const
Get Always display completed to-dos at the bottom of the list.
Definition: koprefs_base.h:927
KOPrefsBase::mFullViewMonth
bool mFullViewMonth
Definition: koprefs_base.h:3162
KOPrefsBase::showReminderDaemonItem
ItemBool * showReminderDaemonItem()
Get Item object corresponding to ShowReminderDaemon()
Definition: koprefs_base.h:148
KOPrefsBase::monthCalendarItemsFrameColorItem
ItemColor * monthCalendarItemsFrameColorItem()
Get Item object corresponding to MonthCalendarItemsFrameColor()
Definition: koprefs_base.h:2535
KOPrefsBase::setMonthCalendarItemsToDosDueTodayBackgroundImage
void setMonthCalendarItemsToDosDueTodayBackgroundImage(const QString &v)
Set Month CalendarItems ToDos DueToday Background Image.
Definition: koprefs_base.h:2843
KOPrefsBase::mMonthCalendarItemsToDosOverdueIcon
QString mMonthCalendarItemsToDosOverdueIcon
Definition: koprefs_base.h:3265
KOPrefsBase::MonthItemResourceInsideCategoryOutside
Definition: koprefs_base.h:17
KOPrefsBase::mMonthCalendarItemsToDosOverdueBackgroundImage
QString mMonthCalendarItemsToDosOverdueBackgroundImage
Definition: koprefs_base.h:3262
KOPrefsBase::mEnableMonthItemIcons
bool mEnableMonthItemIcons
Definition: koprefs_base.h:3158
KOPrefsBase::setAgendaCalendarItemsToDosFrameColor
void setAgendaCalendarItemsToDosFrameColor(const QColor &v)
Set Agenda CalendarItems ToDos Frame Color.
Definition: koprefs_base.h:2018
KOPrefsBase::showTodosAgendaView
bool showTodosAgendaView() const
Get Show to-dos.
Definition: koprefs_base.h:602
KOPrefsBase::setShowTodosMonthView
void setShowTodosMonthView(bool v)
Set Show to-dos.
Definition: koprefs_base.h:818
KOPrefsBase::mSelectedPlugins
QStringList mSelectedPlugins
Definition: koprefs_base.h:3187
KOPrefsBase::workingHoursStartItem
ItemDateTime * workingHoursStartItem()
Get Item object corresponding to WorkingHoursStart()
Definition: koprefs_base.h:248
KOPrefsBase::TodoAttachLink
Definition: koprefs_base.h:18
KOPrefsBase::enableMonthItemIconsItem
ItemBool * enableMonthItemIconsItem()
Get Item object corresponding to EnableMonthItemIcons()
Definition: koprefs_base.h:785
KOPrefsBase::mTimeZoneId
QString mTimeZoneId
Definition: koprefs_base.h:3128
KOPrefsBase::setMonthGridBackgroundImage
void setMonthGridBackgroundImage(const QString &v)
Set Month Grid Background Image.
Definition: koprefs_base.h:2343
KOPrefsBase::colorMonthBusyDaysEnabledItem
ItemBool * colorMonthBusyDaysEnabledItem()
Get Item object corresponding to ColorMonthBusyDaysEnabled()
Definition: koprefs_base.h:323
KOPrefsBase::setDefaultTodoAttachMethod
void setDefaultTodoAttachMethod(int v)
Set Default todo attachment method.
Definition: koprefs_base.h:1368
KOPrefsBase::setWorkWeekMask
void setWorkWeekMask(int v)
Set Work Week Mask.
Definition: koprefs_base.h:1443
KOPrefsBase::agendaCalendarItemsToDosBackgroundColorItem
ItemColor * agendaCalendarItemsToDosBackgroundColorItem()
Get Item object corresponding to AgendaCalendarItemsToDosBackgroundColor()
Definition: koprefs_base.h:1960
KOPrefsBase::decorationsAtAgendaViewTop
QStringList decorationsAtAgendaViewTop() const
Get Decorations At Agenda View Top.
Definition: koprefs_base.h:1577
KOPrefsBase::agendaCalendarItemsToDosDueTodayIcon
QString agendaCalendarItemsToDosDueTodayIcon() const
Get Agenda CalendarItems ToDos DueToday Icon.
Definition: koprefs_base.h:2152
KOPrefsBase::todoOverdueColor
QColor todoOverdueColor() const
Get To-do overdue color.
Definition: koprefs_base.h:1177
KOPrefsBase::enableToolTips
bool enableToolTips() const
Get Enable tooltips for displaying summaries.
Definition: koprefs_base.h:340
KOPrefsBase::agendaHolidaysBackgroundImage
QString agendaHolidaysBackgroundImage() const
Get Agenda Holidays Background Image.
Definition: koprefs_base.h:2302
KOPrefsBase::monthCalendarItemsToDosFrameColor
QColor monthCalendarItemsToDosFrameColor() const
Get Month CalendarItems ToDos Frame Color.
Definition: koprefs_base.h:2777
KOPrefsBase::setAgendaCalendarItemsToDosBackgroundImage
void setAgendaCalendarItemsToDosBackgroundImage(const QString &v)
Set Agenda CalendarItems ToDos Background Image.
Definition: koprefs_base.h:1968
KOPrefsBase::mWorkingHoursColor
QColor mWorkingHoursColor
Definition: koprefs_base.h:3176
KOPrefsBase::monthGridWorkHoursBackgroundImageItem
ItemString * monthGridWorkHoursBackgroundImageItem()
Get Item object corresponding to MonthGridWorkHoursBackgroundImage()
Definition: koprefs_base.h:2435
KOPrefsBase::setWorkingHoursColor
void setWorkingHoursColor(const QColor &v)
Set Working hours color.
Definition: koprefs_base.h:1118
KOPrefsBase::agendaCalendarItemsBackgroundColorItem
ItemColor * agendaCalendarItemsBackgroundColorItem()
Get Item object corresponding to AgendaCalendarItemsBackgroundColor()
Definition: koprefs_base.h:1735
KOPrefsBase::autoExportItem
ItemBool * autoExportItem()
Get Item object corresponding to AutoExport()
Definition: koprefs_base.h:43
KOPrefsBase::monthCalendarItemsToDosDueTodayIconItem
ItemString * monthCalendarItemsToDosDueTodayIconItem()
Get Item object corresponding to MonthCalendarItemsToDosDueTodayIcon()
Definition: koprefs_base.h:2935
KOPrefsBase::setWorkingHoursEnd
void setWorkingHoursEnd(const QDateTime &v)
Set Daily ending hour.
Definition: koprefs_base.h:256
KOPrefsBase::setMonthCalendarItemsToDosDueTodayFrameColor
void setMonthCalendarItemsToDosDueTodayFrameColor(const QColor &v)
Set Month CalendarItems ToDos DueToday Frame Color.
Definition: koprefs_base.h:2893
KOPrefsBase::agendaGridWorkHoursBackgroundImage
QString agendaGridWorkHoursBackgroundImage() const
Get Agenda Grid WorkHours Background Image.
Definition: koprefs_base.h:1702
KOPrefsBase::setAgendaGridBackgroundColor
void setAgendaGridBackgroundColor(const QColor &v)
Set Agenda view background color.
Definition: koprefs_base.h:1618
KOPrefsBase::setAgendaCalendarItemsToDosDueTodayIcon
void setAgendaCalendarItemsToDosDueTodayIcon(const QString &v)
Set Agenda CalendarItems ToDos DueToday Icon.
Definition: koprefs_base.h:2143
KOPrefsBase::mMonthGridHighlightColor
QColor mMonthGridHighlightColor
Definition: koprefs_base.h:3238
KOPrefsBase::mShowJournalsMonthView
bool mShowJournalsMonthView
Definition: koprefs_base.h:3161
KOPrefsBase::dayBegins
QDateTime dayBegins() const
Get Day begins at.
Definition: koprefs_base.h:190
KOPrefsBase::mAgendaHolidaysBackgroundImage
QString mAgendaHolidaysBackgroundImage
Definition: koprefs_base.h:3233
KOPrefsBase::mAgendaGridBackgroundColor
QColor mAgendaGridBackgroundColor
Definition: koprefs_base.h:3206
KOPrefsBase::mMonthGridWorkHoursBackgroundImage
QString mMonthGridWorkHoursBackgroundImage
Definition: koprefs_base.h:3240
KOPrefsBase::setCompactDialogs
void setCompactDialogs(bool v)
Set CompactDialogs.
Definition: koprefs_base.h:1393
KOPrefsBase::agendaCalendarItemsToDosOverdueFontItem
ItemFont * agendaCalendarItemsToDosOverdueFontItem()
Get Item object corresponding to AgendaCalendarItemsToDosOverdueFont()
Definition: koprefs_base.h:2210
KOPrefsBase::workingHoursEndItem
ItemDateTime * workingHoursEndItem()
Get Item object corresponding to WorkingHoursEnd()
Definition: koprefs_base.h:273
KOPrefsBase::flatListTodoItem
ItemBool * flatListTodoItem()
Get Item object corresponding to FlatListTodo()
Definition: koprefs_base.h:985
KOPrefsBase::mWorkingHoursStart
QDateTime mWorkingHoursStart
Definition: koprefs_base.h:3131
KOPrefsBase::agendaViewCalendarDisplayItem
ItemEnum * agendaViewCalendarDisplayItem()
Get Item object corresponding to AgendaViewCalendarDisplay()
Definition: koprefs_base.h:760
KOPrefsBase::monthCalendarItemsBackgroundImageItem
ItemString * monthCalendarItemsBackgroundImageItem()
Get Item object corresponding to MonthCalendarItemsBackgroundImage()
Definition: koprefs_base.h:2485
KOPrefsBase::setAgendaCalendarItemsBackgroundImage
void setAgendaCalendarItemsBackgroundImage(const QString &v)
Set Agenda CalendarItems Background Image.
Definition: koprefs_base.h:1743
KOPrefsBase::mColorBusyDaysEnabled
bool mColorBusyDaysEnabled
Definition: koprefs_base.h:3154
KOPrefsBase::monthCalendarItemsToDosDueTodayIcon
QString monthCalendarItemsToDosDueTodayIcon() const
Get Month CalendarItems ToDos DueToday Icon.
Definition: koprefs_base.h:2927
KOPrefsBase::KOPrefsBase
KOPrefsBase()
Definition: koprefs_base.cpp:8
KOPrefsBase::agendaCalendarItemsToDosFrameColor
QColor agendaCalendarItemsToDosFrameColor() const
Get Agenda CalendarItems ToDos Frame Color.
Definition: koprefs_base.h:2027
KOPrefsBase::mAgendaMarcusBainsLineFont
QFont mAgendaMarcusBainsLineFont
Definition: koprefs_base.h:3184
KOPrefsBase::highlightJournalsItem
ItemBool * highlightJournalsItem()
Get Item object corresponding to HighlightJournals()
Definition: koprefs_base.h:498
KOPrefsBase::weeklyRecurItem
ItemBool * weeklyRecurItem()
Get Item object corresponding to WeeklyRecur()
Definition: koprefs_base.h:448
KOPrefsBase::hourSizeItem
ItemInt * hourSizeItem()
Get Item object corresponding to HourSize()
Definition: koprefs_base.h:560
KOPrefsBase::ResourceInsideCategoryOutside
Definition: koprefs_base.h:15
KOPrefsBase::mShowTodosAgendaView
bool mShowTodosAgendaView
Definition: koprefs_base.h:3149
KOPrefsBase::setFullViewMonth
void setFullViewMonth(bool v)
Set Month view uses full window.
Definition: koprefs_base.h:868
KOPrefsBase::setSelectedPlugins
void setSelectedPlugins(const QStringList &v)
Set SelectedPlugins.
Definition: koprefs_base.h:1293
KOPrefsBase::standardDestination
Definition: koprefs_base.h:14
KOPrefsBase::mAutoExportInterval
int mAutoExportInterval
Definition: koprefs_base.h:3120
KOPrefsBase::setShowMenuBar
void setShowMenuBar(bool v)
Set ShowMenuBar.
Definition: koprefs_base.h:1418
KOPrefsBase::mAutoExport
bool mAutoExport
Definition: koprefs_base.h:3119
KOPrefsBase::setTodosUseCategoryColors
void setTodosUseCategoryColors(bool v)
Set To-dos use category colors.
Definition: koprefs_base.h:356
KOPrefsBase::highlightTodos
bool highlightTodos() const
Get Show to-dos instead of events when in Todo View.
Definition: koprefs_base.h:465
KOPrefsBase::mWorkingHoursEnd
QDateTime mWorkingHoursEnd
Definition: koprefs_base.h:3132
KOPrefsBase::mDecorationsAtAgendaViewTop
QStringList mDecorationsAtAgendaViewTop
Definition: koprefs_base.h:3202
KOPrefsBase::mMonthCalendarItemsToDosIcon
QString mMonthCalendarItemsToDosIcon
Definition: koprefs_base.h:3255
KOPrefsBase::monthCalendarItemsEventsIcon
QString monthCalendarItemsEventsIcon() const
Get Month CalendarItems Events Icon.
Definition: koprefs_base.h:2677
KOPrefsBase::setAgendaCalendarItemsToDosOverdueIcon
void setAgendaCalendarItemsToDosOverdueIcon(const QString &v)
Set Agenda CalendarItems ToDos Overdue Icon.
Definition: koprefs_base.h:2243
KOPrefsBase::showJournalsMonthView
bool showJournalsMonthView() const
Get Show journals.
Definition: koprefs_base.h:852
KOPrefsBase::mMonthHolidaysBackgroundImage
QString mMonthHolidaysBackgroundImage
Definition: koprefs_base.h:3267
KOPrefsBase::setShowJournalsMonthView
void setShowJournalsMonthView(bool v)
Set Show journals.
Definition: koprefs_base.h:843
KOPrefsBase::CalendarsMerged
Definition: koprefs_base.h:16
KOPrefsBase::mAgendaCalendarItemsToDosDueTodayIcon
QString mAgendaCalendarItemsToDosDueTodayIcon
Definition: koprefs_base.h:3227
KOPrefsBase::mMarcusBainsEnabled
bool mMarcusBainsEnabled
Definition: koprefs_base.h:3150
KOPrefsBase::agendaGridBackgroundImageItem
ItemString * agendaGridBackgroundImageItem()
Get Item object corresponding to AgendaGridBackgroundImage()
Definition: koprefs_base.h:1660
KOPrefsBase::agendaCalendarItemsEventsFontItem
ItemFont * agendaCalendarItemsEventsFontItem()
Get Item object corresponding to AgendaCalendarItemsEventsFont()
Definition: koprefs_base.h:1885
KOPrefsBase::monthCalendarItemsToDosFontItem
ItemFont * monthCalendarItemsToDosFontItem()
Get Item object corresponding to MonthCalendarItemsToDosFont()
Definition: koprefs_base.h:2760
KOPrefsBase::nextXDays
int nextXDays() const
Get Next x days.
Definition: koprefs_base.h:390
KOPrefsBase::weekNumbersShowWork
bool weekNumbersShowWork() const
Get Week numbers select a work week when in work week mode.
Definition: koprefs_base.h:515
KOPrefsBase::setSortCompletedTodosSeparately
void setSortCompletedTodosSeparately(bool v)
Set Always display completed to-dos at the bottom of the list.
Definition: koprefs_base.h:918
KOPrefsBase::setAgendaCalendarItemsToDosBackgroundColor
void setAgendaCalendarItemsToDosBackgroundColor(const QColor &v)
Set Agenda CalendarItems ToDos Background Color.
Definition: koprefs_base.h:1943
KOPrefsBase::agendaCalendarItemsIcon
QString agendaCalendarItemsIcon() const
Get Agenda CalendarItems Icon.
Definition: koprefs_base.h:1827
KOPrefsBase::compactDialogsItem
ItemBool * compactDialogsItem()
Get Item object corresponding to CompactDialogs()
Definition: koprefs_base.h:1410
KOPrefsBase::mSelectionStartsEditor
bool mSelectionStartsEditor
Definition: koprefs_base.h:3152
KOPrefsBase::monthHolidaysBackgroundColor
QColor monthHolidaysBackgroundColor() const
Get Holiday color.
Definition: koprefs_base.h:3077
KOPrefsBase::setAgendaViewCalendarDisplay
void setAgendaViewCalendarDisplay(int v)
Set Multiple Calendar Display.
Definition: koprefs_base.h:743
KOPrefsBase::agendaCalendarItemsToDosBackgroundImage
QString agendaCalendarItemsToDosBackgroundImage() const
Get Agenda CalendarItems ToDos Background Image.
Definition: koprefs_base.h:1977
KOPrefsBase::MonthItemCategoryOnly
Definition: koprefs_base.h:17
KOPrefsBase::monthCalendarItemsToDosDueTodayBackgroundImageItem
ItemString * monthCalendarItemsToDosDueTodayBackgroundImageItem()
Get Item object corresponding to MonthCalendarItemsToDosDueTodayBackgroundImage() ...
Definition: koprefs_base.h:2860
KOPrefsBase::workWeekMaskItem
ItemInt * workWeekMaskItem()
Get Item object corresponding to WorkWeekMask()
Definition: koprefs_base.h:1460
KOPrefsBase::agendaTimeLabelsFont
QFont agendaTimeLabelsFont() const
Get Time bar.
Definition: koprefs_base.h:1202
KOPrefsBase::agendaBgColorItem
ItemColor * agendaBgColorItem()
Get Item object corresponding to AgendaBgColor()
Definition: koprefs_base.h:1060
KOPrefsBase::timeZoneId
QString timeZoneId() const
Get TimeZoneId.
Definition: koprefs_base.h:165
KOPrefsBase::showMenuBar
bool showMenuBar() const
Get ShowMenuBar.
Definition: koprefs_base.h:1427
KOPrefsBase::monthGridBackgroundColor
QColor monthGridBackgroundColor() const
Get Month view background color.
Definition: koprefs_base.h:2327
KOPrefsBase::setMonthCalendarItemsToDosDueTodayIcon
void setMonthCalendarItemsToDosDueTodayIcon(const QString &v)
Set Month CalendarItems ToDos DueToday Icon.
Definition: koprefs_base.h:2918
KOPrefsBase::holidays
QString holidays() const
Get Use holiday region:
Definition: koprefs_base.h:215
KOPrefsBase::setShowTodosAgendaView
void setShowTodosAgendaView(bool v)
Set Show to-dos.
Definition: koprefs_base.h:593
KOPrefsBase::setAutoExport
void setAutoExport(bool v)
Set Export to HTML periodically.
Definition: koprefs_base.h:26
KOPrefsBase::agendaCalendarItemsEventsIcon
QString agendaCalendarItemsEventsIcon() const
Get Agenda CalendarItems Events Icon.
Definition: koprefs_base.h:1927
KOPrefsBase::setAgendaCalendarItemsBackgroundColor
void setAgendaCalendarItemsBackgroundColor(const QColor &v)
Set Agenda CalendarItems Background Color.
Definition: koprefs_base.h:1718
KOPrefsBase::monthGridWorkHoursBackgroundColorItem
ItemColor * monthGridWorkHoursBackgroundColorItem()
Get Item object corresponding to MonthGridWorkHoursBackgroundColor()
Definition: koprefs_base.h:2410
KOPrefsBase::setRecordTodosInJournals
void setRecordTodosInJournals(bool v)
Set Record completed to-dos in journal entries.
Definition: koprefs_base.h:993
KOPrefsBase::setColorMonthBusyDaysEnabled
void setColorMonthBusyDaysEnabled(bool v)
Set Color busy days with a different background color.
Definition: koprefs_base.h:306
KOPrefsBase::mMonthCalendarItemsToDosBackgroundColor
QColor mMonthCalendarItemsToDosBackgroundColor
Definition: koprefs_base.h:3251
KOPrefsBase::agendaCalendarItemsEventsFrameColorItem
ItemColor * agendaCalendarItemsEventsFrameColorItem()
Get Item object corresponding to AgendaCalendarItemsEventsFrameColor()
Definition: koprefs_base.h:1910
KOPrefsBase::recordTodosInJournalsItem
ItemBool * recordTodosInJournalsItem()
Get Item object corresponding to RecordTodosInJournals()
Definition: koprefs_base.h:1010
KOPrefsBase::agendaGridHighlightColorItem
ItemColor * agendaGridHighlightColorItem()
Get Item object corresponding to AgendaGridHighlightColor()
Definition: koprefs_base.h:1685
KOPrefsBase::workingHoursStart
QDateTime workingHoursStart() const
Get Daily starting hour.
Definition: koprefs_base.h:240
KOPrefsBase::enableQuickTodoItem
ItemBool * enableQuickTodoItem()
Get Item object corresponding to EnableQuickTodo()
Definition: koprefs_base.h:1335
KOPrefsBase::agendaCalendarItemsToDosDueTodayIconItem
ItemString * agendaCalendarItemsToDosDueTodayIconItem()
Get Item object corresponding to AgendaCalendarItemsToDosDueTodayIcon()
Definition: koprefs_base.h:2160
KOPrefsBase::setMonthCalendarItemsToDosFrameColor
void setMonthCalendarItemsToDosFrameColor(const QColor &v)
Set Month CalendarItems ToDos Frame Color.
Definition: koprefs_base.h:2768
KOPrefsBase::setDefaultResourceColors
void setDefaultResourceColors(const QStringList &v)
Set DefaultResourceColors.
Definition: koprefs_base.h:1493
KOPrefsBase::monthGridBackgroundImage
QString monthGridBackgroundImage() const
Get Month Grid Background Image.
Definition: koprefs_base.h:2352
KOPrefsBase::setShowReminderDaemon
void setShowReminderDaemon(bool v)
Set Show Reminder Daemon in the System Tray.
Definition: koprefs_base.h:131
KOPrefsBase::agendaCalendarItemsToDosFrameColorItem
ItemColor * agendaCalendarItemsToDosFrameColorItem()
Get Item object corresponding to AgendaCalendarItemsToDosFrameColor()
Definition: koprefs_base.h:2035
KOPrefsBase::setShowTimeInMonthView
void setShowTimeInMonthView(bool v)
Set Show time in month view items.
Definition: koprefs_base.h:793
KOPrefsBase::monthCalendarItemsEventsFont
QFont monthCalendarItemsEventsFont() const
Get Month CalendarItems Events Font.
Definition: koprefs_base.h:2627
KOPrefsBase::mAgendaCalendarItemsToDosFrameColor
QColor mAgendaCalendarItemsToDosFrameColor
Definition: koprefs_base.h:3222
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

KDE's Doxygen guidelines are available online.

korganizer

Skip menu "korganizer"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdepim API Reference

Skip menu "kdepim API Reference"
  • akonadi_next
  • akregator
  • blogilo
  • calendarsupport
  • console
  •   kabcclient
  •   konsolekalendar
  • kaddressbook
  • kalarm
  •   lib
  • kdgantt2
  • kjots
  • kleopatra
  • kmail
  • knode
  • knotes
  • kontact
  • korgac
  • korganizer
  • ktimetracker
  • libkdepim
  • libkleo
  • libkpgp
  • mailcommon
  • messagelist
  • messageviewer

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal