diff options
Diffstat (limited to 'kopete/libkopete/kopeteprefs.h')
-rw-r--r-- | kopete/libkopete/kopeteprefs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kopete/libkopete/kopeteprefs.h b/kopete/libkopete/kopeteprefs.h index 4fb4a9e3..dede4664 100644 --- a/kopete/libkopete/kopeteprefs.h +++ b/kopete/libkopete/kopeteprefs.h @@ -107,6 +107,8 @@ public: TQStringList toolTipContents() const { return mToolTipContents; } + TQString themeURL() const { return mThemeURL; } + /// enum ContactDisplayMode { Classic, RightAligned, Detailed, Yagami, Default = Classic }; /// @@ -115,6 +117,7 @@ public: ContactDisplayMode contactListDisplayMode() const { return mContactListDisplayMode; } IconDisplayMode contactListIconMode() const { return mContactListIconMode; } bool contactListUseCustomFonts() const { return mContactListUseCustomFonts; } + TQFont contactListCustomGroupFont() const { return mContactListGroupFont; } TQFont contactListCustomNormalFont() const { return mContactListNormalFont; } TQFont contactListCustomSmallFont() const { return mContactListSmallFont; } TQFont contactListSmallFont() const; @@ -156,6 +159,7 @@ public: void setSoundIfAway(bool); void setBeepNotify(bool); void setChatWindowPolicy(int); + void setThemeURL(const TQString &); void setStylePath(const TQString &); void setStyleVariant(const TQString &); void setChatViewBufferSize(int); @@ -179,6 +183,7 @@ public: void setContactListDisplayMode( ContactDisplayMode v ); void setContactListIconMode( IconDisplayMode v ); void setContactListUseCustomFonts( bool v ); + void setContactListCustomGroupFont( const TQFont & v ); void setContactListCustomNormalFont( const TQFont & v ); void setContactListCustomSmallFont( const TQFont & v ); void setContactListGroupNameColor( const TQColor & v ); @@ -287,6 +292,7 @@ private: // xhtml+css //for Adium (xhtml+css) + TQString mThemeURL; TQString mStylePath; TQString mStyleVariant; bool mStylePathChanged; @@ -298,6 +304,7 @@ private: ContactDisplayMode mContactListDisplayMode; IconDisplayMode mContactListIconMode; bool mContactListUseCustomFonts; + TQFont mContactListGroupFont; TQFont mContactListNormalFont; TQFont mContactListSmallFont; TQColor mContactListGroupNameColor; |