20 lines
318 B
C++
20 lines
318 B
C++
#ifndef UI_BAR_H
|
|
#define UI_BAR_H
|
|
|
|
#include "editor/editor.h"
|
|
#include "io/sysio.h"
|
|
#include "utils/utils.h"
|
|
|
|
struct Bar {
|
|
Coord screen;
|
|
std::string command = "";
|
|
int cursor = 0;
|
|
|
|
Bar(Coord screen) : screen(screen) {}
|
|
void render();
|
|
void handle(KeyEvent event);
|
|
void log(std::string message);
|
|
};
|
|
|
|
#endif
|