1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 13:37:45 +00:00

Calculator: Add support for copy+paste using system clipboard

This commit is contained in:
Brendan Coles 2021-02-24 14:35:39 +00:00 committed by Andreas Kling
parent 1ba1ca76d8
commit 9bc3c3c962
3 changed files with 29 additions and 1 deletions

View file

@ -36,6 +36,8 @@ class CalculatorWidget final : public GUI::Widget {
C_OBJECT(CalculatorWidget)
public:
virtual ~CalculatorWidget() override;
String get_entry();
void set_entry(double);
private:
CalculatorWidget();