Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
pluginifdemo_about.h
1/* pluginifdemo_about.h
2 *
3 * Author: Roland Knall <[email protected]>
4 *
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <[email protected]>
7 * Copyright 1998 Gerald Combs
8 *
9 * SPDX-License-Identifier: GPL-2.0-or-later
10 */
11
12#ifndef PLUGINIFDEMO_ABOUT_H_
13#define PLUGINIFDEMO_ABOUT_H_
14
15#include <QWidget>
16#include <QDialog>
17#include <QAbstractButton>
18#include <QPixmap>
19#include <QGraphicsScene>
20
21namespace Ui {
23}
24
28class PluginIFDemo_About : public QDialog
29{
30 Q_OBJECT
31
32public:
37 explicit PluginIFDemo_About(QWidget *parent = 0);
38
43
44private slots:
49 void on_buttonBox_clicked(QAbstractButton *button);
50
51private:
52 Ui::PluginIFDemo_About *ui;
53};
54
55#endif /* PLUGINIFDEMO_ABOUT_H_ */
56
57/*
58 * Editor modelines
59 *
60 * Local Variables:
61 * c-basic-offset: 4
62 * tab-width: 8
63 * indent-tabs-mode: nil
64 * End:
65 *
66 * ex: set shiftwidth=4 tabstop=8 expandtab:
67 * :indentSize=4:tabSize=8:noTabs=true:
68 */
"About" dialog for the Plugin Interface Demo.
Definition pluginifdemo_about.h:29
~PluginIFDemo_About()
Destroys the About dialog and releases the associated UI resources.
Definition pluginifdemo_about.cpp:28