Skip to content
Snippets Groups Projects
Commit f1219aa1 authored by Fodor Ágoston's avatar Fodor Ágoston
Browse files

Delete listbox.hpp

parent 38ef7e3b
No related branches found
No related tags found
No related merge requests found
#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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment