SettingsWidgetsFactory.h
Go to the documentation of this file.
1 /* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file ProjectWidget.h
22 
23  \brief A frame for setting project options.
24 */
25 #ifndef __TERRALIB_QT_AF_SETTINGSWIDGETSFACTORY_H
26 #define __TERRALIB_QT_AF_SETTINGSWIDGETSFACTORY_H
27 
28 #include "../../../common/AbstractFactory.h"
29 
30 // Forward declarations
31 class AbstractSettingWidget;
32 
33 namespace te
34 {
35  namespace qt
36  {
37  namespace af
38  {
39  class TEQTAFEXPORT SettingsWidgetsFactory : public te::common::AbstractFactory<AbstractSettingWidget, std::string>
40  {
41  public:
42 
43  static AbstractSettingWidget* make(const std::string& cwType, QWidget* parent = 0);
44 
46 
47  protected:
48 
49  SettingsWidgetsFactory(const std::string& fKey);
50 
51  virtual AbstractSettingWidget* create(QWidget* parent = 0) = 0;
52  };
53 
54  inline AbstractSettingWidget* SettingsWidgetsFactory::make(const std::string& cwType, QWidget* parent)
55  {
57 
58  SettingsWidgetsFactory* f = static_cast<SettingsWidgetsFactory*>(d.find(cwType));
59 
60  if(f == 0)
61  throw QObject::tr("Fail to find QWidget factory");
62 
63  return f->create(parent);
64  }
65 
67  {
68  }
69 
70  inline SettingsWidgetsFactory::SettingsWidgetsFactory(const std::string& fKey) :
71  te::common::AbstractFactory<AbstractSettingWidget, std::string>(fKey)
72  {
73  }
74  }
75  }
76 }
77 
78 #endif //__TERRALIB_QT_AF_SETTINGSWIDGETSFACTORY_H
This class defines the interface of abstract factories without initializing parameters.
static AbstractSettingWidget * make(const std::string &cwType, QWidget *parent=0)
static dictionary_type & getDictionary()
It returns a reference to the internal dictionary of concrete factories.
TFACTORY * find(const TFACTORYKEY &factoryKey) const
It looks for a given factory identified by a key.
A frame for setting Table options.
URI C++ Library.
SettingsWidgetsFactory(const std::string &fKey)
#define TEQTAFEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:71
virtual AbstractSettingWidget * create(QWidget *parent=0)=0
This class represents a dictionary of factories.