From 3a75bdfe83b71ef1dbc2fbf52f2d18b8174e22e5 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 15 Dec 2020 11:30:44 +0900 Subject: Renaming of files in preparation for code style tools. Signed-off-by: Michele Calgaro --- kmailcvt/filter_pmail.h | 76 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 kmailcvt/filter_pmail.h (limited to 'kmailcvt/filter_pmail.h') diff --git a/kmailcvt/filter_pmail.h b/kmailcvt/filter_pmail.h new file mode 100644 index 00000000..07f62a36 --- /dev/null +++ b/kmailcvt/filter_pmail.h @@ -0,0 +1,76 @@ +/*************************************************************************** + FilterPMail.h - Pegasus-Mail import + ------------------- + begin : Sat Jan 6 2001 + copyright : (C) 2001 by Holger Schurig + email : holgerschurig@gmx.de + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + +#ifndef FILTER_PMAIL_H +#define FILTER_PMAIL_H + +#include +#include + +#include "filters.h" + +class FilterPMail : public Filter +{ +public: + FilterPMail(); + ~FilterPMail(); + + void import(FilterInfo *info); + +protected: + /** this looks for all files with the filemask 'mask' and calls the 'workFunc' on each of them */ + void processFiles(const TQString& mask, void(FilterPMail::* workFunc)(const TQString&) ); + /** this function imports one *.CNM message */ + void importNewMessage(const TQString& file); + /** this function imports one mail folder file (*.PMM) */ + void importMailFolder(const TQString& file); + /** imports a 'unix' format mail folder (*.MBX) */ + void importUnixMailFolder(const TQString& file); + /** this function recreate the folder structure */ + bool parseFolderMatrix(); + /** this function parse the folder structure */ + TQString getFolderName(TQString ID); + +private: + /** the working directory */ + TQDir dir; + /** pointer to the info */ + FilterInfo * inf; + + /** Folder structure here has 5 entries. */ + typedef FolderStructureBase<5> FolderStructure; + /** List with the folder matrix, which contains following strings: + 1. type (2 for root-folder, 1 for folder, 0 for mailarchiv) + 2. type (1 for root-folder, 3 for folder, 0 for mailarchiv) + 3. "ID:flag:filename" of folder/archiv + 4. "ID:name" of parent folder + 5. name of folder/archiv + */ + TQValueList folderMatrix; + typedef TQValueList::Iterator FolderStructureIterator; + + bool folderParsed; + + TQString chosenDir; + + /** which file (of totalFiles) is now in the work? */ + int currentFile; + /** total number of files that get imported */ + int totalFiles; + +}; +#endif -- cgit v1.2.3