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

kopete/libkopete

  • sources
  • kde-4.14
  • kdenetwork
  • kopete
  • libkopete
kopeteappearancesettings.h
Go to the documentation of this file.
1 // This file is generated by kconfig_compiler from kopeteappearancesettings.kcfg.
2 // All changes you do to this file will be lost.
3 #ifndef KOPETE_APPEARANCESETTINGS_H
4 #define KOPETE_APPEARANCESETTINGS_H
5 
6 #include <kopete_export.h>
7 
8 #include <kconfigskeleton.h>
9 #include <kdebug.h>
10 
11 #include <kstandarddirs.h>
12 #include <kglobalsettings.h>
13 #include <kcolorscheme.h>
14 namespace Kopete {
15 
16 class KOPETE_EXPORT AppearanceSettings : public KConfigSkeleton
17 {
18  Q_OBJECT
19  public:
20  class EnumContactListGroupSorting
21  {
22  public:
23  enum type { Manual, Name, COUNT };
24  };
25  class EnumContactListMetaContactSorting
26  {
27  public:
28  enum type { Manual, Name, Status, COUNT };
29  };
30  class EnumContactListIconMode
31  {
32  public:
33  enum type { IconPic, IconPhoto, COUNT };
34  };
35  class EnumContactListResizeAnchor
36  {
37  public:
38  enum type { Top, Bottom, COUNT };
39  };
40 
41  enum {
42  signalAppearanceChanged = 0x1,
43  signalMessageOverridesChanged = 0x2,
44  signalContactListAppearanceChanged = 0x4
45  };
46 
47  static AppearanceSettings *self();
48  ~AppearanceSettings();
49 
53  static
54  void setUseEmoticons( bool v )
55  {
56  if (!self()->isImmutable( QString::fromLatin1( "useEmoticons" ) )) {
57  self()->mUseEmoticons = v;
58  self()->mSettingsChanged |= signalContactListAppearanceChanged;
59  self()->mSettingsChanged |= signalMessageOverridesChanged;
60  }
61  }
62 
66  static
67  bool useEmoticons()
68  {
69  return self()->mUseEmoticons;
70  }
71 
75  ItemBool *useEmoticonsItem()
76  {
77  return mUseEmoticonsItem;
78  }
79 
83  static
84  void setHighlightForegroundColor( const QColor & v )
85  {
86  if (!self()->isImmutable( QString::fromLatin1( "highlightForegroundColor" ) )) {
87  self()->mHighlightForegroundColor = v;
88  self()->mSettingsChanged |= signalAppearanceChanged;
89  }
90  }
91 
95  static
96  QColor highlightForegroundColor()
97  {
98  return self()->mHighlightForegroundColor;
99  }
100 
104  ItemColor *highlightForegroundColorItem()
105  {
106  return mHighlightForegroundColorItem;
107  }
108 
112  static
113  void setHighlightBackgroundColor( const QColor & v )
114  {
115  if (!self()->isImmutable( QString::fromLatin1( "highlightBackgroundColor" ) )) {
116  self()->mHighlightBackgroundColor = v;
117  self()->mSettingsChanged |= signalAppearanceChanged;
118  }
119  }
120 
124  static
125  QColor highlightBackgroundColor()
126  {
127  return self()->mHighlightBackgroundColor;
128  }
129 
133  ItemColor *highlightBackgroundColorItem()
134  {
135  return mHighlightBackgroundColorItem;
136  }
137 
141  static
142  void setChatFmtOverride( bool v )
143  {
144  if (!self()->isImmutable( QString::fromLatin1( "chatFmtOverride" ) )) {
145  self()->mChatFmtOverride = v;
146  self()->mSettingsChanged |= signalMessageOverridesChanged;
147  }
148  }
149 
153  static
154  bool chatFmtOverride()
155  {
156  return self()->mChatFmtOverride;
157  }
158 
162  ItemBool *chatFmtOverrideItem()
163  {
164  return mChatFmtOverrideItem;
165  }
166 
170  static
171  void setChatTextColor( const QColor & v )
172  {
173  if (!self()->isImmutable( QString::fromLatin1( "chatTextColor" ) )) {
174  self()->mChatTextColor = v;
175  self()->mSettingsChanged |= signalAppearanceChanged;
176  }
177  }
178 
182  static
183  QColor chatTextColor()
184  {
185  return self()->mChatTextColor;
186  }
187 
191  ItemColor *chatTextColorItem()
192  {
193  return mChatTextColorItem;
194  }
195 
199  static
200  void setChatBackgroundColor( const QColor & v )
201  {
202  if (!self()->isImmutable( QString::fromLatin1( "chatBackgroundColor" ) )) {
203  self()->mChatBackgroundColor = v;
204  self()->mSettingsChanged |= signalAppearanceChanged;
205  }
206  }
207 
211  static
212  QColor chatBackgroundColor()
213  {
214  return self()->mChatBackgroundColor;
215  }
216 
220  ItemColor *chatBackgroundColorItem()
221  {
222  return mChatBackgroundColorItem;
223  }
224 
228  static
229  void setChatLinkColor( const QColor & v )
230  {
231  if (!self()->isImmutable( QString::fromLatin1( "chatLinkColor" ) )) {
232  self()->mChatLinkColor = v;
233  self()->mSettingsChanged |= signalAppearanceChanged;
234  }
235  }
236 
240  static
241  QColor chatLinkColor()
242  {
243  return self()->mChatLinkColor;
244  }
245 
249  ItemColor *chatLinkColorItem()
250  {
251  return mChatLinkColorItem;
252  }
253 
257  static
258  void setChatFontSelection( int v )
259  {
260  if (!self()->isImmutable( QString::fromLatin1( "chatFontSelection" ) )) {
261  self()->mChatFontSelection = v;
262  self()->mSettingsChanged |= signalAppearanceChanged;
263  }
264  }
265 
269  static
270  int chatFontSelection()
271  {
272  return self()->mChatFontSelection;
273  }
274 
278  ItemInt *chatFontSelectionItem()
279  {
280  return mChatFontSelectionItem;
281  }
282 
286  static
287  void setChatFont( const QFont & v )
288  {
289  if (!self()->isImmutable( QString::fromLatin1( "chatFont" ) )) {
290  self()->mChatFont = v;
291  self()->mSettingsChanged |= signalAppearanceChanged;
292  }
293  }
294 
298  static
299  QFont chatFont()
300  {
301  return self()->mChatFont;
302  }
303 
307  ItemFont *chatFontItem()
308  {
309  return mChatFontItem;
310  }
311 
315  static
316  void setIdleContactColor( const QColor & v )
317  {
318  if (!self()->isImmutable( QString::fromLatin1( "idleContactColor" ) )) {
319  self()->mIdleContactColor = v;
320  self()->mSettingsChanged |= signalContactListAppearanceChanged;
321  }
322  }
323 
327  static
328  QColor idleContactColor()
329  {
330  return self()->mIdleContactColor;
331  }
332 
336  ItemColor *idleContactColorItem()
337  {
338  return mIdleContactColorItem;
339  }
340 
344  static
345  void setGreyIdleMetaContacts( bool v )
346  {
347  if (!self()->isImmutable( QString::fromLatin1( "greyIdleMetaContacts" ) )) {
348  self()->mGreyIdleMetaContacts = v;
349  self()->mSettingsChanged |= signalContactListAppearanceChanged;
350  }
351  }
352 
356  static
357  bool greyIdleMetaContacts()
358  {
359  return self()->mGreyIdleMetaContacts;
360  }
361 
365  ItemBool *greyIdleMetaContactsItem()
366  {
367  return mGreyIdleMetaContactsItem;
368  }
369 
373  static
374  void setToolTipContents( const QStringList & v )
375  {
376  if (!self()->isImmutable( QString::fromLatin1( "toolTipContents" ) ))
377  self()->mToolTipContents = v;
378  }
379 
383  static
384  QStringList toolTipContents()
385  {
386  return self()->mToolTipContents;
387  }
388 
392  ItemStringList *toolTipContentsItem()
393  {
394  return mToolTipContentsItem;
395  }
396 
400  static
401  void setContactListGroupSorting( int v )
402  {
403  if (!self()->isImmutable( QString::fromLatin1( "contactListGroupSorting" ) )) {
404  self()->mContactListGroupSorting = v;
405  self()->mSettingsChanged |= signalContactListAppearanceChanged;
406  }
407  }
408 
412  static
413  int contactListGroupSorting()
414  {
415  return self()->mContactListGroupSorting;
416  }
417 
421  ItemEnum *contactListGroupSortingItem()
422  {
423  return mContactListGroupSortingItem;
424  }
425 
429  static
430  void setContactListMetaContactSorting( int v )
431  {
432  if (!self()->isImmutable( QString::fromLatin1( "contactListMetaContactSorting" ) )) {
433  self()->mContactListMetaContactSorting = v;
434  self()->mSettingsChanged |= signalContactListAppearanceChanged;
435  }
436  }
437 
441  static
442  int contactListMetaContactSorting()
443  {
444  return self()->mContactListMetaContactSorting;
445  }
446 
450  ItemEnum *contactListMetaContactSortingItem()
451  {
452  return mContactListMetaContactSortingItem;
453  }
454 
458  static
459  void setContactListIconMode( int v )
460  {
461  if (!self()->isImmutable( QString::fromLatin1( "contactListIconMode" ) )) {
462  self()->mContactListIconMode = v;
463  self()->mSettingsChanged |= signalContactListAppearanceChanged;
464  }
465  }
466 
470  static
471  int contactListIconMode()
472  {
473  return self()->mContactListIconMode;
474  }
475 
479  ItemEnum *contactListIconModeItem()
480  {
481  return mContactListIconModeItem;
482  }
483 
487  static
488  void setContactListIconBorders( bool v )
489  {
490  if (!self()->isImmutable( QString::fromLatin1( "contactListIconBorders" ) )) {
491  self()->mContactListIconBorders = v;
492  self()->mSettingsChanged |= signalContactListAppearanceChanged;
493  }
494  }
495 
499  static
500  bool contactListIconBorders()
501  {
502  return self()->mContactListIconBorders;
503  }
504 
508  ItemBool *contactListIconBordersItem()
509  {
510  return mContactListIconBordersItem;
511  }
512 
516  static
517  void setContactListIconRounded( bool v )
518  {
519  if (!self()->isImmutable( QString::fromLatin1( "contactListIconRounded" ) )) {
520  self()->mContactListIconRounded = v;
521  self()->mSettingsChanged |= signalContactListAppearanceChanged;
522  }
523  }
524 
528  static
529  bool contactListIconRounded()
530  {
531  return self()->mContactListIconRounded;
532  }
533 
537  ItemBool *contactListIconRoundedItem()
538  {
539  return mContactListIconRoundedItem;
540  }
541 
545  static
546  void setContactListTreeView( bool v )
547  {
548  if (!self()->isImmutable( QString::fromLatin1( "contactListTreeView" ) )) {
549  self()->mContactListTreeView = v;
550  self()->mSettingsChanged |= signalContactListAppearanceChanged;
551  }
552  }
553 
557  static
558  bool contactListTreeView()
559  {
560  return self()->mContactListTreeView;
561  }
562 
566  ItemBool *contactListTreeViewItem()
567  {
568  return mContactListTreeViewItem;
569  }
570 
574  static
575  void setContactListIndentContact( bool v )
576  {
577  if (!self()->isImmutable( QString::fromLatin1( "contactListIndentContact" ) )) {
578  self()->mContactListIndentContact = v;
579  self()->mSettingsChanged |= signalContactListAppearanceChanged;
580  }
581  }
582 
586  static
587  bool contactListIndentContact()
588  {
589  return self()->mContactListIndentContact;
590  }
591 
595  ItemBool *contactListIndentContactItem()
596  {
597  return mContactListIndentContactItem;
598  }
599 
603  static
604  void setContactListHideVerticalScrollBar( bool v )
605  {
606  if (!self()->isImmutable( QString::fromLatin1( "contactListHideVerticalScrollBar" ) )) {
607  self()->mContactListHideVerticalScrollBar = v;
608  self()->mSettingsChanged |= signalContactListAppearanceChanged;
609  }
610  }
611 
615  static
616  bool contactListHideVerticalScrollBar()
617  {
618  return self()->mContactListHideVerticalScrollBar;
619  }
620 
624  ItemBool *contactListHideVerticalScrollBarItem()
625  {
626  return mContactListHideVerticalScrollBarItem;
627  }
628 
632  static
633  void setGroupContactByGroup( bool v )
634  {
635  if (!self()->isImmutable( QString::fromLatin1( "groupContactByGroup" ) )) {
636  self()->mGroupContactByGroup = v;
637  self()->mSettingsChanged |= signalContactListAppearanceChanged;
638  }
639  }
640 
644  static
645  bool groupContactByGroup()
646  {
647  return self()->mGroupContactByGroup;
648  }
649 
653  ItemBool *groupContactByGroupItem()
654  {
655  return mGroupContactByGroupItem;
656  }
657 
661  static
662  void setContactListUseCustomFont( bool v )
663  {
664  if (!self()->isImmutable( QString::fromLatin1( "contactListUseCustomFont" ) )) {
665  self()->mContactListUseCustomFont = v;
666  self()->mSettingsChanged |= signalContactListAppearanceChanged;
667  }
668  }
669 
673  static
674  bool contactListUseCustomFont()
675  {
676  return self()->mContactListUseCustomFont;
677  }
678 
682  ItemBool *contactListUseCustomFontItem()
683  {
684  return mContactListUseCustomFontItem;
685  }
686 
690  static
691  void setContactListAutoResize( bool v )
692  {
693  if (!self()->isImmutable( QString::fromLatin1( "contactListAutoResize" ) )) {
694  self()->mContactListAutoResize = v;
695  self()->mSettingsChanged |= signalContactListAppearanceChanged;
696  }
697  }
698 
702  static
703  bool contactListAutoResize()
704  {
705  return self()->mContactListAutoResize;
706  }
707 
711  ItemBool *contactListAutoResizeItem()
712  {
713  return mContactListAutoResizeItem;
714  }
715 
719  static
720  void setContactListResizeAnchor( int v )
721  {
722  if (!self()->isImmutable( QString::fromLatin1( "contactListResizeAnchor" ) )) {
723  self()->mContactListResizeAnchor = v;
724  self()->mSettingsChanged |= signalContactListAppearanceChanged;
725  }
726  }
727 
731  static
732  int contactListResizeAnchor()
733  {
734  return self()->mContactListResizeAnchor;
735  }
736 
740  ItemEnum *contactListResizeAnchorItem()
741  {
742  return mContactListResizeAnchorItem;
743  }
744 
748  static
749  void setContactListNormalFont( const QFont & v )
750  {
751  if (!self()->isImmutable( QString::fromLatin1( "contactListNormalFont" ) )) {
752  self()->mContactListNormalFont = v;
753  self()->mSettingsChanged |= signalContactListAppearanceChanged;
754  }
755  }
756 
760  static
761  QFont contactListNormalFont()
762  {
763  return self()->mContactListNormalFont;
764  }
765 
769  ItemFont *contactListNormalFontItem()
770  {
771  return mContactListNormalFontItem;
772  }
773 
777  static
778  void setContactListSmallFont( const QFont & v )
779  {
780  if (!self()->isImmutable( QString::fromLatin1( "contactListSmallFont" ) )) {
781  self()->mContactListSmallFont = v;
782  self()->mSettingsChanged |= signalContactListAppearanceChanged;
783  }
784  }
785 
789  static
790  QFont contactListSmallFont()
791  {
792  return self()->mContactListSmallFont;
793  }
794 
798  ItemFont *contactListSmallFontItem()
799  {
800  return mContactListSmallFontItem;
801  }
802 
806  static
807  void setGroupNameColor( const QColor & v )
808  {
809  if (!self()->isImmutable( QString::fromLatin1( "groupNameColor" ) )) {
810  self()->mGroupNameColor = v;
811  self()->mSettingsChanged |= signalContactListAppearanceChanged;
812  }
813  }
814 
818  static
819  QColor groupNameColor()
820  {
821  return self()->mGroupNameColor;
822  }
823 
827  ItemColor *groupNameColorItem()
828  {
829  return mGroupNameColorItem;
830  }
831 
835  static
836  void setContactListAnimateChange( bool v )
837  {
838  if (!self()->isImmutable( QString::fromLatin1( "contactListAnimateChange" ) )) {
839  self()->mContactListAnimateChange = v;
840  self()->mSettingsChanged |= signalContactListAppearanceChanged;
841  }
842  }
843 
847  static
848  bool contactListAnimateChange()
849  {
850  return self()->mContactListAnimateChange;
851  }
852 
856  ItemBool *contactListAnimateChangeItem()
857  {
858  return mContactListAnimateChangeItem;
859  }
860 
864  static
865  void setContactListFading( bool v )
866  {
867  if (!self()->isImmutable( QString::fromLatin1( "contactListFading" ) )) {
868  self()->mContactListFading = v;
869  self()->mSettingsChanged |= signalContactListAppearanceChanged;
870  }
871  }
872 
876  static
877  bool contactListFading()
878  {
879  return self()->mContactListFading;
880  }
881 
885  ItemBool *contactListFadingItem()
886  {
887  return mContactListFadingItem;
888  }
889 
893  static
894  void setContactListFolding( bool v )
895  {
896  if (!self()->isImmutable( QString::fromLatin1( "contactListFolding" ) )) {
897  self()->mContactListFolding = v;
898  self()->mSettingsChanged |= signalContactListAppearanceChanged;
899  }
900  }
901 
905  static
906  bool contactListFolding()
907  {
908  return self()->mContactListFolding;
909  }
910 
914  ItemBool *contactListFoldingItem()
915  {
916  return mContactListFoldingItem;
917  }
918 
922  static
923  void setContactListAutoHide( bool v )
924  {
925  if (!self()->isImmutable( QString::fromLatin1( "contactListAutoHide" ) )) {
926  self()->mContactListAutoHide = v;
927  self()->mSettingsChanged |= signalContactListAppearanceChanged;
928  }
929  }
930 
934  static
935  bool contactListAutoHide()
936  {
937  return self()->mContactListAutoHide;
938  }
939 
943  ItemBool *contactListAutoHideItem()
944  {
945  return mContactListAutoHideItem;
946  }
947 
951  static
952  void setContactListAutoHideVScroll( bool v )
953  {
954  if (!self()->isImmutable( QString::fromLatin1( "contactListAutoHideVScroll" ) )) {
955  self()->mContactListAutoHideVScroll = v;
956  self()->mSettingsChanged |= signalContactListAppearanceChanged;
957  }
958  }
959 
963  static
964  bool contactListAutoHideVScroll()
965  {
966  return self()->mContactListAutoHideVScroll;
967  }
968 
972  ItemBool *contactListAutoHideVScrollItem()
973  {
974  return mContactListAutoHideVScrollItem;
975  }
976 
980  static
981  void setContactListAutoHideTimeout( uint v )
982  {
983  if (!self()->isImmutable( QString::fromLatin1( "contactListAutoHideTimeout" ) )) {
984  self()->mContactListAutoHideTimeout = v;
985  self()->mSettingsChanged |= signalContactListAppearanceChanged;
986  }
987  }
988 
992  static
993  uint contactListAutoHideTimeout()
994  {
995  return self()->mContactListAutoHideTimeout;
996  }
997 
1001  ItemUInt *contactListAutoHideTimeoutItem()
1002  {
1003  return mContactListAutoHideTimeoutItem;
1004  }
1005 
1009  static
1010  void setShowOfflineUsers( bool v )
1011  {
1012  if (!self()->isImmutable( QString::fromLatin1( "showOfflineUsers" ) )) {
1013  self()->mShowOfflineUsers = v;
1014  self()->mSettingsChanged |= signalContactListAppearanceChanged;
1015  }
1016  }
1017 
1021  static
1022  bool showOfflineUsers()
1023  {
1024  return self()->mShowOfflineUsers;
1025  }
1026 
1030  ItemBool *showOfflineUsersItem()
1031  {
1032  return mShowOfflineUsersItem;
1033  }
1034 
1038  static
1039  void setShowEmptyGroups( bool v )
1040  {
1041  if (!self()->isImmutable( QString::fromLatin1( "showEmptyGroups" ) )) {
1042  self()->mShowEmptyGroups = v;
1043  self()->mSettingsChanged |= signalContactListAppearanceChanged;
1044  }
1045  }
1046 
1050  static
1051  bool showEmptyGroups()
1052  {
1053  return self()->mShowEmptyGroups;
1054  }
1055 
1059  ItemBool *showEmptyGroupsItem()
1060  {
1061  return mShowEmptyGroupsItem;
1062  }
1063 
1067  static
1068  void setShowIdentityIcons( bool v )
1069  {
1070  if (!self()->isImmutable( QString::fromLatin1( "showIdentityIcons" ) ))
1071  self()->mShowIdentityIcons = v;
1072  }
1073 
1077  static
1078  bool showIdentityIcons()
1079  {
1080  return self()->mShowIdentityIcons;
1081  }
1082 
1086  ItemBool *showIdentityIconsItem()
1087  {
1088  return mShowIdentityIconsItem;
1089  }
1090 
1094  static
1095  void setShowOfflineGrouped( bool v )
1096  {
1097  if (!self()->isImmutable( QString::fromLatin1( "showOfflineGrouped" ) )) {
1098  self()->mShowOfflineGrouped = v;
1099  self()->mSettingsChanged |= signalContactListAppearanceChanged;
1100  }
1101  }
1102 
1106  static
1107  bool showOfflineGrouped()
1108  {
1109  return self()->mShowOfflineGrouped;
1110  }
1111 
1115  ItemBool *showOfflineGroupedItem()
1116  {
1117  return mShowOfflineGroupedItem;
1118  }
1119 
1120 
1121  Q_SIGNALS:
1125  void appearanceChanged();
1126 
1130  void messageOverridesChanged();
1131 
1135  void contactListAppearanceChanged();
1136 
1137  protected:
1138  AppearanceSettings();
1139  friend class AppearanceSettingsHelper;
1140 
1141  virtual void usrWriteConfig();
1142 
1143  // Appearance
1144  bool mUseEmoticons;
1145  QColor mHighlightForegroundColor;
1146  QColor mHighlightBackgroundColor;
1147  bool mChatFmtOverride;
1148  QColor mChatTextColor;
1149  QColor mChatBackgroundColor;
1150  QColor mChatLinkColor;
1151  int mChatFontSelection;
1152  QFont mChatFont;
1153  QColor mIdleContactColor;
1154  bool mGreyIdleMetaContacts;
1155  QStringList mToolTipContents;
1156 
1157  // ContactList
1158  int mContactListGroupSorting;
1159  int mContactListMetaContactSorting;
1160  int mContactListIconMode;
1161  bool mContactListIconBorders;
1162  bool mContactListIconRounded;
1163  bool mContactListTreeView;
1164  bool mContactListIndentContact;
1165  bool mContactListHideVerticalScrollBar;
1166  bool mGroupContactByGroup;
1167  bool mContactListUseCustomFont;
1168  bool mContactListAutoResize;
1169  int mContactListResizeAnchor;
1170  QFont mContactListNormalFont;
1171  QFont mContactListSmallFont;
1172  QColor mGroupNameColor;
1173  bool mContactListAnimateChange;
1174  bool mContactListFading;
1175  bool mContactListFolding;
1176  bool mContactListAutoHide;
1177  bool mContactListAutoHideVScroll;
1178  uint mContactListAutoHideTimeout;
1179  bool mShowOfflineUsers;
1180  bool mShowEmptyGroups;
1181  bool mShowIdentityIcons;
1182  bool mShowOfflineGrouped;
1183 
1184  private:
1185  ItemBool *mUseEmoticonsItem;
1186  ItemColor *mHighlightForegroundColorItem;
1187  ItemColor *mHighlightBackgroundColorItem;
1188  ItemBool *mChatFmtOverrideItem;
1189  ItemColor *mChatTextColorItem;
1190  ItemColor *mChatBackgroundColorItem;
1191  ItemColor *mChatLinkColorItem;
1192  ItemInt *mChatFontSelectionItem;
1193  ItemFont *mChatFontItem;
1194  ItemColor *mIdleContactColorItem;
1195  ItemBool *mGreyIdleMetaContactsItem;
1196  ItemStringList *mToolTipContentsItem;
1197  ItemEnum *mContactListGroupSortingItem;
1198  ItemEnum *mContactListMetaContactSortingItem;
1199  ItemEnum *mContactListIconModeItem;
1200  ItemBool *mContactListIconBordersItem;
1201  ItemBool *mContactListIconRoundedItem;
1202  ItemBool *mContactListTreeViewItem;
1203  ItemBool *mContactListIndentContactItem;
1204  ItemBool *mContactListHideVerticalScrollBarItem;
1205  ItemBool *mGroupContactByGroupItem;
1206  ItemBool *mContactListUseCustomFontItem;
1207  ItemBool *mContactListAutoResizeItem;
1208  ItemEnum *mContactListResizeAnchorItem;
1209  ItemFont *mContactListNormalFontItem;
1210  ItemFont *mContactListSmallFontItem;
1211  ItemColor *mGroupNameColorItem;
1212  ItemBool *mContactListAnimateChangeItem;
1213  ItemBool *mContactListFadingItem;
1214  ItemBool *mContactListFoldingItem;
1215  ItemBool *mContactListAutoHideItem;
1216  ItemBool *mContactListAutoHideVScrollItem;
1217  ItemUInt *mContactListAutoHideTimeoutItem;
1218  ItemBool *mShowOfflineUsersItem;
1219  ItemBool *mShowEmptyGroupsItem;
1220  ItemBool *mShowIdentityIconsItem;
1221  ItemBool *mShowOfflineGroupedItem;
1222  uint mSettingsChanged;
1223 };
1224 
1225 }
1226 
1227 #endif
1228 
Kopete::AppearanceSettings::setGroupContactByGroup
static void setGroupContactByGroup(bool v)
Set Group contacts by group.
Definition: kopeteappearancesettings.h:633
KOPETE_EXPORT
#define KOPETE_EXPORT
Definition: kopete_export.h:27
Kopete::AppearanceSettings::setContactListTreeView
static void setContactListTreeView(bool v)
Set Show contact list as a tree view.
Definition: kopeteappearancesettings.h:546
Kopete::AppearanceSettings::mChatFont
QFont mChatFont
Definition: kopeteappearancesettings.h:1152
Kopete::AppearanceSettings::chatTextColorItem
ItemColor * chatTextColorItem()
Get Item object corresponding to chatTextColor()
Definition: kopeteappearancesettings.h:191
Kopete::AppearanceSettings::contactListAutoHideVScrollItem
ItemBool * contactListAutoHideVScrollItem()
Get Item object corresponding to contactListAutoHideVScroll()
Definition: kopeteappearancesettings.h:972
Kopete::AppearanceSettings::highlightBackgroundColorItem
ItemColor * highlightBackgroundColorItem()
Get Item object corresponding to highlightBackgroundColor()
Definition: kopeteappearancesettings.h:133
Kopete::AppearanceSettings::groupContactByGroupItem
ItemBool * groupContactByGroupItem()
Get Item object corresponding to groupContactByGroup()
Definition: kopeteappearancesettings.h:653
Kopete::AppearanceSettings::mContactListTreeView
bool mContactListTreeView
Definition: kopeteappearancesettings.h:1163
Kopete::AppearanceSettings::mContactListFading
bool mContactListFading
Definition: kopeteappearancesettings.h:1174
Kopete::AppearanceSettings::showEmptyGroups
static bool showEmptyGroups()
Get Show empty groups in contact list.
Definition: kopeteappearancesettings.h:1051
Kopete::AppearanceSettings::contactListIconRoundedItem
ItemBool * contactListIconRoundedItem()
Get Item object corresponding to contactListIconRounded()
Definition: kopeteappearancesettings.h:537
Kopete::AppearanceSettings::mShowEmptyGroups
bool mShowEmptyGroups
Definition: kopeteappearancesettings.h:1180
Kopete::AppearanceSettings::showOfflineGroupedItem
ItemBool * showOfflineGroupedItem()
Get Item object corresponding to showOfflineGrouped()
Definition: kopeteappearancesettings.h:1115
Kopete::AppearanceSettings::groupNameColor
static QColor groupNameColor()
Get Color for group name.
Definition: kopeteappearancesettings.h:819
Kopete::AppearanceSettings::highlightForegroundColorItem
ItemColor * highlightForegroundColorItem()
Get Item object corresponding to highlightForegroundColor()
Definition: kopeteappearancesettings.h:104
Kopete::AppearanceSettings::mContactListAnimateChange
bool mContactListAnimateChange
Definition: kopeteappearancesettings.h:1173
Kopete::AppearanceSettings::EnumContactListGroupSorting::type
type
Definition: kopeteappearancesettings.h:23
Kopete::AppearanceSettings::mChatFmtOverride
bool mChatFmtOverride
Definition: kopeteappearancesettings.h:1147
Kopete::AppearanceSettings::mToolTipContents
QStringList mToolTipContents
Definition: kopeteappearancesettings.h:1155
Kopete::AppearanceSettings::contactListHideVerticalScrollBarItem
ItemBool * contactListHideVerticalScrollBarItem()
Get Item object corresponding to contactListHideVerticalScrollBar()
Definition: kopeteappearancesettings.h:624
Kopete::AppearanceSettings::setChatTextColor
static void setChatTextColor(const QColor &v)
Set Chat text color.
Definition: kopeteappearancesettings.h:171
Kopete::AppearanceSettings::contactListUseCustomFont
static bool contactListUseCustomFont()
Get Use custom fonts for contact list.
Definition: kopeteappearancesettings.h:674
Kopete::AppearanceSettings::highlightBackgroundColor
static QColor highlightBackgroundColor()
Get Background color used when highlighting.
Definition: kopeteappearancesettings.h:125
Kopete::AppearanceSettings::contactListSmallFont
static QFont contactListSmallFont()
Get Small font for contact list (for status message)
Definition: kopeteappearancesettings.h:790
Kopete::AppearanceSettings::mGroupNameColor
QColor mGroupNameColor
Definition: kopeteappearancesettings.h:1172
Kopete::AppearanceSettings::mContactListIconRounded
bool mContactListIconRounded
Definition: kopeteappearancesettings.h:1162
Kopete::AppearanceSettings::setHighlightBackgroundColor
static void setHighlightBackgroundColor(const QColor &v)
Set Background color used when highlighting.
Definition: kopeteappearancesettings.h:113
Kopete::AppearanceSettings::setChatFont
static void setChatFont(const QFont &v)
Set Chat font.
Definition: kopeteappearancesettings.h:287
Kopete::AppearanceSettings::showOfflineUsersItem
ItemBool * showOfflineUsersItem()
Get Item object corresponding to showOfflineUsers()
Definition: kopeteappearancesettings.h:1030
QFont
Kopete::AppearanceSettings::setIdleContactColor
static void setIdleContactColor(const QColor &v)
Set Color used to identify idle contacts.
Definition: kopeteappearancesettings.h:316
Kopete::AppearanceSettings::EnumContactListMetaContactSorting::type
type
Definition: kopeteappearancesettings.h:28
Kopete::AppearanceSettings::setShowOfflineGrouped
static void setShowOfflineGrouped(bool v)
Set Show offline users in a separate group.
Definition: kopeteappearancesettings.h:1095
Kopete::AppearanceSettings::chatFontSelectionItem
ItemInt * chatFontSelectionItem()
Get Item object corresponding to chatFontSelection()
Definition: kopeteappearancesettings.h:278
Kopete::AppearanceSettings::contactListUseCustomFontItem
ItemBool * contactListUseCustomFontItem()
Get Item object corresponding to contactListUseCustomFont()
Definition: kopeteappearancesettings.h:682
Kopete::AppearanceSettings::setContactListResizeAnchor
static void setContactListResizeAnchor(int v)
Set Corner at which to anchor main window when auto-resizing.
Definition: kopeteappearancesettings.h:720
Kopete::AppearanceSettings::mShowOfflineGrouped
bool mShowOfflineGrouped
Definition: kopeteappearancesettings.h:1182
Kopete::AppearanceSettings::setContactListIconBorders
static void setContactListIconBorders(bool v)
Set Enable borders on the contact's photo.
Definition: kopeteappearancesettings.h:488
Kopete::AppearanceSettings::contactListIconBorders
static bool contactListIconBorders()
Get Enable borders on the contact's photo.
Definition: kopeteappearancesettings.h:500
Kopete::AppearanceSettings::contactListNormalFont
static QFont contactListNormalFont()
Get Normal font for contact list.
Definition: kopeteappearancesettings.h:761
Kopete::AppearanceSettings::contactListResizeAnchorItem
ItemEnum * contactListResizeAnchorItem()
Get Item object corresponding to contactListResizeAnchor()
Definition: kopeteappearancesettings.h:740
Kopete::AppearanceSettings::setHighlightForegroundColor
static void setHighlightForegroundColor(const QColor &v)
Set Text color used when highlighting.
Definition: kopeteappearancesettings.h:84
Kopete::AppearanceSettings::mContactListSmallFont
QFont mContactListSmallFont
Definition: kopeteappearancesettings.h:1171
Kopete::AppearanceSettings::mContactListFolding
bool mContactListFolding
Definition: kopeteappearancesettings.h:1175
Kopete::AppearanceSettings::mContactListNormalFont
QFont mContactListNormalFont
Definition: kopeteappearancesettings.h:1170
Kopete::AppearanceSettings::groupContactByGroup
static bool groupContactByGroup()
Get Group contacts by group.
Definition: kopeteappearancesettings.h:645
KConfigSkeleton
Kopete::AppearanceSettings::contactListFading
static bool contactListFading()
Get Fade-in/Fade-out on contact status changes.
Definition: kopeteappearancesettings.h:877
Kopete::AppearanceSettings::highlightForegroundColor
static QColor highlightForegroundColor()
Get Text color used when highlighting.
Definition: kopeteappearancesettings.h:96
Kopete::AppearanceSettings::setContactListNormalFont
static void setContactListNormalFont(const QFont &v)
Set Normal font for contact list.
Definition: kopeteappearancesettings.h:749
Kopete::AppearanceSettings::contactListResizeAnchor
static int contactListResizeAnchor()
Get Corner at which to anchor main window when auto-resizing.
Definition: kopeteappearancesettings.h:732
Kopete::AppearanceSettings::showEmptyGroupsItem
ItemBool * showEmptyGroupsItem()
Get Item object corresponding to showEmptyGroups()
Definition: kopeteappearancesettings.h:1059
Kopete::AppearanceSettings::useEmoticonsItem
ItemBool * useEmoticonsItem()
Get Item object corresponding to useEmoticons()
Definition: kopeteappearancesettings.h:75
Kopete::AppearanceSettings::greyIdleMetaContactsItem
ItemBool * greyIdleMetaContactsItem()
Get Item object corresponding to greyIdleMetaContacts()
Definition: kopeteappearancesettings.h:365
Kopete::AppearanceSettings::setContactListIconMode
static void setContactListIconMode(int v)
Set Contact list icon display mode.
Definition: kopeteappearancesettings.h:459
Kopete::AppearanceSettings::setContactListAutoHide
static void setContactListAutoHide(bool v)
Set Auto-hide contact list after a while.
Definition: kopeteappearancesettings.h:923
Kopete::AppearanceSettings::setGroupNameColor
static void setGroupNameColor(const QColor &v)
Set Color for group name.
Definition: kopeteappearancesettings.h:807
Kopete::AppearanceSettings::setContactListSmallFont
static void setContactListSmallFont(const QFont &v)
Set Small font for contact list (for status message)
Definition: kopeteappearancesettings.h:778
Kopete::AppearanceSettings::setUseEmoticons
static void setUseEmoticons(bool v)
Set Enable emoticon support in Kopete.
Definition: kopeteappearancesettings.h:54
Kopete::AppearanceSettings::contactListGroupSortingItem
ItemEnum * contactListGroupSortingItem()
Get Item object corresponding to contactListGroupSorting()
Definition: kopeteappearancesettings.h:421
Kopete::AppearanceSettings::chatFontItem
ItemFont * chatFontItem()
Get Item object corresponding to chatFont()
Definition: kopeteappearancesettings.h:307
Kopete::AppearanceSettings::mUseEmoticons
bool mUseEmoticons
Definition: kopeteappearancesettings.h:1144
Kopete::AppearanceSettings::contactListGroupSorting
static int contactListGroupSorting()
Get Contact list group sorting.
Definition: kopeteappearancesettings.h:413
Kopete::AppearanceSettings::mContactListAutoHideVScroll
bool mContactListAutoHideVScroll
Definition: kopeteappearancesettings.h:1177
Kopete::AppearanceSettings::mContactListAutoHide
bool mContactListAutoHide
Definition: kopeteappearancesettings.h:1176
Kopete::AppearanceSettings::mGroupContactByGroup
bool mGroupContactByGroup
Definition: kopeteappearancesettings.h:1166
Kopete::AppearanceSettings::contactListNormalFontItem
ItemFont * contactListNormalFontItem()
Get Item object corresponding to contactListNormalFont()
Definition: kopeteappearancesettings.h:769
Kopete::AppearanceSettings::contactListIndentContact
static bool contactListIndentContact()
Get Indent contacts if you do not show tree lines.
Definition: kopeteappearancesettings.h:587
Kopete::AppearanceSettings::mGreyIdleMetaContacts
bool mGreyIdleMetaContacts
Definition: kopeteappearancesettings.h:1154
Kopete::AppearanceSettings::setContactListIndentContact
static void setContactListIndentContact(bool v)
Set Indent contacts if you do not show tree lines.
Definition: kopeteappearancesettings.h:575
Kopete::AppearanceSettings::setContactListAnimateChange
static void setContactListAnimateChange(bool v)
Set Animate contact list on contact list changes.
Definition: kopeteappearancesettings.h:836
Kopete::AppearanceSettings::mChatFontSelection
int mChatFontSelection
Definition: kopeteappearancesettings.h:1151
Kopete::AppearanceSettings::mChatLinkColor
QColor mChatLinkColor
Definition: kopeteappearancesettings.h:1150
Kopete::AppearanceSettings::mHighlightBackgroundColor
QColor mHighlightBackgroundColor
Definition: kopeteappearancesettings.h:1146
Kopete::AppearanceSettings::contactListAnimateChangeItem
ItemBool * contactListAnimateChangeItem()
Get Item object corresponding to contactListAnimateChange()
Definition: kopeteappearancesettings.h:856
Kopete::AppearanceSettings::mContactListIconBorders
bool mContactListIconBorders
Definition: kopeteappearancesettings.h:1161
Kopete::AppearanceSettings::setContactListAutoResize
static void setContactListAutoResize(bool v)
Set Automatically resize the main window.
Definition: kopeteappearancesettings.h:691
Kopete::AppearanceSettings::contactListFadingItem
ItemBool * contactListFadingItem()
Get Item object corresponding to contactListFading()
Definition: kopeteappearancesettings.h:885
Kopete::AppearanceSettings::EnumContactListIconMode
Definition: kopeteappearancesettings.h:30
Kopete::AppearanceSettings::contactListAutoHideVScroll
static bool contactListAutoHideVScroll()
Get Auto-hide vertical scrollbar in contact list after a while.
Definition: kopeteappearancesettings.h:964
Kopete::AppearanceSettings::contactListAutoHideTimeoutItem
ItemUInt * contactListAutoHideTimeoutItem()
Get Item object corresponding to contactListAutoHideTimeout()
Definition: kopeteappearancesettings.h:1001
Kopete::AppearanceSettings::mShowOfflineUsers
bool mShowOfflineUsers
Definition: kopeteappearancesettings.h:1179
Kopete::AppearanceSettings
Definition: kopeteappearancesettings.h:16
Kopete::AppearanceSettings::setContactListAutoHideTimeout
static void setContactListAutoHideTimeout(uint v)
Set Auto-hide timeout.
Definition: kopeteappearancesettings.h:981
Kopete::AppearanceSettings::contactListSmallFontItem
ItemFont * contactListSmallFontItem()
Get Item object corresponding to contactListSmallFont()
Definition: kopeteappearancesettings.h:798
Kopete::AppearanceSettings::mShowIdentityIcons
bool mShowIdentityIcons
Definition: kopeteappearancesettings.h:1181
kopete_export.h
Kopete::AppearanceSettings::mContactListAutoResize
bool mContactListAutoResize
Definition: kopeteappearancesettings.h:1168
Kopete::AppearanceSettings::setChatBackgroundColor
static void setChatBackgroundColor(const QColor &v)
Set Chat background color.
Definition: kopeteappearancesettings.h:200
Kopete::AppearanceSettings::showIdentityIcons
static bool showIdentityIcons()
Get Show identities in status bar instead of accounts.
Definition: kopeteappearancesettings.h:1078
QColor
Kopete::AppearanceSettings::showOfflineUsers
static bool showOfflineUsers()
Get Show offline users in contact list.
Definition: kopeteappearancesettings.h:1022
Kopete::AppearanceSettings::chatLinkColor
static QColor chatLinkColor()
Get Chat link color.
Definition: kopeteappearancesettings.h:241
Kopete::AppearanceSettings::greyIdleMetaContacts
static bool greyIdleMetaContacts()
Get Whether to use a different color for idle contacts.
Definition: kopeteappearancesettings.h:357
QStringList
Kopete::AppearanceSettings::EnumContactListResizeAnchor
Definition: kopeteappearancesettings.h:35
Kopete::AppearanceSettings::mContactListResizeAnchor
int mContactListResizeAnchor
Definition: kopeteappearancesettings.h:1169
Kopete::AppearanceSettings::chatBackgroundColor
static QColor chatBackgroundColor()
Get Chat background color.
Definition: kopeteappearancesettings.h:212
Kopete::AppearanceSettings::setChatFontSelection
static void setChatFontSelection(int v)
Set Whether using the system font for the chat window.
Definition: kopeteappearancesettings.h:258
Kopete::AppearanceSettings::mChatTextColor
QColor mChatTextColor
Definition: kopeteappearancesettings.h:1148
Kopete::AppearanceSettings::contactListAnimateChange
static bool contactListAnimateChange()
Get Animate contact list on contact list changes.
Definition: kopeteappearancesettings.h:848
Kopete::AppearanceSettings::contactListFolding
static bool contactListFolding()
Get Fold-in/Fold-out on contact status changes.
Definition: kopeteappearancesettings.h:906
Kopete::AppearanceSettings::contactListFoldingItem
ItemBool * contactListFoldingItem()
Get Item object corresponding to contactListFolding()
Definition: kopeteappearancesettings.h:914
Kopete::AppearanceSettings::chatBackgroundColorItem
ItemColor * chatBackgroundColorItem()
Get Item object corresponding to chatBackgroundColor()
Definition: kopeteappearancesettings.h:220
Kopete::AppearanceSettings::mContactListHideVerticalScrollBar
bool mContactListHideVerticalScrollBar
Definition: kopeteappearancesettings.h:1165
Kopete::AppearanceSettings::contactListMetaContactSortingItem
ItemEnum * contactListMetaContactSortingItem()
Get Item object corresponding to contactListMetaContactSorting()
Definition: kopeteappearancesettings.h:450
Kopete::AppearanceSettings::toolTipContentsItem
ItemStringList * toolTipContentsItem()
Get Item object corresponding to toolTipContents()
Definition: kopeteappearancesettings.h:392
Kopete::AppearanceSettings::setChatLinkColor
static void setChatLinkColor(const QColor &v)
Set Chat link color.
Definition: kopeteappearancesettings.h:229
Kopete::AppearanceSettings::mChatBackgroundColor
QColor mChatBackgroundColor
Definition: kopeteappearancesettings.h:1149
Kopete::AppearanceSettings::mContactListAutoHideTimeout
uint mContactListAutoHideTimeout
Definition: kopeteappearancesettings.h:1178
Kopete::AppearanceSettings::setContactListAutoHideVScroll
static void setContactListAutoHideVScroll(bool v)
Set Auto-hide vertical scrollbar in contact list after a while.
Definition: kopeteappearancesettings.h:952
Kopete::AppearanceSettings::setContactListFading
static void setContactListFading(bool v)
Set Fade-in/Fade-out on contact status changes.
Definition: kopeteappearancesettings.h:865
Kopete::AppearanceSettings::showOfflineGrouped
static bool showOfflineGrouped()
Get Show offline users in a separate group.
Definition: kopeteappearancesettings.h:1107
Kopete::AppearanceSettings::mContactListUseCustomFont
bool mContactListUseCustomFont
Definition: kopeteappearancesettings.h:1167
Kopete::AppearanceSettings::contactListAutoResize
static bool contactListAutoResize()
Get Automatically resize the main window.
Definition: kopeteappearancesettings.h:703
Kopete::AppearanceSettings::mIdleContactColor
QColor mIdleContactColor
Definition: kopeteappearancesettings.h:1153
Kopete::AppearanceSettings::contactListAutoHideTimeout
static uint contactListAutoHideTimeout()
Get Auto-hide timeout.
Definition: kopeteappearancesettings.h:993
Kopete::AppearanceSettings::showIdentityIconsItem
ItemBool * showIdentityIconsItem()
Get Item object corresponding to showIdentityIcons()
Definition: kopeteappearancesettings.h:1086
Kopete::AppearanceSettings::mContactListMetaContactSorting
int mContactListMetaContactSorting
Definition: kopeteappearancesettings.h:1159
Kopete::AppearanceSettings::contactListIconBordersItem
ItemBool * contactListIconBordersItem()
Get Item object corresponding to contactListIconBorders()
Definition: kopeteappearancesettings.h:508
Kopete::AppearanceSettings::setContactListHideVerticalScrollBar
static void setContactListHideVerticalScrollBar(bool v)
Set Hide the vertical scroll bar.
Definition: kopeteappearancesettings.h:604
Kopete::AppearanceSettings::EnumContactListMetaContactSorting
Definition: kopeteappearancesettings.h:25
Kopete::AppearanceSettings::contactListIconMode
static int contactListIconMode()
Get Contact list icon display mode.
Definition: kopeteappearancesettings.h:471
Kopete::AppearanceSettings::contactListAutoHideItem
ItemBool * contactListAutoHideItem()
Get Item object corresponding to contactListAutoHide()
Definition: kopeteappearancesettings.h:943
Kopete::AppearanceSettings::idleContactColorItem
ItemColor * idleContactColorItem()
Get Item object corresponding to idleContactColor()
Definition: kopeteappearancesettings.h:336
Kopete::AppearanceSettings::mContactListIndentContact
bool mContactListIndentContact
Definition: kopeteappearancesettings.h:1164
Kopete::AppearanceSettings::chatFmtOverrideItem
ItemBool * chatFmtOverrideItem()
Get Item object corresponding to chatFmtOverride()
Definition: kopeteappearancesettings.h:162
Kopete::AppearanceSettings::setShowEmptyGroups
static void setShowEmptyGroups(bool v)
Set Show empty groups in contact list.
Definition: kopeteappearancesettings.h:1039
Kopete::AppearanceSettings::chatFmtOverride
static bool chatFmtOverride()
Get Disable custom formatting set by users.
Definition: kopeteappearancesettings.h:154
Kopete::AppearanceSettings::mContactListGroupSorting
int mContactListGroupSorting
Definition: kopeteappearancesettings.h:1158
Kopete::AppearanceSettings::setContactListGroupSorting
static void setContactListGroupSorting(int v)
Set Contact list group sorting.
Definition: kopeteappearancesettings.h:401
Kopete::AppearanceSettings::useEmoticons
static bool useEmoticons()
Get Enable emoticon support in Kopete.
Definition: kopeteappearancesettings.h:67
Kopete::AppearanceSettings::setShowIdentityIcons
static void setShowIdentityIcons(bool v)
Set Show identities in status bar instead of accounts.
Definition: kopeteappearancesettings.h:1068
QString::fromLatin1
QString fromLatin1(const char *str, int size)
Kopete::AppearanceSettings::setToolTipContents
static void setToolTipContents(const QStringList &v)
Set Contact properties that contact tooltip will show.
Definition: kopeteappearancesettings.h:374
Kopete::AppearanceSettings::mHighlightForegroundColor
QColor mHighlightForegroundColor
Definition: kopeteappearancesettings.h:1145
Kopete::AppearanceSettings::setContactListIconRounded
static void setContactListIconRounded(bool v)
Set Round contact photo corners.
Definition: kopeteappearancesettings.h:517
Kopete::AppearanceSettings::contactListIndentContactItem
ItemBool * contactListIndentContactItem()
Get Item object corresponding to contactListIndentContact()
Definition: kopeteappearancesettings.h:595
Kopete::AppearanceSettings::contactListTreeViewItem
ItemBool * contactListTreeViewItem()
Get Item object corresponding to contactListTreeView()
Definition: kopeteappearancesettings.h:566
Kopete::AppearanceSettings::chatLinkColorItem
ItemColor * chatLinkColorItem()
Get Item object corresponding to chatLinkColor()
Definition: kopeteappearancesettings.h:249
Kopete::AppearanceSettings::mContactListIconMode
int mContactListIconMode
Definition: kopeteappearancesettings.h:1160
Kopete::AppearanceSettings::contactListIconRounded
static bool contactListIconRounded()
Get Round contact photo corners.
Definition: kopeteappearancesettings.h:529
Kopete::AppearanceSettings::contactListMetaContactSorting
static int contactListMetaContactSorting()
Get Contact list group sorting.
Definition: kopeteappearancesettings.h:442
Kopete::AppearanceSettings::idleContactColor
static QColor idleContactColor()
Get Color used to identify idle contacts.
Definition: kopeteappearancesettings.h:328
Kopete::AppearanceSettings::chatFont
static QFont chatFont()
Get Chat font.
Definition: kopeteappearancesettings.h:299
Kopete::AppearanceSettings::groupNameColorItem
ItemColor * groupNameColorItem()
Get Item object corresponding to groupNameColor()
Definition: kopeteappearancesettings.h:827
Kopete::AppearanceSettings::setContactListMetaContactSorting
static void setContactListMetaContactSorting(int v)
Set Contact list group sorting.
Definition: kopeteappearancesettings.h:430
Kopete::AppearanceSettings::toolTipContents
static QStringList toolTipContents()
Get Contact properties that contact tooltip will show.
Definition: kopeteappearancesettings.h:384
Kopete::AppearanceSettings::setContactListFolding
static void setContactListFolding(bool v)
Set Fold-in/Fold-out on contact status changes.
Definition: kopeteappearancesettings.h:894
Kopete::AppearanceSettings::contactListTreeView
static bool contactListTreeView()
Get Show contact list as a tree view.
Definition: kopeteappearancesettings.h:558
Kopete::AppearanceSettings::contactListHideVerticalScrollBar
static bool contactListHideVerticalScrollBar()
Get Hide the vertical scroll bar.
Definition: kopeteappearancesettings.h:616
Kopete::AppearanceSettings::EnumContactListResizeAnchor::type
type
Definition: kopeteappearancesettings.h:38
Kopete::AppearanceSettings::contactListIconModeItem
ItemEnum * contactListIconModeItem()
Get Item object corresponding to contactListIconMode()
Definition: kopeteappearancesettings.h:479
Kopete::AppearanceSettings::EnumContactListIconMode::type
type
Definition: kopeteappearancesettings.h:33
Kopete::AppearanceSettings::setContactListUseCustomFont
static void setContactListUseCustomFont(bool v)
Set Use custom fonts for contact list.
Definition: kopeteappearancesettings.h:662
Kopete::AppearanceSettings::contactListAutoHide
static bool contactListAutoHide()
Get Auto-hide contact list after a while.
Definition: kopeteappearancesettings.h:935
Kopete::AppearanceSettings::EnumContactListGroupSorting
Definition: kopeteappearancesettings.h:20
Kopete::AppearanceSettings::chatTextColor
static QColor chatTextColor()
Get Chat text color.
Definition: kopeteappearancesettings.h:183
Kopete::AppearanceSettings::chatFontSelection
static int chatFontSelection()
Get Whether using the system font for the chat window.
Definition: kopeteappearancesettings.h:270
Kopete::AppearanceSettings::setChatFmtOverride
static void setChatFmtOverride(bool v)
Set Disable custom formatting set by users.
Definition: kopeteappearancesettings.h:142
Kopete::AppearanceSettings::contactListAutoResizeItem
ItemBool * contactListAutoResizeItem()
Get Item object corresponding to contactListAutoResize()
Definition: kopeteappearancesettings.h:711
Kopete::AppearanceSettings::setShowOfflineUsers
static void setShowOfflineUsers(bool v)
Set Show offline users in contact list.
Definition: kopeteappearancesettings.h:1010
Kopete::AppearanceSettings::setGreyIdleMetaContacts
static void setGreyIdleMetaContacts(bool v)
Set Whether to use a different color for idle contacts.
Definition: kopeteappearancesettings.h:345
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:29:19 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

kopete/libkopete

Skip menu "kopete/libkopete"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdenetwork API Reference

Skip menu "kdenetwork API Reference"
  • kget
  • kopete
  •   kopete
  •   libkopete
  • krdc
  • krfb

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