/*************************************************************************** * Copyright (C) 2005-2006 Nicolas Hadacek * * Copyright (C) 2004 Alain Gibaud * * * * 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_config_widget.h" #include #include #include #include #include "devices/base/hex_buffer.h" #include "tools/list/compile_config.h" #include "libgui/project.h" #include "common/gui/purl_gui.h" #include "tools/list/compile_process.h" const char * const ToolConfigWidget::ARGUMENTS_TYPE_LABELS[Nb_ArgumentsTypes] = { I18N_NOOP("Automatic"), I18N_NOOP("Custom") }; ToolConfigWidget::ToolConfigWidget(Project *project) : ::ConfigWidget(0), _group(0), _project(project), _customOptions(0), _customLibraries(0), _includeDirs(0), _hexFormat(0), _config(0), _tmpConfig(0), _process(0), _tmpProject(0) { Container *container = new Container(this); container->setColStretch(2, 1); addWidget(container, 0,0, 0,0); TQLabel *label = new TQLabel(i18n("Configuration:"), container); container->addWidget(label, 0,0, 0,0); _argumentsType = new KComboBox(container); for (uint i=0; iinsertItem(i18n(ARGUMENTS_TYPE_LABELS[i]), i); connect(_argumentsType, TQT_SIGNAL(activated(int)), TQT_SLOT(updateArguments())); container->addWidget(_argumentsType, 0,0, 1,1); label = new TQLabel(i18n("Arguments:"), container); container->addWidget(label, 1,1, 0,0); _arguments = new KLineEdit(container); _arguments->setReadOnly(true); container->addWidget(_arguments, 1,1, 1,2); KPushButton *button = new KPushButton(KGuiItem(TQString(), "help"), container); connect(button, TQT_SIGNAL(clicked()), TQT_SIGNAL(displayHelp())); container->addWidget(button, 1,1, 3,3); _argumentsEditor = new EditListBox(1, container, "arguments_editor", EditListBox::DuplicatesAllowed, EditListBox::Add | EditListBox::Remove | EditListBox::UpDown | EditListBox::RemoveAll | EditListBox::Reset); connect(_argumentsEditor, TQT_SIGNAL(changed()), TQT_SLOT(updateArguments())); connect(_argumentsEditor, TQT_SIGNAL(reset()), TQT_SLOT(resetCustomArguments())); container->addWidget(_argumentsEditor, 2,2, 0,3); _container = new Container(container); _container->setColStretch(2, 1); container->addWidget(_container, 3,3, 0,3); connect(this, TQT_SIGNAL(changed()), TQT_SLOT(updateArguments())); } void ToolConfigWidget::init(Tool::Category category, const Tool::Group &group) { _category = category; _group = &group; _config = _group->createConfig(_project); _tmpProject = new Project(PURL::Url()); _tmpConfig = _group->createConfig(_tmpProject); Compile::Data data(_category, TQValueList(), TQString(), _project, Compile::NormalLinking); _process = _group->createCompileProcess(data, 0); initEntries(); createCustomOptionsEntry(); } ToolConfigWidget::~ToolConfigWidget() { delete _process; delete _tmpConfig; delete _tmpProject; delete _config; } PURL::DirectoriesWidget *ToolConfigWidget::createDirectoriesEntry(const TQString &text) { uint row = container()->numRows(); PURL::DirectoriesWidget *sdw = new PURL::DirectoriesWidget(text, _project ? _project->directory().path() : TQString(), container()); connect(sdw, TQT_SIGNAL(changed()), TQT_SIGNAL(changed())); container()->addWidget(sdw, row,row, 0,2); return sdw; } void ToolConfigWidget::createCustomOptionsEntry() { uint row = container()->numRows(); TQLabel *label = new TQLabel(i18n("Custom options:"), container()); container()->addWidget(label, row,row, 0,0); _customOptions = new TQLineEdit(container()); connect(_customOptions, TQT_SIGNAL(textChanged(const TQString &)), TQT_SIGNAL(changed())); container()->addWidget(_customOptions, row,row, 1,2); } void ToolConfigWidget::createCustomLibrariesEntry() { uint row = container()->numRows(); TQLabel *label = new TQLabel(i18n("Custom libraries:"), container()); container()->addWidget(label, row,row, 0,0); _customLibraries = new TQLineEdit(container()); connect(_customLibraries, TQT_SIGNAL(textChanged(const TQString &)), TQT_SIGNAL(changed())); TQToolTip::add(_customLibraries, i18n("This values will be placed after the linked objects.")) ; container()->addWidget(_customLibraries, row,row, 1,2); } void ToolConfigWidget::createHexFormatEntry() { uint row = container()->numRows(); TQLabel *label = new TQLabel(i18n("Hex file format:"), container()); container()->addWidget(label, row,row, 0,0); _hexFormat = new TQComboBox(container()); connect(_hexFormat, TQT_SIGNAL(activated(int)), TQT_SIGNAL(changed())); for (uint i=0; iinsertItem(HexBuffer::FORMATS[i]); _hexFormat->insertItem(i18n("as in LIST directive")); container()->addWidget(_hexFormat, row,row, 1,1); } void ToolConfigWidget::loadConfig() { loadConfig(*_config); if ( _config->customArguments(_category).isEmpty() ) resetCustomArguments(); else updateArguments(); } void ToolConfigWidget::resetCustomArguments() { _argumentsEditor->setTexts(arguments(AutomaticArguments)); updateArguments(); } void ToolConfigWidget::loadConfig(const Compile::Config &config) { _argumentsType->setCurrentItem(config.hasCustomArguments(_category) ? CustomArguments : AutomaticArguments); _argumentsEditor->setTexts(config.customArguments(_category)); if (_includeDirs) _includeDirs->setDirectories(config.rawIncludeDirs(_category)) ; if (_customOptions) _customOptions->setText(config.rawCustomOptions(_category)); if (_customLibraries) _customLibraries->setText(config.rawCustomLibraries(_category)); if (_hexFormat) _hexFormat->setCurrentItem(config.hexFormat()); } void ToolConfigWidget::saveConfig(Compile::Config &config) const { config.setHasCustomArguments(_category, _argumentsType->currentItem()==CustomArguments); config.setCustomArguments(_category, _argumentsEditor->texts()); if (_includeDirs) config.setRawIncludeDirs(_category, _includeDirs->directories()); if (_customOptions) config.setRawCustomOptions(_category, _customOptions->text()); if (_customLibraries) config.setRawCustomLibraries(_category, _customLibraries->text()); if (_hexFormat) config.setHexFormat(HexBuffer::Format(_hexFormat->currentItem())); } TQStringList ToolConfigWidget::arguments(ArgumentsType type) const { if ( _tmpConfig==0 ) return TQStringList(); saveConfig(*_tmpConfig); if ( type==AutomaticArguments ) return _process->genericArguments(*_tmpConfig); return _argumentsEditor->texts(); } void ToolConfigWidget::updateArguments() { ArgumentsType type = ArgumentsType(_argumentsType->currentItem()); if ( type==AutomaticArguments ) { _argumentsEditor->hide(); _container->show(); } else { _argumentsEditor->show(); _container->hide(); } _arguments->setText(arguments(type).join(" ")); }