Move source into a 'src' directory. Update README.md file for build

instructions.
This commit is contained in:
Ernie Pasveer
2021-09-04 17:02:25 -05:00
parent 22b979a76a
commit 6357b7a0ef
109 changed files with 45 additions and 46 deletions
+19
View File
@@ -0,0 +1,19 @@
#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;
}