From f1219aa1292192a25880270aa85005cbea601ab0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fodor=20=C3=81goston?= <fodor.agoston@hallgato.ppke.hu>
Date: Wed, 15 May 2024 23:03:37 +0000
Subject: [PATCH] Delete listbox.hpp

---
 listbox.hpp | 26 --------------------------
 1 file changed, 26 deletions(-)
 delete mode 100644 listbox.hpp

diff --git a/listbox.hpp b/listbox.hpp
deleted file mode 100644
index 26b2e72..0000000
--- a/listbox.hpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef LISTBOX_HPP
-#define LISTBOX_HPP
-#include "graphics.hpp"
-#include "widget.hpp"
-
-class ListBox : public Widget
-{
-protected:
-
-    std::vector<std::string> _s;
-    int _scroll, displaynum;
-
-    int _selected;
-
-
-public:
-    ListBox(Application*,int, int, int,int, std::vector<std::string>);
-
-    void draw() override;
-    void handle(genv::event) override;
-    bool isover(int mouse_x,int mouse_y) override;
-    std::string getter() override;
-
-};
-
-#endif // LISTBOX_HPP
-- 
GitLab