vcs
vcsannotationwidget.h
00001 /*************************************************************************** 00002 * This file is part of KDevelop * 00003 * Copyright 2007 Dukju Ahn <dukjuahn@gmail.com> * 00004 * Copyright 2007 Andreas Pakulat <apaku@gmx.de> * 00005 * * 00006 * This program is free software; you can redistribute it and/or modify * 00007 * it under the terms of the GNU Library General Public License as * 00008 * published by the Free Software Foundation; either version 2 of the * 00009 * License, or (at your option) any later version. * 00010 * * 00011 * This program is distributed in the hope that it will be useful, * 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00014 * GNU General Public License for more details. * 00015 * * 00016 * You should have received a copy of the GNU Library General Public * 00017 * License along with this program; if not, write to the * 00018 * Free Software Foundation, Inc., * 00019 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * 00020 ***************************************************************************/ 00021 00022 #ifndef VCSANNOTATIONWIDGET_H 00023 #define VCSANNOTATIONWIDGET_H 00024 00025 #include <QtGui/QWidget> 00026 00027 #include "../vcsexport.h" 00028 00029 class KUrl; 00030 00031 namespace KDevelop 00032 { 00033 class VcsJob; 00034 00035 class KDEVPLATFORMVCS_EXPORT VcsAnnotationWidget : public QWidget 00036 { 00037 Q_OBJECT 00038 public: 00039 VcsAnnotationWidget( const KUrl&, VcsJob*, QWidget* parent = 0 ); 00040 virtual ~VcsAnnotationWidget(); 00041 private: 00042 Q_PRIVATE_SLOT(d, void addAnnotations(KDevelop::VcsJob*) ) 00043 class VcsAnnotationWidgetPrivate* const d; 00044 }; 00045 00046 } 00047 00048 #endif
KDE 4.2 API Reference