summaryrefslogtreecommitdiffstats
path: root/knode/kndisplayedheader.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /knode/kndisplayedheader.cpp
downloadtdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz
tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'knode/kndisplayedheader.cpp')
-rw-r--r--knode/kndisplayedheader.cpp175
1 files changed, 175 insertions, 0 deletions
diff --git a/knode/kndisplayedheader.cpp b/knode/kndisplayedheader.cpp
new file mode 100644
index 000000000..589bd0027
--- /dev/null
+++ b/knode/kndisplayedheader.cpp
@@ -0,0 +1,175 @@
+/*
+ KNode, the KDE newsreader
+ Copyright (c) 1999-2005 the KNode authors.
+ See file AUTHORS for details
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
+*/
+
+#include <klocale.h>
+
+#include "kndisplayedheader.h"
+
+
+// some standard headers
+static const char *predef[] = { "Approved","Content-Transfer-Encoding","Content-Type","Control","Date","Distribution",
+ "Expires","Followup-To","From","Lines","Mail-Copies-To","Message-ID","Mime-Version","NNTP-Posting-Host",
+ "Newsgroups","Organization","Path","References","Reply-To", "Sender","Subject",
+ "Supersedes","To", "User-Agent","X-Mailer","X-Newsreader","X-No-Archive","XRef",0 };
+
+// default display names KNode uses
+static const char *disp[] = { "Groups", 0 };
+
+void dummyHeader()
+{
+ i18n("collection of article headers","Approved");
+ i18n("collection of article headers","Content-Transfer-Encoding");
+ i18n("collection of article headers","Content-Type");
+ i18n("collection of article headers","Control");
+ i18n("collection of article headers","Date");
+ i18n("collection of article headers","Distribution");
+ i18n("collection of article headers","Expires");
+ i18n("collection of article headers","Followup-To");
+ i18n("collection of article headers","From");
+ i18n("collection of article headers","Lines");
+ i18n("collection of article headers","Mail-Copies-To");
+ i18n("collection of article headers","Message-ID");
+ i18n("collection of article headers","Mime-Version");
+ i18n("collection of article headers","NNTP-Posting-Host");
+ i18n("collection of article headers","Newsgroups");
+ i18n("collection of article headers","Organization");
+ i18n("collection of article headers","Path");
+ i18n("collection of article headers","References");
+ i18n("collection of article headers","Reply-To");
+ i18n("collection of article headers","Sender");
+ i18n("collection of article headers","Subject");
+ i18n("collection of article headers","Supersedes");
+ i18n("collection of article headers","To");
+ i18n("collection of article headers","User-Agent");
+ i18n("collection of article headers","X-Mailer");
+ i18n("collection of article headers","X-Newsreader");
+ i18n("collection of article headers","X-No-Archive");
+ i18n("collection of article headers","XRef");
+
+ i18n("collection of article headers","Groups");
+}
+
+
+//=============================================================================================================
+
+
+KNDisplayedHeader::KNDisplayedHeader()
+ : t_ranslateName(true)
+{
+ f_lags.fill(false, 8);
+ f_lags[1] = true; // header name bold by default
+}
+
+
+KNDisplayedHeader::~KNDisplayedHeader()
+{
+}
+
+
+// some common headers
+const char** KNDisplayedHeader::predefs()
+{
+ return predef;
+}
+
+
+// *tries* to translate the name
+QString KNDisplayedHeader::translatedName()
+{
+ if (t_ranslateName) {
+ // major hack alert !!!
+ if (!n_ame.isEmpty()) {
+ if (i18n("collection of article headers",n_ame.local8Bit())!=n_ame.local8Bit().data()) // try to guess if this english or not
+ return i18n("collection of article headers",n_ame.local8Bit());
+ else
+ return n_ame;
+ } else
+ return QString::null;
+ } else
+ return n_ame;
+}
+
+
+// *tries* to retranslate the name to english
+void KNDisplayedHeader::setTranslatedName(const QString &s)
+{
+ bool retranslated = false;
+ for (const char **c=predef;(*c)!=0;c++) { // ok, first the standard header names
+ if (s==i18n("collection of article headers",*c)) {
+ n_ame = QString::fromLatin1(*c);
+ retranslated = true;
+ break;
+ }
+ }
+
+ if (!retranslated) {
+ for (const char **c=disp;(*c)!=0;c++) // now our standard display names
+ if (s==i18n("collection of article headers",*c)) {
+ n_ame = QString::fromLatin1(*c);
+ retranslated = true;
+ break;
+ }
+ }
+
+ if (!retranslated) { // ok, we give up and store the maybe non-english string
+ n_ame = s;
+ t_ranslateName = false; // and don't try to translate it, so a german user *can* use the original english name
+ } else
+ t_ranslateName = true;
+}
+
+
+void KNDisplayedHeader::createTags()
+{
+ const char *tokens[] = { "<big>","</big>","<b>","</b>",
+ "<i>","</i>","<u>","</u>" };
+
+ for(int i=0; i<4; i++) t_ags[i]=QString::null;
+
+ if(f_lags.at(0)) { // <big>
+ t_ags[0]=tokens[0];
+ t_ags[1]=tokens[1];
+ }
+ if(f_lags.at(4)) {
+ t_ags[2]=tokens[0];
+ t_ags[3]=tokens[1];
+ }
+
+ if(f_lags.at(1)) { // <b>
+ t_ags[0]+=(tokens[2]);
+ t_ags[1].prepend(tokens[3]);
+ }
+ if(f_lags.at(5)) {
+ t_ags[2]+=tokens[2];
+ t_ags[3].prepend(tokens[3]);
+ }
+
+ if(f_lags.at(2)) { // <i>
+ t_ags[0]+=tokens[4];
+ t_ags[1].prepend(tokens[5]);
+ }
+ if(f_lags.at(6)) {
+ t_ags[2]+=tokens[4];
+ t_ags[3].prepend(tokens[5]);
+ }
+
+ if(f_lags.at(3)) { // <u>
+ t_ags[0]+=tokens[6];
+ t_ags[1].prepend(tokens[7]);
+ }
+ if(f_lags.at(7)) {
+ t_ags[2]+=tokens[6];
+ t_ags[3].prepend(tokens[7]);
+ }
+}