summaryrefslogtreecommitdiffstats
path: root/knode/knfolder.h
blob: 0be6dafdeed8c360a2a0f1a574ec5645a65928e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
    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
*/

#ifndef KNFOLDER_H
#define KNFOLDER_H

#include <time.h>

#include "utilities.h"
#include "knarticle.h"
#include "knarticlecollection.h"


class KNFolder : public KNArticleCollection  {

  friend class KNCleanUp;

  public:
    KNFolder();
    KNFolder(int id, const TQString &name, KNFolder *parent=0);
    KNFolder(int id, const TQString &name, const TQString &prefix, KNFolder *parent=0);
    ~KNFolder();

    //type
    collectionType type()               { return CTfolder; }

    //id
    int id() const                           { return i_d; }
    void setId(int i)                   { i_d=i; }
    int parentId() const                     { return p_arentId; }
    bool isStandardFolder()             { return (i_d > 0) && (i_d <=3); }
    bool isRootFolder()                 { return i_d==0; }

    //list item handling
    void updateListItem();
    bool wasOpen()const                      { return w_asOpen; }

    //info
    TQString path();
    bool readInfo(const TQString &confPath);
    bool readInfo();
    void saveInfo();

    //article access
    KNLocalArticle* at(int i)           { return static_cast<KNLocalArticle*>(KNArticleCollection::at(i)); }
    KNLocalArticle* byId(int id)        { return static_cast<KNLocalArticle*>(KNArticleCollection::byId(id)); }
    KNLocalArticle* byMessageId(const TQCString &mid)
                                        { return static_cast<KNLocalArticle*>(KNArticleCollection::byMessageId(mid)); }

    //parent
    void setParent(KNCollection *p);

    //load, save and delete
    bool loadHdrs();
    bool unloadHdrs(bool force=true);
    bool loadArticle(KNLocalArticle *a);
    bool saveArticles( KNLocalArticle::List &l );
    void removeArticles( KNLocalArticle::List &l, bool del = true );
    void deleteAll();
    void deleteFiles();

    //index synchronization
    void syncIndex(bool force=false);

    protected:
      void closeFiles();
      int i_d;            // unique id: 0: root folder 1-3: standard folders
      int p_arentId;      // -1 for the root folder
      bool i_ndexDirty;   // do we need to sync?
      bool w_asOpen;      // was this folder open in the listview on the last shutdown?
      KNFile m_boxFile;
      TQFile i_ndexFile;
      TQString i_nfoPath;

      /* helper-class: stores index-data of an article */
      class DynData {
        public:
          DynData()  {}
          ~DynData() {}
          void setData(KNLocalArticle *a);
          void getData(KNLocalArticle *a);

          int id,
              so,
              eo,
              sId;
          time_t ti;
          bool flags[6];
      };
};

#endif