ladybird/Widgets
Andreas Kling 7a0a7abc52 Try out a signal-like system like this:
auto* b = new Button;
b->onClick = [] (Button&) {
    printf("The button was clicked!\n");
};
2018-10-13 23:01:06 +02:00
..
.gitignore Intense hacking on Widgets. 2018-10-10 16:49:36 +02:00
AbstractScreen.cpp Move windowing stuff from AbstractScreen to WindowManager. 2018-10-12 01:11:38 +02:00
AbstractScreen.h Move windowing stuff from AbstractScreen to WindowManager. 2018-10-12 01:11:38 +02:00
Button.cpp Try out a signal-like system like this: 2018-10-13 23:01:06 +02:00
Button.h Try out a signal-like system like this: 2018-10-13 23:01:06 +02:00
CBitmap.cpp Add a CBitmap class. The C is for Courage. 2018-10-12 12:49:45 +02:00
CBitmap.h Add a CBitmap class. The C is for Courage. 2018-10-12 12:49:45 +02:00
CheckBox.cpp Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
CheckBox.h Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
ClockWidget.cpp Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
ClockWidget.h Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
Color.h Some color cleanup. 2018-10-12 23:02:23 +02:00
ColorSDL.cpp Some color cleanup. 2018-10-12 23:02:23 +02:00
Event.h Start working on a simple TextBox widget. 2018-10-13 22:46:34 +02:00
EventLoop.cpp Use Font in more places. 2018-10-11 23:59:39 +02:00
EventLoop.h Start working on a Widgets library. 2018-10-10 15:12:38 +02:00
EventLoopSDL.cpp Start working on a simple TextBox widget. 2018-10-13 22:46:34 +02:00
EventLoopSDL.h Improve KeyEvent a bit. 2018-10-12 20:55:06 +02:00
Font.cpp Improve KeyEvent a bit. 2018-10-12 20:55:06 +02:00
Font.h Add a CBitmap class. The C is for Courage. 2018-10-12 12:49:45 +02:00
FrameBufferSDL.cpp Intense hacking on Widgets. 2018-10-10 16:49:36 +02:00
FrameBufferSDL.h Intense hacking on Widgets. 2018-10-10 16:49:36 +02:00
Label.cpp Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
Label.h Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
ListBox.cpp Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
ListBox.h Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
Makefile Start working on a simple TextBox widget. 2018-10-13 22:46:34 +02:00
Object.cpp Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
Object.h Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
Painter.cpp More work on focus. 2018-10-13 20:59:25 +02:00
Painter.h More work on focus. 2018-10-13 20:59:25 +02:00
Peanut8x8.h Rage hacking on TerminalWidget. 2018-10-11 12:33:03 +02:00
Peanut8x10.h Improve the "k" in Peanut8x10 a bit. 2018-10-12 23:12:17 +02:00
Point.h Window contents move along with the window! 2018-10-12 02:41:27 +02:00
Rect.h Start working on a simple TextBox widget. 2018-10-13 22:46:34 +02:00
RootWidget.cpp Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
RootWidget.h Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
Size.h Add a Painter::drawBitmap() and make Painter::drawText() use it. 2018-10-12 12:29:58 +02:00
TerminalWidget.cpp Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
TerminalWidget.h Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
test.cpp Try out a signal-like system like this: 2018-10-13 23:01:06 +02:00
TextBox.cpp Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
TextBox.h Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
Widget.cpp Use fooEvent() type names for the virtual event handlers. 2018-10-13 22:51:50 +02:00
Widget.h Try out a signal-like system like this: 2018-10-13 23:01:06 +02:00
Window.cpp More work on focus. 2018-10-13 20:59:25 +02:00
Window.h More work on focus. 2018-10-13 20:59:25 +02:00
WindowManager.cpp Implement basic focus. 2018-10-13 17:52:47 +02:00
WindowManager.h Let the WindowManager track the active window. 2018-10-13 17:42:43 +02:00