umbrello  2.32.0
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
umldocfinder.h
Go to the documentation of this file.
1 /***************************************************************************
2  * This program is free software; you can redistribute it and/or modify *
3  * it under the terms of the GNU General Public License as published by *
4  * the Free Software Foundation; either version 2 of the License, or *
5  * (at your option) any later version. *
6  * *
7  * copyright (C) 2014-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef UMLDOCFINDER_H
12 #define UMLDOCFINDER_H
13 
14 #include "umlfinder.h"
15 #include "umlscene.h"
16 
17 class UMLSceneFinder;
18 
19 #include <QList>
20 
26 class UMLDocFinder : public UMLFinder
27 {
28 public:
29  UMLDocFinder();
30  virtual ~UMLDocFinder();
31  virtual int collect(Category category, const QString &text);
32 
33 public slots:
34  virtual Result displayNext();
35  virtual Result displayPrevious();
36 protected:
37  QList<UMLSceneFinder> m_sceneFinder;
38 };
39 
40 #endif // UMLDOCFINDER_H
Definition: umldocfinder.h:27
virtual Result displayPrevious()
Definition: umldocfinder.cpp:67
virtual ~UMLDocFinder()
Definition: umldocfinder.cpp:26
QList< UMLSceneFinder > m_sceneFinder
Definition: umldocfinder.h:37
virtual Result displayNext()
Definition: umldocfinder.cpp:47
virtual int collect(Category category, const QString &text)
Definition: umldocfinder.cpp:30
UMLDocFinder()
Definition: umldocfinder.cpp:21
Definition: umlfinder.h:28
Result
Definition: umlfinder.h:32
Category
Definition: umlfinder.h:30
Definition: umlscenefinder.h:24