mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
23 lines
511 B
C++
23 lines
511 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
#include "ui_SeerEditorOptionsBarWidget.h"
|
|
|
|
class SeerEditorOptionsBarWidget : public QWidget, protected Ui::SeerEditorOptionsBarWidgetForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerEditorOptionsBarWidget (QWidget* parent = 0);
|
|
~SeerEditorOptionsBarWidget ();
|
|
|
|
QToolButton* fileOpenToolButton ();
|
|
QToolButton* textSearchToolButton ();
|
|
|
|
public slots:
|
|
signals:
|
|
protected:
|
|
private:
|
|
};
|
|
|