aboutsummaryrefslogtreecommitdiff
path: root/include/InputMediator.hpp
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-03-15 19:17:03 +0530
committerAkshay Nair <phenax5@gmail.com>2025-03-15 20:08:30 +0530
commit387cf24e389854ecc97f6236fdd6acbc2486dd52 (patch)
treea51b51de0064fb10685d2da85d11748c4a32ce73 /include/InputMediator.hpp
parent05ae8976a8e1ab5411058de244c4e2fcc87ec369 (diff)
downloadnull-browser-387cf24e389854ecc97f6236fdd6acbc2486dd52.tar.gz
null-browser-387cf24e389854ecc97f6236fdd6acbc2486dd52.zip
Replaced QCompleter with custom implementation
Diffstat (limited to 'include/InputMediator.hpp')
-rw-r--r--include/InputMediator.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/InputMediator.hpp b/include/InputMediator.hpp
index 660d39f..98ae6d2 100644
--- a/include/InputMediator.hpp
+++ b/include/InputMediator.hpp
@@ -24,6 +24,7 @@ public:
void showURLInput(QString url = "", OpenType openType = OpenType::OpenUrl);
void showCommandInput(QString command = "");
+ void showBufferInput(QString command = "");
void hideInputLine();
DELEGATE(webViewStack, openUrl, openUrl)
@@ -58,3 +59,5 @@ private:
};
class CommandEval : public EvaluationType {};
+
+class BufferEval : public EvaluationType {};