Some glitches were fixed, new items were added to DVCS menus
[kdevelopdvcssupport.git] / plugins / bazaar / bzrplugin.cpp
bloba385f7384e1dc272b8a8977ab42d1953d9c09a06
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 "bzrplugin.h"
23 #include <KPluginFactory>
24 #include <KPluginLoader>
25 #include <klocalizedstring.h>
27 #include <interfaces/icore.h>
29 #include <vcs/dvcs/dvcsjob.h>
31 #include "bzrexecutor.h"
33 K_PLUGIN_FACTORY(KDevBzrFactory, registerPlugin<BzrPlugin>(); )
34 K_EXPORT_PLUGIN(KDevBzrFactory("kdevbzr"))
36 BzrPlugin::BzrPlugin( QObject *parent, const QVariantList & )
37 : DistributedVersionControlPlugin(parent, KDevBzrFactory::componentData())
39 KDEV_USE_EXTENSION_INTERFACE( KDevelop::IBasicVersionControl )
40 KDEV_USE_EXTENSION_INTERFACE( KDevelop::IDistributedVersionControl )
42 core()->uiController()->addToolView(i18n("Bazaar"), DistributedVersionControlPlugin::d->m_factory);
44 QString EasterEgg = i18n("It is easier to change the specification to fit the program than vice versa. It means it easier to use git than make a good DVCS from Bzr ;)");
45 Q_UNUSED(EasterEgg)
47 setXMLFile("kdevbzr.rc");
49 DistributedVersionControlPlugin::d->m_exec = new BzrExecutor(this);
52 BzrPlugin::~BzrPlugin()
54 delete DistributedVersionControlPlugin::d;
57 // #include "gitplugin.moc"