File: browser-stack.vala

package info (click to toggle)
dconf-editor 49.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,904 kB
  • sloc: xml: 446; sh: 21; makefile: 4
file content (270 lines) | stat: -rw-r--r-- 9,806 bytes parent folder | download | duplicates (3)
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
/*
  This file is part of Dconf Editor

  Dconf Editor is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  Dconf Editor is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with Dconf Editor.  If not, see <https://www.gnu.org/licenses/>.
*/

using Gtk;

[GtkTemplate (ui = "/ca/desrt/dconf-editor/ui/browser-stack.ui")]
private class BrowserStack : Grid, AdaptativeWidget, BrowserContent
{
    [GtkChild] private unowned Stack stack;
    [GtkChild] private unowned RegistryView folder_view;
    [GtkChild] private unowned RegistryInfo object_view;
    [GtkChild] private unowned RegistrySearch search_view;

    [CCode (notify = false)] internal ViewType current_view { internal get; protected set; default = ViewType.FOLDER; }

    private void set_window_size (AdaptativeWidget.WindowSize new_size)
    {
        folder_view.set_window_size (new_size);
        search_view.set_window_size (new_size);
    }

    [CCode (notify = false)] public ModificationsHandler modifications_handler
    {
        internal construct
        {
            folder_view.modifications_handler = value;
            object_view.modifications_handler = value;
            search_view.modifications_handler = value;
        }
    }

    construct
    {
        StyleContext context = get_style_context ();
        GLib.Settings settings = new GLib.Settings ("ca.desrt.dconf-editor.Settings");
        bool has_small_keys_list_rows_class = settings.get_boolean ("small-keys-list-rows");

        ulong small_keys_list_rows_handler = settings.changed ["small-keys-list-rows"].connect ((_settings, key_name) => {
                bool small_rows = _settings.get_boolean (key_name);
                if (small_rows)
                {
                    if (!has_small_keys_list_rows_class) context.add_class ("small-keys-list-rows");
                }
                else if (has_small_keys_list_rows_class) context.remove_class ("small-keys-list-rows");
                has_small_keys_list_rows_class = small_rows;

                folder_view.small_keys_list_rows = small_rows;
                search_view.small_keys_list_rows = small_rows;
            });

        if (has_small_keys_list_rows_class)
            context.add_class ("small-keys-list-rows");
        folder_view.small_keys_list_rows = has_small_keys_list_rows_class;
        search_view.small_keys_list_rows = has_small_keys_list_rows_class;

        destroy.connect (() => settings.disconnect (small_keys_list_rows_handler));
    }

    internal BrowserStack (ModificationsHandler modifications_handler)
    {
        Object (modifications_handler: modifications_handler);
    }

    /*\
    * * Views
    \*/

    internal string get_selected_row_name ()
    {
        if (ViewType.displays_objects_list (current_view))
            return ((RegistryList) stack.get_visible_child ()).get_selected_row_name ();
        return object_view.full_name;
    }

    internal void prepare_folder_view (GLib.ListStore key_model, bool is_ancestor)
    {
        folder_view.set_key_model (key_model);

        stack.set_transition_type (is_ancestor && current_view != ViewType.SEARCH ? StackTransitionType.CROSSFADE : StackTransitionType.NONE);
    }

    internal void select_row_named (string selected, uint16 last_context_id, bool grab_focus_if_needed)
        requires (ViewType.displays_objects_list (current_view))
        requires (selected != "")
    {
        ((RegistryList) stack.get_visible_child ()).select_row_named (selected, last_context_id, (current_view == ViewType.FOLDER) && grab_focus_if_needed);
    }

    internal void select_first_row ()
        requires (ViewType.displays_objects_list (current_view))
    {
        if (current_view == ViewType.SEARCH)
            ((RegistrySearch) stack.get_visible_child ()).select_first_row ();
        else if (current_view == ViewType.FOLDER)
            ((RegistryView) stack.get_visible_child ()).select_first_row ();
        else
            assert_not_reached ();
    }

    internal void prepare_object_view (string full_name, uint16 context_id, Variant properties, bool is_parent)
    {
        object_view.populate_properties_list_box (full_name, context_id, properties);

        stack.set_transition_type (is_parent && current_view != ViewType.SEARCH ? StackTransitionType.CROSSFADE : StackTransitionType.NONE);
    }

