File indexing completed on 2024-04-28 16:26:31

0001 /**************************************************************************
0002 *   Copyright (C) 2007-2011 by Michel Ludwig (michel.ludwig@kdemail.net)  *
0003 *                 2011 by Felix Mauch (felix_mauch@web.de)                *
0004 ***************************************************************************/
0005 
0006 /**************************************************************************
0007 *                                                                         *
0008 *   This program is free software; you can redistribute it and/or modify  *
0009 *   it under the terms of the GNU General Public License as published by  *
0010 *   the Free Software Foundation; either version 2 of the License, or     *
0011 *   (at your option) any later version.                                   *
0012 *                                                                         *
0013 ***************************************************************************/
0014 
0015 #ifndef GENERALCONFIGWIDGET_H
0016 #define GENERALCONFIGWIDGET_H
0017 
0018 #include <QWidget>
0019 
0020 #include "ui_generalconfigwidget.h"
0021 
0022 class KileWidgetGeneralConfig : public QWidget, public Ui::KileWidgetGeneralConfig
0023 {
0024     Q_OBJECT
0025 
0026 public:
0027     explicit KileWidgetGeneralConfig(QWidget *parent = Q_NULLPTR);
0028     ~KileWidgetGeneralConfig();
0029 
0030 private Q_SLOTS:
0031     void selectDefaultProjectLocation();
0032 };
0033 
0034 #endif