Compare commits
No commits in common. "b6c6f1e78cda6c7c4fbfd898441acba908b06c53" and "4929424d2aa9f2309f1e0971deb930ea9cbb7246" have entirely different histories.
b6c6f1e78c
...
4929424d2a
5 changed files with 22 additions and 42 deletions
|
@ -28,7 +28,7 @@ void Label::on_paint() {
|
|||
auto geometry = rect().max_geometry();
|
||||
|
||||
painter.source_rgb(style()->foreground());
|
||||
painter.text(geometry, m_text, m_align, PANGO_ELLIPSIZE_END, style()->font_description());
|
||||
painter.text(geometry, m_text, PaintTextAlign::Left, PANGO_ELLIPSIZE_END, style()->font_description());
|
||||
painter.fill();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "Widget.hpp"
|
||||
#include "Painter.hpp"
|
||||
|
||||
namespace Raven {
|
||||
|
||||
|
@ -11,24 +10,15 @@ public:
|
|||
: Widget(WidgetType::Label)
|
||||
, m_text(text) {}
|
||||
|
||||
Label(std::string text, PaintTextAlign align)
|
||||
: Widget(WidgetType::Label)
|
||||
, m_text(text)
|
||||
, m_align(align) {}
|
||||
|
||||
~Label() {}
|
||||
|
||||
void set_text(std::string text);
|
||||
std::string &text() { return m_text; }
|
||||
|
||||
PaintTextAlign &align() { return m_align; }
|
||||
void set_align(PaintTextAlign align) { m_align = align; }
|
||||
protected:
|
||||
void on_paint();
|
||||
void on_init();
|
||||
private:
|
||||
std::string m_text;
|
||||
PaintTextAlign m_align { PaintTextAlign::Left };
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -90,10 +90,6 @@ bool Widget::add_child(std::shared_ptr<Widget> child) {
|
|||
if (child->parent()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (window())
|
||||
window()->start_batch();
|
||||
|
||||
m_children.push_back(child);
|
||||
child->set_parent(this);
|
||||
|
||||
|
@ -102,9 +98,6 @@ bool Widget::add_child(std::shared_ptr<Widget> child) {
|
|||
// after we call set_window() on it.
|
||||
child->set_window(m_window);
|
||||
|
||||
if (window())
|
||||
window()->end_batch();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -73,8 +73,10 @@ bool Window::dispatch_to_main_widget(Event &event) {
|
|||
|
||||
void Window::repaint(Box geometry) {
|
||||
m_did_repaint_during_batch = true;
|
||||
if (m_batches)
|
||||
|
||||
if (m_is_batching) {
|
||||
return;
|
||||
}
|
||||
|
||||
auto event = RepaintRectEvent(true, geometry);
|
||||
dispatch_to_main_widget(event);
|
||||
|
@ -90,8 +92,10 @@ void Window::repaint() {
|
|||
|
||||
void Window::relayout(Widget *target) {
|
||||
m_did_relayout_during_batch = true;
|
||||
if (m_batches)
|
||||
|
||||
if (m_is_batching) {
|
||||
return;
|
||||
}
|
||||
|
||||
auto event = RelayoutSubtreeEvent();
|
||||
target->dispatch_event(event);
|
||||
|
@ -99,8 +103,10 @@ void Window::relayout(Widget *target) {
|
|||
|
||||
void Window::relayout() {
|
||||
m_did_relayout_during_batch = true;
|
||||
if (m_batches)
|
||||
|
||||
if (m_is_batching) {
|
||||
return;
|
||||
}
|
||||
|
||||
auto event = RelayoutSubtreeEvent();
|
||||
dispatch_to_main_widget(event);
|
||||
|
@ -112,29 +118,20 @@ void Window::reflow() {
|
|||
}
|
||||
|
||||
void Window::start_batch() {
|
||||
m_batches++;
|
||||
m_is_batching = true;
|
||||
m_did_relayout_during_batch = false;
|
||||
m_did_repaint_during_batch = false;
|
||||
}
|
||||
|
||||
void Window::end_batch() {
|
||||
if (m_batches < 1)
|
||||
return;
|
||||
|
||||
// we are only interested in performing batch operations for the last batch
|
||||
if (m_batches > 1) {
|
||||
m_batches--;
|
||||
return;
|
||||
}
|
||||
|
||||
m_batches = 0;
|
||||
|
||||
if (m_is_batching) {
|
||||
m_is_batching = false;
|
||||
if (m_did_relayout_during_batch) {
|
||||
reflow();
|
||||
} else if (m_did_repaint_during_batch) {
|
||||
repaint();
|
||||
}
|
||||
|
||||
m_did_relayout_during_batch = false;
|
||||
m_did_repaint_during_batch = false;
|
||||
}
|
||||
}
|
||||
|
||||
void Window::run(bool block) {
|
||||
|
|
|
@ -56,9 +56,9 @@ private:
|
|||
Box m_rect { 0, 0, 800, 600 };
|
||||
Painter m_painter {};
|
||||
Cairo::RefPtr<Cairo::XlibSurface> m_xlib_surface { nullptr };
|
||||
int m_batches { 1 };
|
||||
bool m_is_batching { true };
|
||||
bool m_did_relayout_during_batch { true };
|
||||
bool m_did_repaint_during_batch { false };
|
||||
bool m_did_relayout_during_batch { false };
|
||||
|
||||
Display *m_x_display { nullptr };
|
||||
|
||||
|
|
Loading…
Reference in a new issue