serenity/LibGUI/GStatusBar.h
Andreas Kling dddf45f563 Change String&& arguments to const String& in a couple of places.
String&& is more nuisance than anything, and the codegen improvement is
basically negligible since the underlying type is already retainable.
2019-05-12 14:57:15 +02:00

23 lines
480 B
C++

#pragma once
#include <LibGUI/GWidget.h>
class GLabel;
class GResizeCorner;
class GStatusBar : public GWidget {
public:
explicit GStatusBar(GWidget* parent);
virtual ~GStatusBar() override;
String text() const;
void set_text(const String&);
virtual const char* class_name() const override { return "GStatusBar"; }
private:
virtual void paint_event(GPaintEvent&) override;
GLabel* m_label { nullptr };
GResizeCorner* m_corner { nullptr };
};