mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
20 lines
432 B
C++
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;
|
|
}
|
|
|