Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-12 | Applications: Move to Userland/Applications/ | Andreas Kling | |
2021-01-09 | Everywhere: Replace a bundle of dbg with dbgln. | asynts | |
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect. | |||
2021-01-04 | Everywhere: Use GUI::CommonActions::make_about_action() | Andreas Kling | |
2021-01-02 | Spreadsheet: Drop all references to example windows when closing them | AnotherTest | |
Fixes #4716. | |||
2020-12-23 | Spreadsheet: Prompt user before closing with unsaved changes | Xavier Cooney | |
2020-12-22 | Spreadsheet: struct Cell => class Cell | AnotherTest | |
Hide private members, and make the odd update() -> sheet->update(cell) -> update(Badge<Sheet>) -> update_data() less odd by removing the update(Badge<Sheet>) step. | |||
2020-11-30 | Spreadsheet: Force-update the spreadsheet widget after pasting | AnotherTest | |
Just updating the sheet will not cause a widget update. | |||
2020-11-08 | Spreadsheet: Add support for copying ranges of cells to other cells | AnotherTest | |
Now the entire range is copied to the area around the target cell, translating the current cursor to the target. | |||
2020-11-03 | Spreadsheet: Enable Drag&Drop and Copy/Paste | AnotherTest | |
These currently only work on the current sheet, in the current Spreadsheet instance, but they're still freakin' cool! | |||
2020-11-02 | Applications: Use pledge and unveil | Brendan Coles | |
2020-11-02 | Applications: Use GUI::Icon::default_icon to set application icon | Brendan Coles | |
2020-10-31 | Spreadsheet: Add Help menu | Brendan Coles | |
2020-10-06 | Spreadsheet: Use new format functions. | asynts | |
In a few places I also simplified a few format strings: -outln("{} item{}", items, items.size() == 1 ? ' ' : 's'); +outln("{} item(s)", items); In my opinion this is more readable and in some places it incorrectly wrote '0 item' which is "fixed" now. In other places the placeholder space looked weird. | |||
2020-08-27 | Base+LibGUI+Spreadsheet: Add icons for Spreadsheet | AnotherTest | |
Also adds a Spreadsheet.af. | |||
2020-08-27 | Spreadsheet: Add support for multiple sheets | AnotherTest | |
This also refactors the js integration stuff to allow sheets to reference each other safely. | |||
2020-08-25 | Spreadsheet: Add "Save As" | AnotherTest | |
2020-08-25 | Spreadsheet: Implement state-preserving saves and loads | AnotherTest | |
2020-08-24 | Spreadsheet: Add back the menubar | AnotherTest | |
2020-08-24 | Spreadsheet: Document runtime functions and add a help window | AnotherTest | |
...that can automatically generate documentation pages from the objects. | |||
2020-08-24 | Spreadsheet: Start making a spreadsheet application | AnotherTest | |