Salome HOME
PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
[modules/kernel.git] / src / SALOMEGUI / QAD_ResourceMgr.h
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : QAD_ResourceMgr.cxx
25 //  Author : UI team
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef QAD_RESOURCEMGR_H
30 #define QAD_RESOURCEMGR_H
31
32 #include <qdict.h>
33 #include <qpixmap.h>
34 #include <qcstring.h>
35 #include <qasciidict.h>
36 #include <qtranslator.h>
37
38 #include "QAD.h"
39 class QAD_EXPORT QAD_ResourceMgr : public QObject
40 {
41     Q_OBJECT
42
43     typedef QDict<QString>  StringDict;
44     class ResourceSettings 
45     {
46         StringDict      myConfig;
47      public:
48          ResourceSettings() : myConfig( 10, false ) 
49             { myConfig.setAutoDelete( true ); }
50          ~ResourceSettings() 
51             { myConfig.clear(); }
52
53         StringDict& config() { return myConfig; }
54         bool        load( const QString& filename );        
55     };
56
57 public:
58     QAD_ResourceMgr();
59     ~QAD_ResourceMgr();
60
61 public:
62     bool                    loadResources( const char* resname, QString& msg );    
63     QPixmap                 loadPixmap( const char* resname,
64                                         const QString& id ) const;  
65     bool                    loadDoc( const char* resname, 
66                                      const QString& id ) const;
67     QString                 language( const char* prefix ) const;
68     QString                 resources( const char* prefix ) const;
69
70     QString                 findFile(const QString& filename, const char* prefix ) const;
71     QString                 getFile( const QString& filename, const char* prefix ) const;
72
73     bool                    removeResources( const char* resname );
74
75 private:
76     QString                 path( const QString& filename, 
77                                   const char* resname, 
78                                   const char* key ) const;
79     QString                 collectDirs( const QString& prefix ) const;
80
81 private:
82     QAsciiDict<ResourceSettings> myRes;     /* prefix <-> resources  */         
83 };
84
85 #endif
86