1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/***************************************************************************
* 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 <tqcombobox.h>
#include <tqstring.h>
#include <ktrader.h>
#include <klocale.h>
#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-KDevelop-Version] == %1").arg(KDEVELOP_PLUGIN_VERSION);
KTrader::OfferList offers = KTrader::self()->query("KDevelop/VersionControl", constraint );
KTrader::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"
|