mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 18:15:09 +00:00
TextEditor: Add Cut/Copy/Paste placeholder actions.
This commit is contained in:
parent
27b0aab13e
commit
054e4caf49
5 changed files with 21 additions and 0 deletions
|
@ -72,6 +72,18 @@ int main(int argc, char** argv)
|
||||||
text_editor->write_to_file(path);
|
text_editor->write_to_file(path);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
auto cut_action = GAction::create("Cut", { Mod_Ctrl, Key_X }, GraphicsBitmap::load_from_file(GraphicsBitmap::Format::RGBA32, "/res/icons/cut16.rgb", { 16, 16 }), [&] (const GAction&) {
|
||||||
|
dbgprintf("FIXME: Implement Edit/Cut");
|
||||||
|
});
|
||||||
|
|
||||||
|
auto copy_action = GAction::create("Copy", { Mod_Ctrl, Key_C }, GraphicsBitmap::load_from_file(GraphicsBitmap::Format::RGBA32, "/res/icons/copyfile16.rgb", { 16, 16 }), [&] (const GAction&) {
|
||||||
|
dbgprintf("FIXME: Implement Edit/Copy");
|
||||||
|
});
|
||||||
|
|
||||||
|
auto paste_action = GAction::create("Paste", { Mod_Ctrl, Key_V }, GraphicsBitmap::load_from_file(GraphicsBitmap::Format::RGBA32, "/res/icons/paste16.rgb", { 16, 16 }), [&] (const GAction&) {
|
||||||
|
dbgprintf("FIXME: Implement Edit/Paste");
|
||||||
|
});
|
||||||
|
|
||||||
auto menubar = make<GMenuBar>();
|
auto menubar = make<GMenuBar>();
|
||||||
auto app_menu = make<GMenu>("TextEditor");
|
auto app_menu = make<GMenu>("TextEditor");
|
||||||
app_menu->add_action(GAction::create("Quit", { Mod_Alt, Key_F4 }, [] (const GAction&) {
|
app_menu->add_action(GAction::create("Quit", { Mod_Alt, Key_F4 }, [] (const GAction&) {
|
||||||
|
@ -87,6 +99,9 @@ int main(int argc, char** argv)
|
||||||
menubar->add_menu(move(file_menu));
|
menubar->add_menu(move(file_menu));
|
||||||
|
|
||||||
auto edit_menu = make<GMenu>("Edit");
|
auto edit_menu = make<GMenu>("Edit");
|
||||||
|
edit_menu->add_action(cut_action.copy_ref());
|
||||||
|
edit_menu->add_action(copy_action.copy_ref());
|
||||||
|
edit_menu->add_action(paste_action.copy_ref());
|
||||||
menubar->add_menu(move(edit_menu));
|
menubar->add_menu(move(edit_menu));
|
||||||
|
|
||||||
auto help_menu = make<GMenu>("Help");
|
auto help_menu = make<GMenu>("Help");
|
||||||
|
@ -101,6 +116,12 @@ int main(int argc, char** argv)
|
||||||
toolbar->add_action(move(open_action));
|
toolbar->add_action(move(open_action));
|
||||||
toolbar->add_action(move(save_action));
|
toolbar->add_action(move(save_action));
|
||||||
|
|
||||||
|
toolbar->add_separator();
|
||||||
|
|
||||||
|
toolbar->add_action(move(cut_action));
|
||||||
|
toolbar->add_action(move(copy_action));
|
||||||
|
toolbar->add_action(move(paste_action));
|
||||||
|
|
||||||
auto* window = new GWindow;
|
auto* window = new GWindow;
|
||||||
window->set_title(String::format("TextEditor: %s", path.characters()));
|
window->set_title(String::format("TextEditor: %s", path.characters()));
|
||||||
window->set_rect(20, 200, 640, 400);
|
window->set_rect(20, 200, 640, 400);
|
||||||
|
|
BIN
Base/res/icons/cut16.png
Normal file
BIN
Base/res/icons/cut16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 359 B |
BIN
Base/res/icons/cut16.rgb
Normal file
BIN
Base/res/icons/cut16.rgb
Normal file
Binary file not shown.
BIN
Base/res/icons/paste16.png
Normal file
BIN
Base/res/icons/paste16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 391 B |
BIN
Base/res/icons/paste16.rgb
Normal file
BIN
Base/res/icons/paste16.rgb
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue