diff options
author | fiaxh <git@lightrise.org> | 2024-09-15 20:04:52 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2024-09-15 20:15:14 +0200 |
commit | e8f82fd328697542d2ee0233635b694827a5cc79 (patch) | |
tree | b3fe7981ded0f9d570c64a09494734711035b09c /main/src/ui/conversation_titlebar | |
parent | 63ba0bc93636de557ced29c19b2b61eeeab57bf8 (diff) | |
download | dino-e8f82fd328697542d2ee0233635b694827a5cc79.tar.gz dino-e8f82fd328697542d2ee0233635b694827a5cc79.zip |
Code cleanup: Remove broken disable CSD code
Diffstat (limited to 'main/src/ui/conversation_titlebar')
-rw-r--r-- | main/src/ui/conversation_titlebar/conversation_titlebar.vala | 75 |
1 files changed, 2 insertions, 73 deletions
diff --git a/main/src/ui/conversation_titlebar/conversation_titlebar.vala b/main/src/ui/conversation_titlebar/conversation_titlebar.vala index 980d8d72..326528bd 100644 --- a/main/src/ui/conversation_titlebar/conversation_titlebar.vala +++ b/main/src/ui/conversation_titlebar/conversation_titlebar.vala @@ -6,80 +6,9 @@ using Dino.Entities; namespace Dino.Ui { -public interface ConversationTitlebar : Object { - public abstract string? subtitle { get; set; } - public abstract string? title { get; set; } +public class ConversationTitlebar : Object { - public abstract void insert_button(Widget button); - public abstract Widget get_widget(); - - public abstract bool back_button_visible{ get; set; } public signal void back_pressed(); -} - -public class ConversationTitlebarNoCsd : ConversationTitlebar, Object { - - public Box main = new Box(Orientation.HORIZONTAL, 0); - - public string? title { - get { return title_label.label; } - set { this.title_label.label = value; } - } - - public string? subtitle { - get { return subtitle_label.label; } - set { - this.subtitle_label.label = "<span size='small'>" + value + "</span>"; - this.subtitle_label.visible = (value != null); - } - } - - public bool back_button_visible { - get { return back_revealer.reveal_child; } - set { back_revealer.reveal_child = value; } - } - - private Box widgets_box = new Box(Orientation.HORIZONTAL, 7) { margin_start=15, valign=Align.END }; - private Label title_label = new Label("") { ellipsize=EllipsizeMode.END }; - private Label subtitle_label = new Label("") { use_markup=true, ellipsize=EllipsizeMode.END, visible=false }; - private Revealer back_revealer; - - construct { - Box content_box = new Box(Orientation.HORIZONTAL, 0) { margin_start=15, margin_end=10, hexpand=true }; - main.append(content_box); - - back_revealer = new Revealer() { visible = true, transition_type = RevealerTransitionType.SLIDE_RIGHT, transition_duration = 200, can_focus = false, reveal_child = false }; - Button back_button = new Button.from_icon_name("go-previous-symbolic") { visible = true, valign = Align.CENTER, use_underline = true }; - back_button.get_style_context().add_class("image-button"); - back_button.clicked.connect(() => back_pressed()); - back_revealer.set_child(back_button); - content_box.append(back_revealer); - - Box titles_box = new Box(Orientation.VERTICAL, 0) { valign=Align.CENTER, hexpand=true }; - content_box.append(titles_box); - - titles_box.append(title_label); - subtitle_label.attributes = new AttrList(); - subtitle_label.add_css_class("dim-label"); - titles_box.append(subtitle_label); - - content_box.append(widgets_box); - } - - public ConversationTitlebarNoCsd() { - main.add_css_class("dino-header-right"); - } - - public void insert_button(Widget button) { - widgets_box.prepend(button); - } - - public Widget get_widget() { - return main; - } -} - -public class ConversationTitlebarCsd : ConversationTitlebar, Object { public new string? title { get { return title_label.label; } set { title_label.label = value; } } public new string? subtitle { get { return subtitle_label.label; } set { subtitle_label.label = value; subtitle_label.visible = (value != null); } } @@ -93,7 +22,7 @@ public class ConversationTitlebarCsd : ConversationTitlebar, Object { private Label subtitle_label = new Label("") { use_markup=true, ellipsize=EllipsizeMode.END, visible=false }; private Revealer back_revealer; - public ConversationTitlebarCsd() { + public ConversationTitlebar() { Box titles_box = new Box(Orientation.VERTICAL, 0) { valign=Align.CENTER }; title_label.attributes = new AttrList(); title_label.attributes.insert(Pango.attr_weight_new(Weight.BOLD)); |