/*************************************************************************** ksexportdlg.h ------------------- begin : Thu Feb 10 2000 copyright : (C) 2000 by Kamil Dobkowski email : kamildbk@friko.onet.pl ***************************************************************************/ /*************************************************************************** * * * 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. * * * ***************************************************************************/ #ifndef KSEXPORTDLG_H #define KSEXPORTDLG_H #include #include "../widgets/qsdata.h" #include "ksexportdlginterf.h" class KSChannelList; /** *@author Kamil Dobkowski */ class KSExportDlg : public KSExportDlgInterf { Q_OBJECT public: KSExportDlg(QSData *view, QWidget *parent=0, const char *name=0); ~KSExportDlg(); void saveAll(); protected: static QString m_file_name; KSChannelList *m_chan_list; protected slots: void markChannel(); void chooseFile(); }; #endif