forked from epasveer/seer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSeerAdaExceptionsBrowserWidget.h
32 lines (22 loc) · 1.01 KB
/
SeerAdaExceptionsBrowserWidget.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once
#include <QtWidgets/QWidget>
#include <QtCore/QString>
#include "ui_SeerAdaExceptionsBrowserWidget.h"
class SeerAdaExceptionsBrowserWidget : public QWidget, protected Ui::SeerAdaExceptionsBrowserWidgetForm {
Q_OBJECT
public:
explicit SeerAdaExceptionsBrowserWidget (QWidget* parent = 0);
~SeerAdaExceptionsBrowserWidget ();
public slots:
void handleText (const QString& text);
void refresh ();
protected slots:
void handleSearchLineEdit (const QString& text);
void handleAddCatchpointToolButtonClicked ();
signals:
void refreshAdaExceptions ();
void insertCatchpoint (QString catchpoint);
protected:
void showEvent (QShowEvent* event);
private:
};