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

0001 /***************************************************************************
0002     begin                : dim jui 14 2002
0003     copyright            : (C) 2002 - 2003 by Pascal Brachet, (C) 2003 Jeroen Wijnhout
0004     email                : Jeroen.Wijnhout@kdemail.net
0005  ***************************************************************************/
0006 
0007 /***************************************************************************
0008  *                                                                         *
0009  *   This program is free software; you can redistribute it and/or modify  *
0010  *   it under the terms of the GNU General Public License as published by  *
0011  *   the Free Software Foundation; either version 2 of the License, or     *
0012  *   (at your option) any later version.                                   *
0013  *                                                                         *
0014  ***************************************************************************/
0015 
0016 #ifndef TABBINGDIALOG_H
0017 #define TABBINGDIALOG_H
0018 
0019 #include "kilewizard.h"
0020 #include "kileinfo.h"
0021 
0022 #include "ui_tabbingdialog_base.h"
0023 
0024 /**
0025  * @author Pascal Brachet
0026  * @author Jeroen Wijnhout
0027  */
0028 namespace KileDialog
0029 {
0030 
0031 class QuickTabbing : public Wizard
0032 {
0033     Q_OBJECT
0034 
0035 public:
0036     QuickTabbing(KConfig *config, KileInfo *info, QWidget *parent = Q_NULLPTR,
0037                  const char *name = Q_NULLPTR, const QString &caption = QString());
0038     ~QuickTabbing();
0039 
0040 public Q_SLOTS:
0041     void onAccepted();
0042 
0043 private:
0044     KileInfo *m_info;
0045     Ui::TabbingDialog m_tabbingDialog;
0046 };
0047 
0048 }
0049 
0050 #endif