-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: tsukinaha <sakuovds@gmail.com>
- Loading branch information
Showing
23 changed files
with
724 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<interface> | ||
<template class="FilterRow" parent="AdwPreferencesRow"> | ||
<property name="selectable">False</property> | ||
<property name="valign">center</property> | ||
<property name="activatable">false</property> | ||
<property name="child"> | ||
<object class="GtkBox" id="header"> | ||
<property name="valign">center</property> | ||
<property name="hexpand">False</property> | ||
<property name="orientation">vertical</property> | ||
<template class="FilterRow" parent="AdwActionRow"> | ||
<property name="activatable">True</property> | ||
<property name="activatable-widget">check</property> | ||
<property name="use-underline">True</property> | ||
<child type="suffix"> | ||
<object class="GtkCheckButton" id="check"> | ||
<signal name="activate" handler="on_check_toggled" swapped="yes"/> | ||
<style> | ||
<class name="header"/> | ||
<class name="selection-mode"/> | ||
</style> | ||
<child> | ||
<object class="GtkBox" id="title_box"> | ||
<property name="orientation">horizontal</property> | ||
<property name="valign">center</property> | ||
<property name="hexpand">True</property> | ||
<property name="spacing">5</property> | ||
<style> | ||
<class name="title"/> | ||
</style> | ||
<child> | ||
<object class="GtkLabel" id="title"> | ||
<property name="ellipsize">none</property> | ||
<property name="label" bind-source="FilterRow" bind-property="title" bind-flags="sync-create"/> | ||
<property name="lines">0</property> | ||
<property name="margin-start">5</property> | ||
<property name="wrap">True</property> | ||
<property name="wrap-mode">word-char</property> | ||
<property name="xalign">0</property> | ||
<attributes> | ||
<attribute name="weight" value="PANGO_WEIGHT_BOLD"/> | ||
</attributes> | ||
<style> | ||
<class name="title"/> | ||
</style> | ||
</object> | ||
</child> | ||
<child> | ||
<object class="GtkButton"> | ||
<signal name="clicked" handler="on_add_button_clicked" swapped="yes"/> | ||
<property name="icon-name">list-add-symbolic</property> | ||
<property name="valign">center</property> | ||
<style> | ||
<class name="circular"/> | ||
<class name="smaller"/> | ||
</style> | ||
</object> | ||
</child> | ||
</object> | ||
</child> | ||
<child> | ||
<object class="GtkBox" id="suffixes"> | ||
<style> | ||
<class name="suffixes"/> | ||
</style> | ||
<child> | ||
<object class="GtkFlowBox" id="flowbox"> | ||
<property name="hexpand">True</property> | ||
<property name="margin-bottom">5</property> | ||
<property name="selection-mode">none</property> | ||
<property name="column-spacing">5</property> | ||
<property name="row-spacing">5</property> | ||
</object> | ||
</child> | ||
</object> | ||
</child> | ||
</object> | ||
</property> | ||
</template> | ||
</interface> | ||
</child> | ||
</template> | ||
</interface> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<interface> | ||
<template parent="AdwNavigationPage" class="FilterDialogSearchPage"> | ||
<property name="title">Filters</property> | ||
<child> | ||
<object class="AdwToolbarView"> | ||
<child type="top"> | ||
<object class="AdwHeaderBar" /> | ||
</child> | ||
<child> | ||
<object class="GtkScrolledWindow"> | ||
<property name="hscrollbar-policy">never</property> | ||
<child> | ||
<object class="GtkListBox" id="listbox"> | ||
<property name="selection-mode">none</property> | ||
<property name="show-separators">true</property> | ||
</object> | ||
</child> | ||
</object> | ||
</child> | ||
</object> | ||
</child> | ||
</template> | ||
</interface> |
Oops, something went wrong.