1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
From: Gabriele Musco <gabmus@disroot.org>
Date: Fri, 26 May 2023 07:11:01 +0200
Subject: upgrade blueprint 0.8 syntax
(cherry picked from commit d099fda0c62e338080061683a154f711cc487b30)
---
data/ui/add_feed_popover.blp | 8 ++++----
data/ui/empty_state.blp | 2 +-
data/ui/filter_view.blp | 6 +++---
data/ui/left_headerbar.blp | 6 +++---
data/ui/main_leaflet.blp | 18 +++++++++---------
data/ui/manage_feeds_headerbar.blp | 2 +-
data/ui/manage_tags_content.blp | 10 +++++-----
data/ui/manage_tags_listbox_row.blp | 4 ++--
data/ui/right_headerbar.blp | 10 +++++-----
data/ui/sidebar_listbox_row.blp | 2 +-
data/ui/webview.blp | 8 ++++----
gfeeds/base_app.py | 2 +-
12 files changed, 39 insertions(+), 39 deletions(-)
diff --git a/data/ui/add_feed_popover.blp b/data/ui/add_feed_popover.blp
index 13806f5..b61f2ea 100644
--- a/data/ui/add_feed_popover.blp
+++ b/data/ui/add_feed_popover.blp
@@ -1,6 +1,6 @@
using Gtk 4.0;
-template AddFeedPopover : Gtk.Popover {
+template $AddFeedPopover : Gtk.Popover {
autohide: true;
Gtk.Box container_box {
width-request: 290;
@@ -18,13 +18,13 @@ template AddFeedPopover : Gtk.Popover {
placeholder-text: 'https://…';
input-purpose: url;
hexpand: true;
- activate => on_url_entry_activate();
- changed => on_url_entry_changed();
+ activate => $on_url_entry_activate();
+ changed => $on_url_entry_changed();
}
Gtk.Button confirm_btn {
styles ['suggested-action']
label: _("Add");
- clicked => on_confirm_btn_clicked();
+ clicked => $on_confirm_btn_clicked();
}
}
Gtk.Revealer already_subscribed_revealer {
diff --git a/data/ui/empty_state.blp b/data/ui/empty_state.blp
index dbdbf2c..a9c91b9 100644
--- a/data/ui/empty_state.blp
+++ b/data/ui/empty_state.blp
@@ -1,7 +1,7 @@
using Gtk 4.0;
using Adw 1;
-template EmptyState : Adw.Bin {
+template $EmptyState : Adw.Bin {
Adw.StatusPage {
styles ['navigation-sidebar']
title: _("Let's get started");
diff --git a/data/ui/filter_view.blp b/data/ui/filter_view.blp
index 7b5e0a3..9c060d3 100644
--- a/data/ui/filter_view.blp
+++ b/data/ui/filter_view.blp
@@ -2,7 +2,7 @@ using Gtk 4.0;
using Adw 1;
-template FilterView : Adw.Bin {
+template $FilterView : Adw.Bin {
styles ['background']
ScrolledWindow {
hscrollbar-policy: never;
@@ -13,13 +13,13 @@ template FilterView : Adw.Bin {
ListBox all_listbox {
styles ['navigation-sidebar']
selection-mode: single;
- row-activated => on_all_row_activated();
+ row-activated => $on_all_row_activated();
}
Separator { orientation: horizontal; margin-start: 6; margin-end: 6; }
ListBox tags_listbox {
styles ['navigation-sidebar']
selection-mode: single;
- row-activated => on_tags_row_activated();
+ row-activated => $on_tags_row_activated();
}
Separator { orientation: horizontal; margin-start: 6; margin-end: 6; }
Adw.Bin feeds_listbox_bin {}
diff --git a/data/ui/left_headerbar.blp b/data/ui/left_headerbar.blp
index 113a839..10e0195 100644
--- a/data/ui/left_headerbar.blp
+++ b/data/ui/left_headerbar.blp
@@ -20,7 +20,7 @@ menu generalMenu {
}
}
-template LeftHeaderbar : WindowHandle {
+template $LeftHeaderbar : WindowHandle {
vexpand: false; hexpand: true;
Adw.HeaderBar left_headerbar {
[title] Adw.Bin {}
@@ -40,7 +40,7 @@ template LeftHeaderbar : WindowHandle {
[end] Button refresh_btn {
tooltip-text: _("Refresh");
icon-name: 'view-refresh-symbolic';
- clicked => on_refresh_btn_clicked();
+ clicked => $on_refresh_btn_clicked();
}
[end] ToggleButton search_btn {
tooltip-text: _("Search");
@@ -50,7 +50,7 @@ template LeftHeaderbar : WindowHandle {
tooltip-text: _("There Are Errors");
icon-name: 'dialog-warning-symbolic';
visible: false;
- clicked => show_errors_dialog();
+ clicked => $show_errors_dialog();
}
}
}
diff --git a/data/ui/main_leaflet.blp b/data/ui/main_leaflet.blp
index c2e49f5..8fe5d27 100644
--- a/data/ui/main_leaflet.blp
+++ b/data/ui/main_leaflet.blp
@@ -1,20 +1,20 @@
using Gtk 4.0;
using Adw 1;
-template MainLeaflet : Adw.Bin {
+template $MainLeaflet : Adw.Bin {
Adw.Leaflet leaflet {
homogeneous: false;
can-navigate-back: true;
transition-type: over;
visible-child: left_box;
- notify::folded => on_leaflet_folded();
+ notify::folded => $on_leaflet_folded();
Adw.LeafletPage left_page {
child: Gtk.Box left_box {
hexpand: false;
orientation: vertical;
width-request: 360;
height-request: 100;
- .LeftHeaderbar left_headerbar {
+ $LeftHeaderbar left_headerbar {
searchbar: searchbar;
}
SearchBar searchbar {
@@ -50,9 +50,9 @@ template MainLeaflet : Adw.Bin {
reveal-flap: false;
swipe-to-open: true;
swipe-to-close: true;
- [flap] .FilterView filter_view {}
- [content] .StackWithEmptyState sidebar_stack {
- main-widget: .GFeedsSidebar sidebar {
+ [flap] $FilterView filter_view {}
+ [content] $StackWithEmptyState sidebar_stack {
+ main-widget: $GFeedsSidebar sidebar {
};
}
@@ -66,11 +66,11 @@ template MainLeaflet : Adw.Bin {
Adw.LeafletPage right_page {
child: Gtk.Box right_box {
orientation: vertical;
- .RightHeaderbar right_headerbar {
+ $RightHeaderbar right_headerbar {
webview: webview;
- go_back => on_back_btn_clicked();
+ go_back => $on_back_btn_clicked();
}
- .GFeedsWebView webview {}
+ $GFeedsWebView webview {}
};
}
}
diff --git a/data/ui/manage_feeds_headerbar.blp b/data/ui/manage_feeds_headerbar.blp
index 8e862a9..ea130ec 100644
--- a/data/ui/manage_feeds_headerbar.blp
+++ b/data/ui/manage_feeds_headerbar.blp
@@ -1,7 +1,7 @@
using Gtk 4.0;
using Adw 1;
-template ManageFeedsHeaderbar : Gtk.HeaderBar {
+template $ManageFeedsHeaderbar : Gtk.HeaderBar {
show-title-buttons: true;
[title] Adw.WindowTitle {
title: _("Manage Feeds");
diff --git a/data/ui/manage_tags_content.blp b/data/ui/manage_tags_content.blp
index b6b009f..b47f99d 100644
--- a/data/ui/manage_tags_content.blp
+++ b/data/ui/manage_tags_content.blp
@@ -1,7 +1,7 @@
using Gtk 4.0;
using Adw 1;
-template ManageTagsContent : Adw.Bin {
+template $ManageTagsContent : Adw.Bin {
styles ['background']
Box {
spacing: 6;
@@ -16,14 +16,14 @@ template ManageTagsContent : Adw.Bin {
Entry tags_entry {
placeholder-text: _("New tag name…");
hexpand: true;
- changed => on_tags_entry_changed();
- activate => on_submit_add_tag();
+ changed => $on_tags_entry_changed();
+ activate => $on_submit_add_tag();
}
Button add_tag_btn {
styles ['suggested-action']
tooltip-text: _("Add Tag");
icon-name: 'list-add-symbolic';
- clicked => on_submit_add_tag();
+ clicked => $on_submit_add_tag();
}
}
Separator { orientation: horizontal; }
@@ -34,7 +34,7 @@ template ManageTagsContent : Adw.Bin {
ListBox tags_listbox {
styles ['navigation-sidebar']
selection-mode: none;
- row-activated => on_tags_listbox_row_activated();
+ row-activated => $on_tags_listbox_row_activated();
[placeholder] Adw.StatusPage {
title: _("There are no tags yet");
description: _("Add some using the entry above");
diff --git a/data/ui/manage_tags_listbox_row.blp b/data/ui/manage_tags_listbox_row.blp
index 21124d2..0350c8f 100644
--- a/data/ui/manage_tags_listbox_row.blp
+++ b/data/ui/manage_tags_listbox_row.blp
@@ -1,6 +1,6 @@
using Gtk 4.0;
-template ManageTagsListboxRow : ListBoxRow {
+template $ManageTagsListboxRow : ListBoxRow {
Box main_box {
spacing: 6;
orientation: horizontal;
@@ -12,7 +12,7 @@ template ManageTagsListboxRow : ListBoxRow {
styles ['destructive-action']
margin-start: 12;
icon-name: 'user-trash-symbolic';
- clicked => on_delete_btn_clicked();
+ clicked => $on_delete_btn_clicked();
}
}
}
diff --git a/data/ui/right_headerbar.blp b/data/ui/right_headerbar.blp
index 3249858..b033c20 100644
--- a/data/ui/right_headerbar.blp
+++ b/data/ui/right_headerbar.blp
@@ -42,25 +42,25 @@ PopoverMenu extra_popover {
styles ['flat', 'circular']
icon-name: 'zoom-out-symbolic';
tooltip-text: _("Zoom Out");
- clicked => on_zoom_out_btn_clicked();
+ clicked => $on_zoom_out_btn_clicked();
}
Button zoom_reset_btn {
styles ['flat']
label: '100%';
width-request: 80;
tooltip-text: _("Reset Zoom");
- clicked => on_zoom_reset_btn_clicked();
+ clicked => $on_zoom_reset_btn_clicked();
}
Button zoom_in_btn {
styles ['flat', 'circular']
icon-name: 'zoom-in-symbolic';
tooltip-text: _("Zoom In");
- clicked => on_zoom_in_btn_clicked();
+ clicked => $on_zoom_in_btn_clicked();
}
}
}
-template RightHeaderbar : WindowHandle {
+template $RightHeaderbar : WindowHandle {
vexpand: false; hexpand: true;
Adw.HeaderBar right_headerbar {
hexpand: true;
@@ -89,7 +89,7 @@ template RightHeaderbar : WindowHandle {
visible: false;
tooltip-text: _("Back to Articles");
icon-name: 'go-previous-symbolic';
- clicked => on_back_btn_clicked();
+ clicked => $on_back_btn_clicked();
}
MenuButton view_mode_menu_btn {
sensitive: false;
diff --git a/data/ui/sidebar_listbox_row.blp b/data/ui/sidebar_listbox_row.blp
index 2e873bd..fbeb032 100644
--- a/data/ui/sidebar_listbox_row.blp
+++ b/data/ui/sidebar_listbox_row.blp
@@ -7,7 +7,7 @@ menu row_menu {
}
}
-template SidebarRow : Box {
+template $SidebarRow : Box {
spacing: 6;
orientation: vertical;
margin-top: 12; margin-bottom: 12;
diff --git a/data/ui/webview.blp b/data/ui/webview.blp
index c1c68de..55dc2b3 100644
--- a/data/ui/webview.blp
+++ b/data/ui/webview.blp
@@ -2,7 +2,7 @@ using Gtk 4.0;
using WebKit 6.0;
using Adw 1;
-template GFeedsWebView : Stack {
+template $GFeedsWebView : Stack {
width-request: 360; height-request: 400;
hexpand: true; vexpand: true;
transition-type: crossfade;
@@ -40,9 +40,9 @@ template GFeedsWebView : Stack {
hexpand: true; vexpand: true;
WebKit.WebView webkitview {
hexpand: true; vexpand: true;
- load-changed => on_load_changed();
- decide-policy => on_decide_policy();
- mouse-target-changed => on_mouse_target_changed();
+ load-changed => $on_load_changed();
+ decide-policy => $on_decide_policy();
+ mouse-target-changed => $on_mouse_target_changed();
}
}
}
diff --git a/gfeeds/base_app.py b/gfeeds/base_app.py
index 0ace634..a414cf2 100644
--- a/gfeeds/base_app.py
+++ b/gfeeds/base_app.py
@@ -24,7 +24,7 @@ class AppAction:
self.state_type = state_type
self.state_default = state_default
- assert not self.stateful or self.state_default is not None
+ assert (not self.stateful or self.state_default is not None)
def get_action(self):
action = None
|