Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Widgets: Rename PartitionBar to PartitionBlock #808

Merged
merged 2 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion po/POTFILES
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ src/Widgets/DecryptMenu.vala
src/Widgets/DiskBar.vala
src/Widgets/DiskGrid.vala
src/Widgets/InstallTypeGrid.vala
src/Widgets/PartitionBar.vala
src/Widgets/PartitionBlock.vala
src/Widgets/PartitionMenu.vala
src/Widgets/VariantWidget.vala
8 changes: 4 additions & 4 deletions src/Views/PartitioningView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ public class Installer.PartitioningView : AbstractInstallerView {

unowned string path = disk.device_path;

var partitions = new Gee.ArrayList<PartitionBar> ();
var partitions = new Gee.ArrayList<PartitionBlock> ();
foreach (unowned InstallerDaemon.Partition part in disk.partitions) {
var partition = new PartitionBar (part, path, sector_size, false, this.set_mount, this.unset_mount, this.mount_is_set);
var partition = new PartitionBlock (part, path, sector_size, false, this.set_mount, this.unset_mount, this.mount_is_set);
partition.decrypted.connect (on_partition_decrypted);
partitions.add (partition);
}
Expand Down Expand Up @@ -225,9 +225,9 @@ public class Installer.PartitioningView : AbstractInstallerView {

unowned string path = disk.device_path;

var partitions = new Gee.ArrayList<PartitionBar> ();
var partitions = new Gee.ArrayList<PartitionBlock> ();
foreach (unowned InstallerDaemon.Partition part in disk.partitions) {
var partition = new PartitionBar (part, path, sector_size, true, this.set_mount, this.unset_mount, this.mount_is_set);
var partition = new PartitionBlock (part, path, sector_size, true, this.set_mount, this.unset_mount, this.mount_is_set);
partition.decrypted.connect (on_partition_decrypted);
partitions.add (partition);
}
Expand Down
12 changes: 6 additions & 6 deletions src/Widgets/DiskBar.vala
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ public class Installer.DiskBar: Gtk.Box {
public string disk_name { get; construct; }
public string disk_path { get; construct; }
public uint64 size { get; construct; }
public Gee.ArrayList<PartitionBar> partitions { get; construct; }
public Gee.ArrayList<PartitionBlock> partitions { get; construct; }

private Gtk.Box legend_box;

public DiskBar (string disk_name, string disk_path, uint64 size, Gee.ArrayList<PartitionBar> partitions) {
public DiskBar (string disk_name, string disk_path, uint64 size, Gee.ArrayList<PartitionBlock> partitions) {
Object (
disk_name: disk_name,
disk_path: disk_path,
Expand All @@ -37,7 +37,7 @@ public class Installer.DiskBar: Gtk.Box {
halign = START
};

foreach (PartitionBar p in partitions) {
foreach (PartitionBlock p in partitions) {
add_legend (
p.partition.device_path,
p.get_partition_size () * 512,
Expand All @@ -48,7 +48,7 @@ public class Installer.DiskBar: Gtk.Box {
}

uint64 used = 0;
foreach (PartitionBar partition in partitions) {
foreach (PartitionBlock partition in partitions) {
used += partition.get_partition_size ();
}

Expand Down Expand Up @@ -110,10 +110,10 @@ public class Installer.DiskBar: Gtk.Box {
}

private class PartitionContainer : Gtk.Widget {
public Gee.ArrayList<PartitionBar> partitions { get; construct; }
public Gee.ArrayList<PartitionBlock> partitions { get; construct; }
public uint64 size { get; construct; }

public PartitionContainer (uint64 size, Gee.ArrayList<PartitionBar> partitions) {
public PartitionContainer (uint64 size, Gee.ArrayList<PartitionBlock> partitions) {
Object (
partitions: partitions,
size: size
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Authored by: Michael Aaron Murphy <[email protected]>
*/

public class Installer.PartitionBar : Gtk.Box {
public class Installer.PartitionBlock : Adw.Bin {
public signal void decrypted (InstallerDaemon.LuksCredentials credential);

public Icon? icon { get; set; default = null; }
Expand All @@ -17,7 +17,7 @@ public class Installer.PartitionBar : Gtk.Box {
public string? volume_group { get; private set; }
public Gtk.Popover menu { get; private set; }

public PartitionBar (
public PartitionBlock (
InstallerDaemon.Partition partition,
string parent_path,
uint64 sector_size,
Expand Down Expand Up @@ -56,13 +56,11 @@ public class Installer.PartitionBar : Gtk.Box {
volume_group = (partition.filesystem == LVM) ? partition.current_lvm_volume_group : null;

var image = new Gtk.Image () {
hexpand = true,
halign = END,
valign = END
};

append (image);
hexpand = true;
child = image;
tooltip_text = partition.device_path;

add_css_class (partition.filesystem.to_string ());
Expand Down
4 changes: 2 additions & 2 deletions src/Widgets/PartitionMenu.vala
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ public class Installer.PartitionMenu : Gtk.Popover {
private Gtk.Label custom_label;
private Gtk.Label type_label;
// A reference to the parent which owns this menu.
private PartitionBar partition_bar;
private PartitionBlock partition_bar;

public PartitionMenu (string path, string parent, InstallerDaemon.FileSystem fs,
bool lvm, SetMount set_mount, UnsetMount unset_mount,
MountSetFn mount_set, PartitionBar partition_bar) {
MountSetFn mount_set, PartitionBlock partition_bar) {
this.partition_bar = partition_bar;
original_filesystem = fs;
is_lvm = lvm;
Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ vala_files = [
'Widgets/DiskBar.vala',
'Widgets/DiskGrid.vala',
'Widgets/InstallTypeGrid.vala',
'Widgets/PartitionBar.vala',
'Widgets/PartitionBlock.vala',
'Widgets/PartitionMenu.vala',
'Widgets/Terminal.vala',
'Widgets/VariantWidget.vala',
Expand Down