kword
KWSortDia.h
00001 /* This file is part of the KDE project 00002 Copyright (C) 2002 Montel Laurent <lmontel@mandrakesoft.com> 00003 This library is free software; you can redistribute it and/or 00004 modify it under the terms of the GNU Library General Public 00005 License as published by the Free Software Foundation; either 00006 version 2 of the License, or (at your option) any later version. 00007 00008 This library is distributed in the hope that it will be useful, 00009 but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 Library General Public License for more details. 00012 00013 You should have received a copy of the GNU Library General Public License 00014 along with this library; see the file COPYING.LIB. If not, write to 00015 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00016 * Boston, MA 02110-1301, USA. 00017 */ 00018 00019 #ifndef __sortdia__ 00020 #define __sortdia__ 00021 00022 #include <kdialogbase.h> 00023 #include "defs.h" 00024 class QRadioButton; 00025 00026 class KWSortDia : public KDialogBase 00027 { 00028 Q_OBJECT 00029 public: 00030 KWSortDia( QWidget *parent, const char* name ); 00031 SortType getSortType() const; 00032 00033 private: 00034 QRadioButton *m_increase; 00035 QRadioButton *m_decrease; 00036 }; 00037 00038 #endif