#pragma once #include #include #include #include "CommandInput.hpp" class MainWindow : public QMainWindow { public: MainWindow(); protected: void keyPressEvent(QKeyEvent *event) override; void toggleURLInput(); void evaluateCommand(QString command); void hideInput(); private: QWebEngineView *web; CommandInput *commandInput; };