KDevelop API Documentation

ctagsdlg.h

Go to the documentation of this file.
00001 /***************************************************************************
00002  *   Copyright (C) 2001-2002 by Bernd Gehrmann                             *
00003  *   bernd@kdevelop.org                                                    *
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 _CTAGSDLG_H_
00013 #define _CTAGSDLG_H_
00014 
00015 #include <qdialog.h>
00016 #include <qdict.h>
00017 #include <qvaluelist.h>
00018 #include "ctagspart.h"
00019 
00020 class QCheckBox;
00021 class QLineEdit;
00022 class QListBox;
00023 class QListBoxItem;
00024 class QListView;
00025 
00026 
00027 class CTagsDialog : public QDialog
00028 {
00029     Q_OBJECT
00030     
00031 public:
00032     CTagsDialog( CTagsPart *part );
00033     ~CTagsDialog();
00034 
00035 private slots:
00036     void slotSearch();
00037     void slotRegenerate();
00038     void slotResultClicked(QListBoxItem *item);
00039     
00040 private:
00041     void updateInfo();
00042     void insertResult(const CTagsTagInfoList &result, const QStringList &kindStringList);
00043     
00044     CTagsMap m_tags;
00045     QStringList m_kindStrings;
00046 
00047     QLineEdit *tagEdit;
00048     QCheckBox *regexpBox;
00049     QListView *kindsListView;
00050     QListBox *resultsListBox;
00051     
00052     CTagsPart *m_part;
00053 };
00054 
00055 #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 Wed Mar 23 00:03:54 2005 by doxygen 1.3.9.1 written by Dimitri van Heesch, © 1997-2003