2014-10-22 13:44:02 -03:00
|
|
|
/*
|
|
|
|
* pamac-vala
|
|
|
|
*
|
2019-07-06 20:28:51 -04:00
|
|
|
* Copyright (C) 2017-2019 Chris Cromer <cromer@cromnix.org>
|
2017-01-03 05:43:19 -03:00
|
|
|
* Copyright (C) 2015-2017 Guillaume Benoit <guillaume@manjaro.org>
|
2014-10-22 13:44:02 -03:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 get of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pamac {
|
|
|
|
|
2017-10-10 16:29:22 -03:00
|
|
|
[GtkTemplate (ui = "/org/pamac/preferences/interface/preferences_dialog.ui")]
|
2016-02-26 06:37:26 -03:00
|
|
|
class PreferencesDialog : Gtk.Dialog {
|
2014-10-22 13:44:02 -03:00
|
|
|
|
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.Switch remove_unrequired_deps_button;
|
2014-10-22 13:44:02 -03:00
|
|
|
[GtkChild]
|
2017-11-11 21:04:15 -03:00
|
|
|
Gtk.Switch update_files_db_button;
|
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.Switch check_space_button;
|
2014-12-30 11:04:40 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.Switch check_updates_button;
|
2014-12-30 11:04:40 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.Label refresh_period_label;
|
2014-12-30 11:04:40 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.SpinButton refresh_period_spin_button;
|
2014-10-22 13:44:02 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.CheckButton no_update_hide_icon_checkbutton;
|
2015-08-20 10:11:18 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.Box ignorepkgs_box;
|
2015-08-20 10:11:18 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.TreeView ignorepkgs_treeview;
|
2015-08-20 10:11:18 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.Box mirrors_config_box;
|
2014-12-30 11:04:40 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.ComboBoxText mirrors_country_comboboxtext;
|
2014-12-30 11:04:40 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.ComboBoxText mirrors_list_generation_method_comboboxtext;
|
2015-08-20 10:11:18 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.Button generate_mirrors_list_button;
|
2017-10-10 16:29:22 -03:00
|
|
|
#if DISABLE_AUR
|
2017-10-17 12:40:27 -03:00
|
|
|
[GtkChild]
|
|
|
|
Gtk.Stack stack;
|
|
|
|
[GtkChild]
|
|
|
|
Gtk.Box aur_config_box;
|
2017-10-10 16:29:22 -03:00
|
|
|
#else
|
2015-08-20 10:11:18 -03:00
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.Switch enable_aur_button;
|
2015-08-20 10:11:18 -03:00
|
|
|
[GtkChild]
|
2017-10-02 10:23:53 -03:00
|
|
|
Gtk.CheckButton search_aur_checkbutton;
|
2015-08-24 11:13:18 -03:00
|
|
|
[GtkChild]
|
2017-10-04 20:52:47 -03:00
|
|
|
Gtk.Label aur_build_dir_label;
|
|
|
|
[GtkChild]
|
|
|
|
Gtk.FileChooserButton aur_build_dir_file_chooser;
|
|
|
|
[GtkChild]
|
2016-02-26 06:37:26 -03:00
|
|
|
Gtk.CheckButton check_aur_updates_checkbutton;
|
2021-07-08 10:09:00 -04:00
|
|
|
[GtkChild]
|
2021-07-09 10:20:58 -04:00
|
|
|
unowned Gtk.Switch aur_keep_pkgs_button;
|
2021-07-08 10:09:00 -04:00
|
|
|
[GtkChild]
|
2021-07-09 10:20:58 -04:00
|
|
|
unowned Gtk.Label aur_move_dir_label;
|
2021-07-08 10:09:00 -04:00
|
|
|
[GtkChild]
|
2021-07-09 10:20:58 -04:00
|
|
|
unowned Gtk.FileChooserButton aur_move_dir_file_chooser;
|
2017-10-10 16:29:22 -03:00
|
|
|
#endif
|
2015-08-20 10:11:18 -03:00
|
|
|
[GtkChild]
|
2017-01-07 11:28:08 -03:00
|
|
|
Gtk.Label cache_keep_nb_label;
|
|
|
|
[GtkChild]
|
2016-08-25 07:33:16 -03:00
|
|
|
Gtk.SpinButton cache_keep_nb_spin_button;
|
|
|
|
[GtkChild]
|
|
|
|
Gtk.CheckButton cache_only_uninstalled_checkbutton;
|
2017-10-16 21:37:26 -03:00
|
|
|
[GtkChild]
|
|
|
|
Gtk.ColorButton terminal_background;
|
|
|
|
[GtkChild]
|
|
|
|
Gtk.ColorButton terminal_foreground;
|
2017-10-17 12:40:27 -03:00
|
|
|
[GtkChild]
|
|
|
|
Gtk.FontButton terminal_font;
|
2015-08-20 10:11:18 -03:00
|
|
|
|
2016-04-14 13:19:20 -03:00
|
|
|
Gtk.ListStore ignorepkgs_liststore;
|
2015-08-20 10:11:18 -03:00
|
|
|
Transaction transaction;
|
2016-02-02 05:28:07 -03:00
|
|
|
uint64 previous_refresh_period;
|
2017-10-02 10:23:53 -03:00
|
|
|
string[] countries;
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2016-02-26 06:37:26 -03:00
|
|
|
public PreferencesDialog (Transaction transaction) {
|
2017-10-02 10:23:53 -03:00
|
|
|
Object (transient_for: transaction.application_window, use_header_bar: 1);
|
2014-10-22 13:44:02 -03:00
|
|
|
|
2015-08-20 10:11:18 -03:00
|
|
|
this.transaction = transaction;
|
2014-10-22 13:44:02 -03:00
|
|
|
refresh_period_label.set_markup (dgettext (null, "How often to check for updates, value in hours") +":");
|
2017-01-07 11:28:08 -03:00
|
|
|
cache_keep_nb_label.set_markup (dgettext (null, "Number of versions of each package to keep in the cache") +":");
|
2017-10-10 16:29:22 -03:00
|
|
|
#if DISABLE_AUR
|
2017-10-17 12:40:27 -03:00
|
|
|
stack.remove (aur_config_box);
|
2017-10-10 16:29:22 -03:00
|
|
|
#else
|
2017-10-04 20:52:47 -03:00
|
|
|
aur_build_dir_label.set_markup (dgettext (null, "Build directory") +":");
|
2021-07-08 10:09:00 -04:00
|
|
|
aur_move_dir_label.set_markup (dgettext (null, "Package directory") +":");
|
2017-10-10 16:29:22 -03:00
|
|
|
#endif
|
2016-04-14 13:19:20 -03:00
|
|
|
remove_unrequired_deps_button.active = transaction.recurse;
|
2017-11-11 21:04:15 -03:00
|
|
|
update_files_db_button.active = transaction.update_files_db;
|
2016-04-14 13:19:20 -03:00
|
|
|
check_space_button.active = transaction.get_checkspace ();
|
|
|
|
if (transaction.refresh_period == 0) {
|
2015-08-20 10:11:18 -03:00
|
|
|
check_updates_button.active = false;
|
|
|
|
refresh_period_label.sensitive = false;
|
|
|
|
// set default value
|
|
|
|
refresh_period_spin_button.value = 6;
|
|
|
|
previous_refresh_period = 6;
|
|
|
|
refresh_period_spin_button.sensitive = false;
|
|
|
|
no_update_hide_icon_checkbutton.sensitive = false;
|
|
|
|
ignorepkgs_box.sensitive = false;
|
|
|
|
} else {
|
|
|
|
check_updates_button.active = true;
|
2016-04-14 13:19:20 -03:00
|
|
|
refresh_period_spin_button.value = transaction.refresh_period;
|
|
|
|
previous_refresh_period = transaction.refresh_period;
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
no_update_hide_icon_checkbutton.active = transaction.no_update_hide_icon;
|
2017-10-15 17:04:01 -03:00
|
|
|
cache_keep_nb_spin_button.value = transaction.keep_num_pkgs;
|
|
|
|
cache_only_uninstalled_checkbutton.active = transaction.rm_only_uninstalled;
|
2015-08-20 10:11:18 -03:00
|
|
|
|
2017-10-17 12:40:27 -03:00
|
|
|
// Set up terminal
|
2019-07-06 20:28:51 -04:00
|
|
|
terminal_background.use_alpha = false;
|
|
|
|
terminal_foreground.use_alpha = false;
|
2017-10-16 21:37:26 -03:00
|
|
|
Gdk.RGBA rgba = Gdk.RGBA ();
|
|
|
|
bool tmp = rgba.parse (transaction.terminal_background);
|
|
|
|
terminal_background.rgba = rgba;
|
|
|
|
tmp = rgba.parse (transaction.terminal_foreground);
|
|
|
|
terminal_foreground.rgba = rgba;
|
2017-10-17 12:40:27 -03:00
|
|
|
terminal_font.set_font(transaction.terminal_font);
|
2017-10-16 21:37:26 -03:00
|
|
|
|
2015-08-20 10:11:18 -03:00
|
|
|
// populate ignorepkgs_liststore
|
2016-04-14 13:19:20 -03:00
|
|
|
ignorepkgs_liststore = new Gtk.ListStore (1, typeof (string));
|
|
|
|
ignorepkgs_treeview.set_model (ignorepkgs_liststore);
|
|
|
|
foreach (unowned string ignorepkg in transaction.get_ignorepkgs ()) {
|
|
|
|
ignorepkgs_liststore.insert_with_values (null, -1, 0, ignorepkg);
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
|
|
|
remove_unrequired_deps_button.state_set.connect (on_remove_unrequired_deps_button_state_set);
|
2017-11-11 21:04:15 -03:00
|
|
|
update_files_db_button.state_set.connect (on_update_files_db_button_state_set);
|
2015-08-20 10:11:18 -03:00
|
|
|
check_space_button.state_set.connect (on_check_space_button_state_set);
|
2016-02-26 06:37:26 -03:00
|
|
|
transaction.write_alpm_config_finished.connect (on_write_alpm_config_finished);
|
2015-08-20 10:11:18 -03:00
|
|
|
check_updates_button.state_set.connect (on_check_updates_button_state_set);
|
|
|
|
refresh_period_spin_button.value_changed.connect (on_refresh_period_spin_button_value_changed);
|
|
|
|
no_update_hide_icon_checkbutton.toggled.connect (on_no_update_hide_icon_checkbutton_toggled);
|
2017-10-15 17:04:01 -03:00
|
|
|
cache_keep_nb_spin_button.value_changed.connect (on_cache_keep_nb_spin_button_value_changed);
|
|
|
|
cache_only_uninstalled_checkbutton.toggled.connect (on_cache_only_uninstalled_checkbutton_toggled);
|
2017-10-16 21:37:26 -03:00
|
|
|
terminal_background.color_set.connect (on_select_background);
|
|
|
|
terminal_foreground.color_set.connect (on_select_foreground);
|
2017-10-17 12:40:27 -03:00
|
|
|
terminal_font.font_set.connect (on_select_font);
|
2015-08-20 10:11:18 -03:00
|
|
|
|
2017-04-15 16:34:35 -03:00
|
|
|
AlpmPackage pkg = transaction.find_installed_satisfier ("pacman-mirrors");
|
2017-05-27 06:48:09 -04:00
|
|
|
if (pkg.name == "") {
|
2015-08-20 10:11:18 -03:00
|
|
|
mirrors_config_box.visible = false;
|
|
|
|
} else {
|
2016-02-26 06:37:26 -03:00
|
|
|
var mirrors_config = new MirrorsConfig ("/etc/pacman-mirrors.conf");
|
2015-08-20 10:11:18 -03:00
|
|
|
mirrors_country_comboboxtext.append_text (dgettext (null, "Worldwide"));
|
|
|
|
mirrors_country_comboboxtext.active = 0;
|
2017-10-02 10:23:53 -03:00
|
|
|
countries = transaction.get_mirrors_countries ();
|
2015-08-20 10:11:18 -03:00
|
|
|
int index = 1;
|
2017-10-02 10:23:53 -03:00
|
|
|
foreach (unowned string country in countries) {
|
2015-08-20 10:11:18 -03:00
|
|
|
mirrors_country_comboboxtext.append_text (country);
|
|
|
|
if (country == mirrors_config.choosen_country) {
|
|
|
|
mirrors_country_comboboxtext.active = index;
|
|
|
|
}
|
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
mirrors_list_generation_method_comboboxtext.append_text (dgettext (null, "Speed"));
|
|
|
|
mirrors_list_generation_method_comboboxtext.append_text (dgettext (null, "Random"));
|
|
|
|
if (mirrors_config.choosen_generation_method == "rank") {
|
|
|
|
mirrors_list_generation_method_comboboxtext.active = 0;
|
|
|
|
} else {
|
|
|
|
mirrors_list_generation_method_comboboxtext.active = 1;
|
|
|
|
}
|
|
|
|
mirrors_country_comboboxtext.changed.connect (on_mirrors_country_comboboxtext_changed);
|
|
|
|
mirrors_list_generation_method_comboboxtext.changed.connect (on_mirrors_list_generation_method_comboboxtext_changed);
|
2016-02-26 06:37:26 -03:00
|
|
|
transaction.write_mirrors_config_finished.connect (on_write_mirrors_config_finished);
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
|
|
|
|
2017-10-10 16:29:22 -03:00
|
|
|
#if DISABLE_AUR
|
|
|
|
#else
|
2017-02-18 13:10:26 -03:00
|
|
|
enable_aur_button.active = transaction.enable_aur;
|
2017-10-02 10:23:53 -03:00
|
|
|
search_aur_checkbutton.active = transaction.search_aur;
|
|
|
|
search_aur_checkbutton.sensitive = transaction.enable_aur;
|
2017-10-04 20:52:47 -03:00
|
|
|
aur_build_dir_label.sensitive = transaction.enable_aur;
|
|
|
|
aur_build_dir_file_chooser.sensitive = transaction.enable_aur;
|
|
|
|
aur_build_dir_file_chooser.set_filename (transaction.aur_build_dir);
|
|
|
|
// add /tmp choice always visible
|
|
|
|
try {
|
|
|
|
aur_build_dir_file_chooser.add_shortcut_folder ("/tmp");
|
|
|
|
} catch (GLib.Error e) {
|
|
|
|
stderr.printf ("%s\n", e.message);
|
|
|
|
}
|
2017-02-18 13:10:26 -03:00
|
|
|
check_aur_updates_checkbutton.active = transaction.check_aur_updates;
|
|
|
|
check_aur_updates_checkbutton.sensitive = transaction.enable_aur;
|
|
|
|
enable_aur_button.state_set.connect (on_enable_aur_button_state_set);
|
2017-10-02 10:23:53 -03:00
|
|
|
search_aur_checkbutton.toggled.connect (on_search_aur_checkbutton_toggled);
|
2017-10-04 20:52:47 -03:00
|
|
|
aur_build_dir_file_chooser.file_set.connect (on_aur_build_dir_set);
|
2017-02-18 13:10:26 -03:00
|
|
|
check_aur_updates_checkbutton.toggled.connect (on_check_aur_updates_checkbutton_toggled);
|
2021-07-08 10:09:00 -04:00
|
|
|
aur_keep_pkgs_button.sensitive = transaction.enable_aur;
|
|
|
|
aur_keep_pkgs_button.active = transaction.aur_keep_pkgs;
|
|
|
|
aur_keep_pkgs_button.state_set.connect(on_aur_keep_pkgs_button_state_set);
|
|
|
|
aur_move_dir_label.sensitive = transaction.enable_aur && transaction.aur_keep_pkgs;
|
|
|
|
aur_move_dir_file_chooser.sensitive = transaction.enable_aur && transaction.aur_keep_pkgs;
|
|
|
|
aur_move_dir_file_chooser.set_filename(transaction.aur_move_dir);
|
|
|
|
aur_move_dir_file_chooser.file_set.connect(on_aur_move_dir_set);
|
2017-10-10 16:29:22 -03:00
|
|
|
#endif
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool on_remove_unrequired_deps_button_state_set (bool new_state) {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.main");
|
|
|
|
settings.set_boolean ("remove-unrequired-deps", new_state);
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2015-08-20 10:11:18 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-11-11 21:04:15 -03:00
|
|
|
bool on_update_files_db_button_state_set (bool new_state) {
|
|
|
|
var settings = new Settings ("org.pamac.main");
|
|
|
|
settings.set_boolean ("update-files-db", new_state);
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-08-20 10:11:18 -03:00
|
|
|
bool on_check_updates_button_state_set (bool new_state) {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.main");
|
2015-08-20 10:11:18 -03:00
|
|
|
refresh_period_label.sensitive = new_state;
|
|
|
|
refresh_period_spin_button.sensitive = new_state;
|
|
|
|
no_update_hide_icon_checkbutton.sensitive = new_state;
|
|
|
|
ignorepkgs_box.sensitive = new_state;
|
2016-02-02 05:28:07 -03:00
|
|
|
if (new_state) {
|
2017-11-10 22:36:50 -03:00
|
|
|
settings.set_uint64 ("refresh-period", previous_refresh_period);
|
2015-08-20 10:11:18 -03:00
|
|
|
} else {
|
2017-11-10 22:36:50 -03:00
|
|
|
settings.set_uint64 ("refresh-period", 0);
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
2017-11-10 22:36:50 -03:00
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2015-08-20 10:11:18 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_refresh_period_spin_button_value_changed () {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.main");
|
|
|
|
settings.set_uint64 ("refresh-period", refresh_period_spin_button.get_value_as_int ());
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
|
|
|
|
2017-10-15 17:04:01 -03:00
|
|
|
void on_cache_keep_nb_spin_button_value_changed () {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.main");
|
|
|
|
settings.set_uint64 ("keep-num-packages", cache_keep_nb_spin_button.get_value_as_int ());
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2017-10-15 17:04:01 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_cache_only_uninstalled_checkbutton_toggled () {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.main");
|
|
|
|
settings.set_boolean ("only-rm-uninstalled", cache_only_uninstalled_checkbutton.active);
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
|
|
|
}
|
2017-10-15 17:04:01 -03:00
|
|
|
|
2015-08-20 10:11:18 -03:00
|
|
|
void on_no_update_hide_icon_checkbutton_toggled () {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.main");
|
|
|
|
settings.set_boolean ("no-update-hide-icon", no_update_hide_icon_checkbutton.active);
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
|
|
|
|
2017-10-16 21:37:26 -03:00
|
|
|
void on_select_background () {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.main");
|
|
|
|
settings.set_string ("background-color", terminal_background.rgba.to_string ());
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2017-10-16 22:57:25 -03:00
|
|
|
transaction.update_terminal_background (terminal_background.rgba.to_string ());
|
2017-10-16 21:37:26 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_select_foreground () {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.main");
|
|
|
|
settings.set_string ("foreground-color", terminal_foreground.rgba.to_string ());
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2017-10-16 22:57:25 -03:00
|
|
|
transaction.update_terminal_foreground (terminal_foreground.rgba.to_string ());
|
2017-10-16 21:37:26 -03:00
|
|
|
}
|
|
|
|
|
2017-10-17 12:40:27 -03:00
|
|
|
void on_select_font () {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.main");
|
2019-07-06 20:28:51 -04:00
|
|
|
settings.set_string ("terminal-font", terminal_font.get_font ());
|
2017-11-10 22:36:50 -03:00
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2019-07-06 20:28:51 -04:00
|
|
|
transaction.update_terminal_font (terminal_font.get_font ());
|
2017-10-17 12:40:27 -03:00
|
|
|
}
|
|
|
|
|
2017-10-10 16:29:22 -03:00
|
|
|
#if DISABLE_AUR
|
|
|
|
#else
|
2015-08-20 10:11:18 -03:00
|
|
|
bool on_enable_aur_button_state_set (bool new_state) {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.aur");
|
|
|
|
settings.set_boolean ("enable-aur", new_state);
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2015-08-20 10:11:18 -03:00
|
|
|
return true;
|
|
|
|
}
|
2021-07-08 10:09:00 -04:00
|
|
|
|
|
|
|
bool on_aur_keep_pkgs_button_state_set (bool new_state) {
|
|
|
|
var settings = new Settings ("org.pamac.aur");
|
|
|
|
settings.set_boolean ("aur-keep-pkgs", new_state);
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
|
|
|
return true;
|
|
|
|
}
|
2015-08-20 10:11:18 -03:00
|
|
|
|
2017-10-02 10:23:53 -03:00
|
|
|
void on_search_aur_checkbutton_toggled () {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.aur");
|
|
|
|
settings.set_boolean ("search-in-aur", search_aur_checkbutton.active);
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2015-08-24 11:13:18 -03:00
|
|
|
}
|
|
|
|
|
2017-10-04 20:52:47 -03:00
|
|
|
void on_aur_build_dir_set () {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.aur");
|
|
|
|
settings.set_string ("build-directory", aur_build_dir_file_chooser.get_filename ());
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2017-10-04 20:52:47 -03:00
|
|
|
}
|
2021-07-08 10:09:00 -04:00
|
|
|
|
|
|
|
void on_aur_move_dir_set () {
|
|
|
|
var settings = new Settings ("org.pamac.aur");
|
|
|
|
settings.set_string ("move-directory", aur_move_dir_file_chooser.get_filename ());
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
|
|
|
}
|
2017-10-04 20:52:47 -03:00
|
|
|
|
2015-08-20 10:11:18 -03:00
|
|
|
void on_check_aur_updates_checkbutton_toggled () {
|
2017-11-10 22:36:50 -03:00
|
|
|
var settings = new Settings ("org.pamac.aur");
|
|
|
|
settings.set_boolean ("check-aur-updates", check_aur_updates_checkbutton.active);
|
|
|
|
config_changed();
|
|
|
|
transaction.start_save_pamac_config ();
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
2017-10-10 16:29:22 -03:00
|
|
|
#endif
|
2015-08-20 10:11:18 -03:00
|
|
|
|
2017-11-10 22:36:50 -03:00
|
|
|
void config_changed() {
|
|
|
|
transaction.config_changed();
|
|
|
|
remove_unrequired_deps_button.state = transaction.recurse;
|
2017-11-11 21:04:15 -03:00
|
|
|
update_files_db_button.state = transaction.update_files_db;
|
2017-11-10 22:36:50 -03:00
|
|
|
if (transaction.refresh_period == 0) {
|
2015-08-20 10:11:18 -03:00
|
|
|
check_updates_button.state = false;
|
|
|
|
refresh_period_label.sensitive = false;
|
|
|
|
refresh_period_spin_button.sensitive = false;
|
|
|
|
no_update_hide_icon_checkbutton.sensitive = false;
|
|
|
|
ignorepkgs_box.sensitive = false;
|
|
|
|
} else {
|
|
|
|
check_updates_button.state = true;
|
|
|
|
refresh_period_label.sensitive = true;
|
2017-11-10 22:36:50 -03:00
|
|
|
refresh_period_spin_button.value = transaction.refresh_period;
|
|
|
|
previous_refresh_period = transaction.refresh_period;
|
2015-08-20 10:11:18 -03:00
|
|
|
refresh_period_spin_button.sensitive = true;
|
|
|
|
no_update_hide_icon_checkbutton.sensitive = true;
|
|
|
|
ignorepkgs_box.sensitive = true;
|
|
|
|
}
|
2017-11-10 22:36:50 -03:00
|
|
|
no_update_hide_icon_checkbutton.active = transaction.no_update_hide_icon;
|
2017-10-10 16:29:22 -03:00
|
|
|
#if DISABLE_AUR
|
|
|
|
#else
|
2017-11-10 22:36:50 -03:00
|
|
|
enable_aur_button.state = transaction.enable_aur;
|
|
|
|
search_aur_checkbutton.active = transaction.search_aur;
|
|
|
|
search_aur_checkbutton.sensitive = transaction.enable_aur;
|
|
|
|
aur_build_dir_label.sensitive = transaction.enable_aur;
|
|
|
|
aur_build_dir_file_chooser.sensitive = transaction.enable_aur;
|
|
|
|
check_aur_updates_checkbutton.active = transaction.check_aur_updates;
|
|
|
|
check_aur_updates_checkbutton.sensitive = transaction.enable_aur;
|
2021-07-08 10:09:00 -04:00
|
|
|
aur_keep_pkgs_button.sensitive = transaction.enable_aur;
|
|
|
|
aur_keep_pkgs_button.state = transaction.aur_keep_pkgs;
|
|
|
|
aur_move_dir_label.sensitive = transaction.enable_aur && transaction.aur_keep_pkgs;
|
|
|
|
aur_move_dir_file_chooser.sensitive = transaction.enable_aur && transaction.aur_keep_pkgs;
|
2017-10-10 16:29:22 -03:00
|
|
|
#endif
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool on_check_space_button_state_set (bool new_state) {
|
|
|
|
var new_alpm_conf = new HashTable<string,Variant> (str_hash, str_equal);
|
|
|
|
new_alpm_conf.insert ("CheckSpace", new Variant.boolean (new_state));
|
2017-11-10 22:36:50 -03:00
|
|
|
check_space_button.state = new_state;
|
2015-08-20 10:11:18 -03:00
|
|
|
transaction.start_write_alpm_config (new_alpm_conf);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
[GtkCallback]
|
|
|
|
void on_add_ignorepkgs_button_clicked () {
|
2016-02-02 05:28:07 -03:00
|
|
|
var choose_ignorepkgs_dialog = new ChooseIgnorepkgsDialog (this);
|
2016-04-14 13:19:20 -03:00
|
|
|
this.get_window ().set_cursor (new Gdk.Cursor.for_display (Gdk.Display.get_default (), Gdk.CursorType.WATCH));
|
|
|
|
while (Gtk.events_pending ()) {
|
|
|
|
Gtk.main_iteration ();
|
2016-02-02 05:28:07 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
transaction.get_installed_pkgs.begin ((obj, res) => {
|
|
|
|
var pkgs = transaction.get_installed_pkgs.end (res);
|
|
|
|
foreach (unowned AlpmPackage pkg in pkgs) {
|
|
|
|
if (pkg.name in transaction.get_ignorepkgs ()) {
|
|
|
|
choose_ignorepkgs_dialog.pkgs_list.insert_with_values (null, -1, 0, true, 1, pkg.name);
|
|
|
|
} else {
|
|
|
|
choose_ignorepkgs_dialog.pkgs_list.insert_with_values (null, -1, 0, false, 1, pkg.name);
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
}
|
|
|
|
this.get_window ().set_cursor (null);
|
|
|
|
if (choose_ignorepkgs_dialog.run () == Gtk.ResponseType.OK) {
|
|
|
|
var ignorepkg_string = new StringBuilder ();
|
|
|
|
choose_ignorepkgs_dialog.pkgs_list.foreach ((model, path, iter) => {
|
|
|
|
GLib.Value val;
|
|
|
|
// get value at column 0 to know if it is selected
|
|
|
|
model.get_value (iter, 0, out val);
|
|
|
|
if ((bool) val) {
|
|
|
|
// get value at column 1 to get the pkg name
|
|
|
|
model.get_value (iter, 1, out val);
|
|
|
|
if (ignorepkg_string.len != 0) {
|
|
|
|
ignorepkg_string.append (" ");
|
|
|
|
}
|
|
|
|
ignorepkg_string.append ((string) val);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
2015-08-20 10:11:18 -03:00
|
|
|
var new_alpm_conf = new HashTable<string,Variant> (str_hash, str_equal);
|
|
|
|
new_alpm_conf.insert ("IgnorePkg", new Variant.string (ignorepkg_string.str));
|
|
|
|
transaction.start_write_alpm_config (new_alpm_conf);
|
|
|
|
}
|
2016-04-14 13:19:20 -03:00
|
|
|
choose_ignorepkgs_dialog.destroy ();
|
|
|
|
while (Gtk.events_pending ()) {
|
|
|
|
Gtk.main_iteration ();
|
|
|
|
}
|
|
|
|
});
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
[GtkCallback]
|
|
|
|
void on_remove_ignorepkgs_button_clicked () {
|
|
|
|
Gtk.TreeIter? iter;
|
|
|
|
Gtk.TreeSelection selection = ignorepkgs_treeview.get_selection ();
|
|
|
|
if (selection.get_selected (null, out iter)) {
|
2017-05-11 14:05:01 -03:00
|
|
|
ignorepkgs_liststore.remove (ref iter);
|
2015-08-20 10:11:18 -03:00
|
|
|
var ignorepkg_string = new StringBuilder ();
|
|
|
|
ignorepkgs_liststore.foreach ((model, path, iter) => {
|
2016-02-05 06:50:46 -03:00
|
|
|
GLib.Value name;
|
2016-04-14 13:19:20 -03:00
|
|
|
model.get_value (iter, 0, out name);
|
2015-08-20 10:11:18 -03:00
|
|
|
if (ignorepkg_string.len != 0) {
|
|
|
|
ignorepkg_string.append (" ");
|
|
|
|
}
|
2016-02-05 06:50:46 -03:00
|
|
|
ignorepkg_string.append ((string) name);
|
2015-08-20 10:11:18 -03:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
var new_alpm_conf = new HashTable<string,Variant> (str_hash, str_equal);
|
|
|
|
new_alpm_conf.insert ("IgnorePkg", new Variant.string (ignorepkg_string.str));
|
|
|
|
transaction.start_write_alpm_config (new_alpm_conf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_write_alpm_config_finished (bool checkspace) {
|
|
|
|
check_space_button.state = checkspace;
|
|
|
|
ignorepkgs_liststore.clear ();
|
2016-04-14 13:19:20 -03:00
|
|
|
foreach (unowned string ignorepkg in transaction.get_ignorepkgs ()) {
|
|
|
|
ignorepkgs_liststore.insert_with_values (null, -1, 0, ignorepkg);
|
2015-08-20 10:11:18 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_mirrors_country_comboboxtext_changed () {
|
|
|
|
var new_mirrors_conf = new HashTable<string,Variant> (str_hash, str_equal);
|
2016-08-24 11:40:26 -03:00
|
|
|
var mirror_country = mirrors_country_comboboxtext.get_active_text ();
|
|
|
|
if (mirror_country == dgettext (null, "Worldwide")) {
|
2016-08-24 10:28:38 -03:00
|
|
|
mirror_country = "ALL";
|
2016-08-24 11:40:26 -03:00
|
|
|
}
|
2016-08-24 10:28:38 -03:00
|
|
|
new_mirrors_conf.insert ("OnlyCountry", new Variant.string (mirror_country) );
|
2015-08-20 10:11:18 -03:00
|
|
|
transaction.start_write_mirrors_config (new_mirrors_conf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_mirrors_list_generation_method_comboboxtext_changed () {
|
|
|
|
var new_mirrors_conf = new HashTable<string,Variant> (str_hash, str_equal);
|
|
|
|
if (mirrors_list_generation_method_comboboxtext.get_active_text () == dgettext (null, "Speed")){
|
|
|
|
new_mirrors_conf.insert ("Method", new Variant.string ("rank"));
|
|
|
|
} else {
|
|
|
|
new_mirrors_conf.insert ("Method", new Variant.string ("random"));
|
|
|
|
}
|
|
|
|
transaction.start_write_mirrors_config (new_mirrors_conf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_write_mirrors_config_finished (string choosen_country, string choosen_generation_method) {
|
|
|
|
int index = 0;
|
2016-08-24 11:40:26 -03:00
|
|
|
string choosen_country_ = dgettext (null, "Worldwide");
|
2016-08-24 11:46:24 -03:00
|
|
|
if (choosen_country != "ALL") {
|
2016-08-24 11:40:26 -03:00
|
|
|
choosen_country_ = choosen_country;
|
|
|
|
}
|
2015-08-20 10:11:18 -03:00
|
|
|
mirrors_country_comboboxtext.model.foreach ((model, path, iter) => {
|
2016-02-05 06:50:46 -03:00
|
|
|
GLib.Value country;
|
|
|
|
model.get_value (iter, 0, out country);
|
2016-08-24 10:28:38 -03:00
|
|
|
if ((string) country == choosen_country_) {
|
2015-08-20 10:11:18 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
index += 1;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
mirrors_country_comboboxtext.active = index;
|
|
|
|
if (choosen_generation_method == "rank") {
|
|
|
|
mirrors_list_generation_method_comboboxtext.active = 0;
|
|
|
|
} else {
|
|
|
|
mirrors_list_generation_method_comboboxtext.active = 1;
|
|
|
|
}
|
|
|
|
generate_mirrors_list_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION);
|
|
|
|
}
|
|
|
|
|
|
|
|
[GtkCallback]
|
|
|
|
void on_generate_mirrors_list_button_clicked () {
|
|
|
|
transaction.start_generate_mirrors_list ();
|
|
|
|
generate_mirrors_list_button.get_style_context ().remove_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION);
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
2016-08-25 07:33:16 -03:00
|
|
|
|
|
|
|
[GtkCallback]
|
|
|
|
void on_cache_clean_button_clicked () {
|
2017-10-15 17:04:01 -03:00
|
|
|
transaction.clean_cache (transaction.keep_num_pkgs, transaction.rm_only_uninstalled);
|
2016-08-25 07:33:16 -03:00
|
|
|
}
|
2014-10-22 13:44:02 -03:00
|
|
|
}
|
|
|
|
}
|