Some glitches were fixed, new items were added to DVCS menus
[kdevelopdvcssupport.git] / plugins / mercurial / hgplugin.cpp
blobf81481522006dc4215b0ad5c5e5ad696387a7160
1 /***************************************************************************
2 * Copyright 2008 Evgeniy Ivanov <powerfox@kde.ru> *
3 * *
4 * This program is free software; you can redistribute it and/or *
5 * modify it under the terms of the GNU General Public License as *
6 * published by the Free Software Foundation; either version 2 of *
7 * the License or (at your option) version 3 or any later version *
8 * accepted by the membership of KDE e.V. (or its successor approved *
9 * by the membership of KDE e.V.), which shall act as a proxy *
10 * defined in Section 14 of version 3 of the license. *
11 * *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
19 ***************************************************************************/
21 #include "hgplugin.h"
23 #include <KPluginFactory>
24 #include <KPluginLoader>
25 #include <klocalizedstring.h>
27 #include <interfaces/icore.h>
29 #include <vcs/dvcs/dvcsjob.h>
31 #include "hgexecutor.h"
33 K_PLUGIN_FACTORY(KDevHgFactory, registerPlugin<HgPlugin>(); )
34 K_EXPORT_PLUGIN(KDevHgFactory("kdevhg"))
36 HgPlugin::HgPlugin( QObject *parent, const QVariantList & )
37 : DistributedVersionControlPlugin(parent, KDevHgFactory::componentData())
39 KDEV_USE_EXTENSION_INTERFACE( KDevelop::IBasicVersionControl )
40 KDEV_USE_EXTENSION_INTERFACE( KDevelop::IDistributedVersionControl )
42 core()->uiController()->addToolView(i18n("Mercurial"), DistributedVersionControlPlugin::d->m_factory);
44 setXMLFile("kdevhg.rc");
46 DistributedVersionControlPlugin::d->m_exec = new HgExecutor(this);
49 HgPlugin::~HgPlugin()
51 delete DistributedVersionControlPlugin::d;
54 // #include "hgplugin.moc"