Files
seer/src/SeerEditorOptionsBarWidget.cpp
T
2022-04-02 17:26:28 -05:00

27 lines
528 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::fileCloseToolButton () {
return fileCloseTB;
}
QToolButton* SeerEditorOptionsBarWidget::textSearchToolButton () {
return textSearchTB;
}