moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kvoctrain / kvoctrain / docprop-dialogs / DocOptionsPage.cpp
blob737a34af4a45512621d94765fbab4ad4ccd901b6
1 /***************************************************************************
3 internal doc options dialog class
5 -----------------------------------------------------------------------
7 begin : Thu Nov 25 12:00:53 MET 1999
9 copyright : (C) 1999-2001 Ewald Arnold <kvoctrain@ewald-arnold.de>
10 (C) 2001 The KDE-EDU team
11 (C) 2005 Peter Hedlund <peter@peterandlinda.com>
13 -----------------------------------------------------------------------
15 ***************************************************************************
17 ***************************************************************************
18 * *
19 * This program is free software; you can redistribute it and/or modify *
20 * it under the terms of the GNU General Public License as published by *
21 * the Free Software Foundation; either version 2 of the License, or *
22 * (at your option) any later version. *
23 * *
24 ***************************************************************************/
27 #include "DocOptionsPage.h"
29 #include <qcheckbox.h>
31 DocOptionsPage::DocOptionsPage(bool sort, QWidget *parent, const char *name):DocOptionsPageForm(parent, name)
33 sorter = sort;
34 docsort->setChecked(sort);
36 connect( docsort, SIGNAL(toggled(bool)), SLOT(docSortToggled(bool)) );
39 void DocOptionsPage::docSortToggled(bool state)
41 sorter = state;
44 #include "DocOptionsPage.moc"