umbrello  2.32.3
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
finddialog.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 FINDDIALOG_H
12 #define FINDDIALOG_H
13 
14 #include "ui_finddialog.h"
15 
16 #include "singlepagedialogbase.h"
17 #include "umlfinder.h"
18 
24 class FindDialog : public SinglePageDialogBase, private Ui::FindDialog
25 {
26  Q_OBJECT
27 public:
28  explicit FindDialog(QWidget *parent = 0);
29  ~FindDialog();
30  QString text();
33 
34 protected:
35  void showEvent(QShowEvent *event);
36 
37 private slots:
38  void slotFilterButtonClicked(int button);
39 };
40 
41 #endif // FINDDIALOG_H
Definition: finddialog.h:25
QString text()
Definition: finddialog.cpp:32
UMLFinder::Category category()
Definition: finddialog.cpp:55
void showEvent(QShowEvent *event)
Definition: finddialog.cpp:89
void slotFilterButtonClicked(int button)
Definition: finddialog.cpp:77
UMLFinder::Filter filter()
Definition: finddialog.cpp:41
~FindDialog()
Definition: finddialog.cpp:23
FindDialog(QWidget *parent=0)
Definition: finddialog.cpp:13
Definition: singlepagedialogbase.h:36
Category
Definition: umlfinder.h:30
Filter
Definition: umlfinder.h:31