    internal void set_path (ViewType type, string path)
    {
        // might become “bool clear = type != current_view”, one day…
        bool clean_object_view = type == ViewType.FOLDER;    // note: not on search
        bool clean_search_view = current_view == ViewType.SEARCH && type != ViewType.SEARCH;

        current_view = type;
        if (type == ViewType.FOLDER)
            stack.set_visible_child (folder_view);
        else if (ViewType.displays_object_infos (type))
            stack.set_visible_child (object_view);
        else if (type == ViewType.SEARCH)
        {
            search_view.start_search (path);
            stack.set_transition_type (StackTransitionType.NONE);
            stack.set_visible_child (search_view);
            search_view.select_first_row ();
        }
        else assert_not_reached ();

        if (clean_object_view)
            object_view.clean ();
        if (clean_search_view)
            search_view.clean ();
    }

    internal bool handle_copy_text (out string copy_text)
    {
        return ((BrowsableView) stack.get_visible_child ()).handle_copy_text (out copy_text);
    }

    internal bool handle_alt_copy_text (out string copy_text)
    {
        if (current_view == ViewType.SEARCH)
            return search_view.handle_alt_copy_text (out copy_text);

        warning ("BrowserView get_copy_path_text() called but current view is not search results view.");
        return BaseWindow.no_copy_text (out copy_text);
    }

    internal bool toggle_row_popover ()
    {
        if (ViewType.displays_objects_list (current_view))
            return ((RegistryList) stack.get_visible_child ()).toggle_row_popover ();
        return false;
    }

    internal void toggle_boolean_key ()
    {
        if (ViewType.displays_objects_list (current_view))
            ((RegistryList) stack.get_visible_child ()).toggle_boolean_key ();
    }

    internal void set_selected_to_default ()
    {
        if (ViewType.displays_objects_list (current_view))
            ((RegistryList) stack.get_visible_child ()).set_selected_to_default ();
    }

    internal void discard_row_popover ()
    {
        if (ViewType.displays_objects_list (current_view))
            ((RegistryList) stack.get_visible_child ()).discard_row_popover ();
    }

    internal void invalidate_popovers ()
    {
        folder_view.invalidate_popovers ();
        search_view.invalidate_popovers ();
    }

    internal void hide_or_show_toggles (bool show)
    {
        folder_view.hide_or_show_toggles (show);
        search_view.hide_or_show_toggles (show);
    }

    /*\
    * * Reload
    \*/

    internal void set_search_parameters (bool local_search, string current_path, uint16 current_context_id, string [] bookmarks, SortingOptions sorting_options)
    {
        search_view.set_search_parameters (local_search, current_path, current_context_id, bookmarks, sorting_options);
    }

    internal bool check_reload_folder (Variant? fresh_key_model)
    {
        return folder_view.check_reload (fresh_key_model);
    }

    internal bool check_reload_object (uint properties_hash)
    {
        return object_view.check_reload (properties_hash);
    }

    /*\
    * * Values changes  // TODO reloads all the views instead of the current one, because method is called before it is made visible
    \*/

    internal void gkey_value_push (string full_name, uint16 context_id, Variant key_value, bool is_key_default)
    {
        folder_view.gkey_value_push (full_name, context_id, key_value, is_key_default);
        search_view.gkey_value_push (full_name, context_id, key_value, is_key_default);
        if (full_name == object_view.full_name && context_id == object_view.context_id)
            object_view.gkey_value_push (key_value, is_key_default);
    }
    internal void dkey_value_push (string full_name, Variant? key_value_or_null)
    {
        folder_view.dkey_value_push (full_name, key_value_or_null);
        search_view.dkey_value_push (full_name, key_value_or_null);
        if (full_name == object_view.full_name)
            object_view.dkey_value_push (key_value_or_null);
    }

    /*\
    * * Keyboard calls
    \*/

    internal void row_grab_focus ()
    {
        if (ViewType.displays_objects_list (current_view))
            ((RegistryList) stack.get_visible_child ()).row_grab_focus ();
    }

    internal bool return_pressed ()
        requires (current_view == ViewType.SEARCH)
    {
        return search_view.return_pressed ();
    }

    internal bool next_match ()
    {
        if (ViewType.displays_objects_list (current_view))
            return ((RegistryList) stack.get_visible_child ()).next_match ();
        return false;
    }

    internal bool previous_match ()
    {
        if (ViewType.displays_objects_list (current_view))
            return ((RegistryList) stack.get_visible_child ()).previous_match ();
        return false;
    }
}

private interface BrowsableView
{
    internal abstract bool handle_copy_text (out string copy_text);
}