Files
seer/SeerEditorOptionsBarWidget.cpp
T

20 lines
432 B
C++
Raw Normal View History

2021-09-01 13:58:59 -05:00
#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;
}