/*************************************************************************** * Copyright (C) 2005 by Jens Dagerbo * * jens.dagerbo@swipnet.se * * * * 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. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include #include #include #include #include "domutil.h" #include "vcsmanagerprojectconfig.h" #include "vcsmanagerpart.h" VCSManagerProjectConfig::VCSManagerProjectConfig( VCSManagerPart *part, TQWidget *parent, const char *name ) : VCSManagerProjectConfigBase( parent, name ), m_part( part ) { setup(); } void VCSManagerProjectConfig::accept() { TQString vcsPluginName = *m_vcsPluginNames.at( vcsCombo->currentItem() ); TQDomDocument & dom = *m_part->projectDom(); DomUtil::writeEntry( dom, "/general/versioncontrol", vcsPluginName ); m_part->loadVCSPlugin(); } void VCSManagerProjectConfig::setup( ) { vcsCombo->insertItem( i18n("No Version Control System", "None"), 0 ); m_vcsPluginNames << ""; int current = 0; TQString constraint = TQString("[X-TDevelop-Version] == %1").arg(TDEVELOP_PLUGIN_VERSION); TDETrader::OfferList offers = TDETrader::self()->query("TDevelop/VersionControl", constraint ); TDETrader::OfferList::const_iterator it = offers.begin(); for ( int i = 1; it != offers.end(); ++it, ++i ) { vcsCombo->insertItem( (*it)->genericName(), i ); m_vcsPluginNames << (*it)->desktopEntryName(); if ( (*it)->desktopEntryName() == m_part->vcsPlugin() ) { current = i; } } vcsCombo->setCurrentItem( current ); } #include "vcsmanagerprojectconfig.moc"