swift
filterdialog.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2013 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #ifndef SWIFT_GUI_FILTERS_FILTERDIALOG_H
7 #define SWIFT_GUI_FILTERS_FILTERDIALOG_H
8 
9 #include <QDialog>
10 #include <QObject>
11 
12 #include "gui/swiftguiexport.h"
13 
14 class QWidget;
15 
16 namespace swift::gui::filters
17 {
19  class SWIFT_GUI_EXPORT CFilterDialog : public QDialog
20  {
21  Q_OBJECT
22 
23  public:
25  CFilterDialog(QWidget *parent = nullptr);
26 
28  virtual ~CFilterDialog();
29 
30  private:
32  void onStyleSheetChanged();
33  };
34 
35 } // namespace swift::gui::filters
36 
37 #endif // SWIFT_GUI_FILTERS_FILTERDIALOG_H
Base for filter dialog.
Definition: filterdialog.h:20
Filter to search data sets.
#define SWIFT_GUI_EXPORT
Export a class or function from the library.