Loading...
Searching...
No Matches
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
30namespace te
31{
32 namespace qt
33 {
34 namespace af
35 {
36 class AbstractSettingWidget;
37
38 class TEQTAFEXPORT SettingsWidgetsFactory : public te::common::AbstractFactory<AbstractSettingWidget, std::string>
39 {
40 public:
41
42 static AbstractSettingWidget* make(const std::string& cwType, QWidget* parent = 0);
43
45
46 protected:
47
48 SettingsWidgetsFactory(const std::string& fKey);
49
50 virtual AbstractSettingWidget* create(QWidget* parent = 0) = 0;
51 };
52
53 inline AbstractSettingWidget* SettingsWidgetsFactory::make(const std::string& cwType, QWidget* parent)
54 {
56
57 SettingsWidgetsFactory* f = static_cast<SettingsWidgetsFactory*>(d.find(cwType));
58
59 if(f == 0)
60 throw QObject::tr("Fail to find QWidget factory");
61
62 return f->create(parent);
63 }
64
66 {
67 }
68
69 inline SettingsWidgetsFactory::SettingsWidgetsFactory(const std::string& fKey) :
70 te::common::AbstractFactory<AbstractSettingWidget, std::string>(fKey)
71 {
72 }
73 }
74 }
75}
76
77#endif //__TERRALIB_QT_AF_SETTINGSWIDGETSFACTORY_H
This class defines the interface of abstract factories without initializing parameters.
static dictionary_type & getDictionary()
It returns a reference to the internal dictionary of concrete factories.
This class represents a dictionary of factories.
TFACTORY * find(const TFACTORYKEY &factoryKey) const
It looks for a given factory identified by a key.
A frame for setting Table options.
SettingsWidgetsFactory(const std::string &fKey)
virtual AbstractSettingWidget * create(QWidget *parent=0)=0
static AbstractSettingWidget * make(const std::string &cwType, QWidget *parent=0)
TerraLib.
#define TEQTAFEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:71