/* * Copyright (C) 1999-2002 Bernd Gehrmann * bernd@mail.berlios.de * Copyright (c) 2003-2008 Christian Loose * * 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. */ #ifndef COMMITDIALOG_H #define COMMITDIALOG_H #include #include namespace Cervisia { class LogMessageEdit; } class KComboBox; class QCheckBox; class KListWidget; class QListWidgetItem; class OrgKdeCervisiaCvsserviceCvsserviceInterface; class KConfig; class CommitDialog : public KDialog { Q_OBJECT public: CommitDialog( KConfig& cfg, OrgKdeCervisiaCvsserviceCvsserviceInterface* service, QWidget *parent=0 ); virtual ~CommitDialog(); void setFileList(const QStringList &list); QStringList fileList() const; void setLogMessage(const QString &msg); QString logMessage() const; void setLogHistory(const QStringList &list); private slots: void comboActivated(int); void fileSelected(QListWidgetItem* item); void fileHighlighted(); void diffClicked(); void useTemplateClicked(); private: void showDiffDialog(const QString& fileName); void checkForTemplateFile(); void addTemplateText(); void removeTemplateText(); KListWidget* m_fileList; Cervisia::LogMessageEdit* edit; KComboBox *combo; QStringList commits; int current_index; QString current_text; int highlightedFile; QCheckBox* m_useTemplateChk; QString m_templateText; KConfig& partConfig; OrgKdeCervisiaCvsserviceCvsserviceInterface* cvsService; // for diff dialog }; #endif // COMMITDIALOG_H // Local Variables: // c-basic-offset: 4 // End: