diff options
Diffstat (limited to 'src/tools/gui/tool_group_ui.cpp')
-rw-r--r-- | src/tools/gui/tool_group_ui.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/tools/gui/tool_group_ui.cpp b/src/tools/gui/tool_group_ui.cpp new file mode 100644 index 0000000..9bb02dd --- /dev/null +++ b/src/tools/gui/tool_group_ui.cpp @@ -0,0 +1,25 @@ +/*************************************************************************** + * Copyright (C) 2005-2007 Nicolas Hadacek <hadacek@kde.org> * + * * + * 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. * + ***************************************************************************/ +#include "tool_group_ui.h" + +#include "tool_config_widget.h" +#include "toolchain_config_widget.h" + +ToolchainConfigWidget *Tool::GroupUI::toolchainConfigWidgetFactory(QWidget *parent) const +{ + return new ToolchainConfigWidget(static_cast<const Group &>(group()), parent); +} + +ToolConfigWidget *Tool::GroupUI::createConfigWidget(Category category, ::Project *project) const +{ + ToolConfigWidget *cw = configWidgetFactory(category, project); + Q_ASSERT(cw); + cw->init(category, static_cast<const Group &>(group())); + return cw; +} |