KDevelop API Documentation

doxygenconfigwidget.h

Go to the documentation of this file.
00001 /***************************************************************************
00002  *   Copyright (C) 2000 by Dimitri van Heesch                              *
00003  *   dimitri@stack.nl                                                      *
00004  *   Copyright (C) 2001 by Bernd Gehrmann                                  *
00005  *   bernd@kdevelop.org                                                    *
00006  *                                                                         *
00007  *   This program is free software; you can redistribute it and/or modify  *
00008  *   it under the terms of the GNU General Public License as published by  *
00009  *   the Free Software Foundation; either version 2 of the License, or     *
00010  *   (at your option) any later version.                                   *
00011  *                                                                         *
00012  ***************************************************************************/
00013 
00014 #ifndef _DOXYGENCONFIGWIDGET_H_
00015 #define _DOXYGENCONFIGWIDGET_H_
00016 
00017 #include <qtabwidget.h>
00018 #include <qdict.h>
00019 #include <qptrlist.h>
00020 
00021 class IInput;
00022 
00023 
00024 class DoxygenConfigWidget : public QTabWidget
00025 {
00026     Q_OBJECT
00027     
00028 public:
00029     DoxygenConfigWidget( const QString &fileName, QWidget *parent=0, const char *name=0 );
00030     ~DoxygenConfigWidget();
00031 
00032 public slots:
00033     void accept();
00034 
00035 private slots:
00036     void toggle(const QString&, bool);
00037     void changed();
00038 
00039 private:
00040     QSize sizeHint() const;
00041     void loadFile();
00042     void saveFile();
00043     void init();
00044     void addDependency(QDict<QObject> *switches,
00045                        const QCString &dep, const QCString &name);
00046 
00047     QString m_fileName;
00048     bool m_hasChanged;
00049     QDict<IInput> *m_inputWidgets;
00050     QDict< QPtrList<IInput> > *m_dependencies;
00051     QDict<QObject> *m_switches;
00052 };
00053 
00054 #endif
KDE Logo
This file is part of the documentation for KDevelop Version 3.1.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Tue Feb 22 09:22:40 2005 by doxygen 1.3.9.1 written by Dimitri van Heesch, © 1997-2003