parts/closer/closer_dialogimpl.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2003 by Jens Dagerbo * 00003 * jens.dagerbo@swipnet.se * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 ***************************************************************************/ 00011 00012 #ifndef CLOSER_DIALOGIMPL_H 00013 #define CLOSER_DIALOGIMPL_H 00014 00015 #include <kurl.h> 00016 00017 #include "closer_dialog.h" 00018 00019 class CloserDialogImpl : public CloserDialog 00020 { 00021 Q_OBJECT 00022 00023 public: 00024 CloserDialogImpl( KURL::List const & fileList ); 00025 ~CloserDialogImpl(); 00026 00027 KURL::List getCheckedFiles(); 00028 00029 private slots: 00030 void togglePaths( bool ); 00031 }; 00032 00033 #endif 00034