summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopeteprefs.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-07 22:02:54 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-07 22:02:54 +0000
commite2e6ec17cf1177e4bb81609e8e884e000819dfdc (patch)
treeb7491d60010c277ee80c223e293b4caac6e8b69e /kopete/libkopete/kopeteprefs.h
parentf815711d039485259835e246103d3e7f8f3d7203 (diff)
downloadtdenetwork-e2e6ec17cf1177e4bb81609e8e884e000819dfdc.tar.gz
tdenetwork-e2e6ec17cf1177e4bb81609e8e884e000819dfdc.zip
* Part 2/2 of Chakra patches
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1172713 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/libkopete/kopeteprefs.h')
-rw-r--r--kopete/libkopete/kopeteprefs.h7
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;