summaryrefslogtreecommitdiffstats
path: root/quanta/project/uploadprofiles.h
blob: 07011e2eb7db0aa493b86fba94f5a7655c523568 (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
104
105
106
107
108
//
// C++ Interface: UploadProfiles
//
// Description: 
//
//
// Author: Jens Herden <jens@kdewebdev.org>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//

#ifndef UPLOADPROFILES_H
#define UPLOADPROFILES_H

// QT includes
#include <tqmap.h>
#include <tqdom.h>
#include <tqguardedptr.h>

// KDE includes
#include <kurl.h>


class TQObject;

/**
       @short The internal representation of upload profiles.

*/


struct UploadProfile 
{
  TQString name;                    ///< name of profile
  TQDomElement domElement;          ///< domtree element of this profile
  TQGuardedPtr<TQWidget> treeview;   ///< treeview for this url
};

/** a map for the upload profiles */
typedef  TQMap<TQString, UploadProfile> UploadProfileMap;


class UploadProfiles : public UploadProfileMap
{
public:
  /**
   *  since this class is a singleton you must use this function to access it
   */
  static UploadProfiles* const ref()
  {
    static UploadProfiles *m_ref;
    if (!m_ref) m_ref = new UploadProfiles();
    return m_ref;
  }

  ~UploadProfiles();

  /**
      reads the available profiles from the tree and fills the map
  
      @param the dom document to parse 
  */
  void readFromXML(const TQDomDocument &dom);

  /**
      removes a profile from the map and the dom tree
  
      @param the profile to remove 
      
      @return true if profile was found and removed
   */
  bool removeFromMapAndXML(const TQString &name);

  /**
      clears the map and removes all treeviews
    */
  void clear();

private:
  /** The constructor is privat because we use singleton pattern.
   *  If you need the class use UploadProfiles::ref() for
   *  construction and reference
   */
  UploadProfiles();
  
  /**
      creates a treeview for a profile and adds it to the right toolviews
      
      @param profile the profile 
      
      @return the pointer to the treeview
   */
  TQWidget * createTreeview(const UploadProfile &profile);

  /**
      creates a KURL from a TQDomElement
  
      @param e a TQDomElement where the path is saved
      
      @return KURL of the location
   */
  KURL url(const TQDomElement &e);
  
  TQDomNode m_profilesNode;  ///< under this node the profiles are saved in the dom tree
};

#endif