Files
seer/SeerEditorOptionsBarWidget.cpp
T
2021-09-01 13:58:59 -05:00

20 lines
432 B
C++

#include "SeerEditorOptionsBarWidget.h"
SeerEditorOptionsBarWidget::SeerEditorOptionsBarWidget (QWidget* parent) : QWidget(parent) {
// Construct the UI.
setupUi(this);
}
SeerEditorOptionsBarWidget::~SeerEditorOptionsBarWidget () {
}
QToolButton* SeerEditorOptionsBarWidget::fileOpenToolButton () {
return fileOpenTB;
}
QToolButton* SeerEditorOptionsBarWidget::textSearchToolButton () {
return textSearchTB;
}