|
|
// ProgressI - internal stuff for fun::Progress which has to be in a header // Copyright (C) 2000-2003 bozo & sgbeal @users.sourceforge.net // // 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef _FUN_PROGRESSI_H #define _FUN_PROGRESSI_H #include// grumble namespace fun { // This is just stuff internal to Progress.cpp which has to be in a header // so that moc can find it. // An internal class for detecting when the dialog has been closed, and for // intercepting clicks on the cancel button so that we can handle them // differently. class InternalProgressHelper : public QObject { Q_OBJECT public slots: void dialogDeleted(); void cancelBtnClicked(); void cancelBtnDeleted(); }; } // namespace fun #endif // _FUN_PROGRESSI_H
| Generated by: stephan on cheyenne on Mon Aug 11 14:06:52 2003, using kdoc 2.0a54. |