Files
Keys/App/UI/MainWindow/MainWindow.cs

122 lines
3.9 KiB
C#
Raw Normal View History

2025-09-17 12:49:05 +02:00
using Adw;
using Keychain.UI.ViewModels;
2025-09-13 17:36:46 +02:00
2025-09-22 13:58:59 +02:00
namespace Keychain.UI;
public class MainWindow
{
public Window Window { get; }
private PreferencesGroup shortcutsGroup;
private PasswordStoreShortcutCollection shortcuts;
2025-09-22 13:58:59 +02:00
private Gtk.ToggleButton searchToggleButton;
private Gtk.Stack titleStack;
private Gtk.SearchEntry searchEntry;
private readonly string windowId = "main_window";
private readonly string shortcutsGroupId = "shortcuts_group";
private readonly string addShortcutButtonId = "add_shortcut_button";
private readonly string searchToggleButtonId = "search_button";
private readonly string titleStackId = "title_stack";
private readonly string searchEntryId = "search_entry";
public MainWindow()
{
var builder = new Gtk.Builder("Keychain.UI.MainWindow.MainWindow.xml");
2025-09-13 17:36:46 +02:00
2025-09-22 13:58:59 +02:00
Window = builder.GetObject(windowId) as Window;
if (Window == null)
2025-09-17 12:49:05 +02:00
{
throw new Exception("Failed to load embedded resource MainWindow.xml");
}
2025-09-22 13:58:59 +02:00
try
2025-09-17 12:49:05 +02:00
{
2025-09-22 13:58:59 +02:00
shortcutsGroup = builder.GetObject(shortcutsGroupId) as PreferencesGroup;
if (shortcutsGroup == null)
throw new Exception(shortcutsGroupId);
var addButton = builder.GetObject(addShortcutButtonId) as Gtk.Button;
if (addButton == null)
{
throw new Exception(addShortcutButtonId);
}
addButton.OnClicked += OnAddShortcutClicked;
searchToggleButton = builder.GetObject(searchToggleButtonId) as Gtk.ToggleButton;
if (searchToggleButton == null)
{
throw new Exception(searchToggleButtonId);
}
searchToggleButton.OnToggled += SetSearchBarVisible;
2025-09-22 13:58:59 +02:00
titleStack = builder.GetObject(titleStackId) as Gtk.Stack;
if (titleStack == null)
{
throw new Exception(titleStackId);
}
searchEntry = builder.GetObject(searchEntryId) as Gtk.SearchEntry;
if (searchEntry == null)
{
throw new Exception(searchEntryId);
}
var focusController = new Gtk.EventControllerFocus();
focusController.OnLeave += (s, e) =>
{
searchToggleButton.Active = false;
};
searchEntry.AddController(focusController);
}
catch (Exception e)
2025-09-17 12:49:05 +02:00
{
2025-09-22 13:58:59 +02:00
throw new Exception("Failed to load UI element with ID: " + e.Message);
}
2025-09-17 12:49:05 +02:00
// Initialize the observable collection with property binding
shortcuts = new PasswordStoreShortcutCollection(shortcutsGroup);
LoadDefaultShortcuts();
2025-09-18 15:36:30 +02:00
}
private void OnAddShortcutClicked(object sender, EventArgs e)
{
var dialog = new AddShortcutWindow().Dialog;
dialog.Present(Window);
2025-09-22 13:58:59 +02:00
}
private void AddShortcut(string path)
{
var newShortcut = new PasswordStoreShortcut(path: path);
2025-09-17 12:49:05 +02:00
shortcuts.Add(newShortcut); // This will automatically update the UI
2025-09-22 13:58:59 +02:00
}
private void RemoveShortcut(PasswordStoreShortcut shortcut)
{
2025-09-17 12:49:05 +02:00
shortcuts.Remove(shortcut); // This will automatically update the UI
2025-09-22 13:58:59 +02:00
}
private void LoadDefaultShortcuts()
{
shortcuts.Add(new PasswordStoreShortcut(displayName: "Default", path: Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + "/.password_store"));
}
private void UpdateShortcutName(PasswordStoreShortcut shortcut, string newName)
{
2025-09-17 12:49:05 +02:00
shortcut.DisplayName = newName; // This will automatically update the UI row
2025-09-22 13:58:59 +02:00
}
private void SetSearchBarVisible(object sender, EventArgs e)
{
if (searchToggleButton.Active)
{
titleStack.SetVisibleChildName("Search");
searchEntry.GrabFocus();
}
else
{
titleStack.SetVisibleChildName("Passwords");
}
}
2025-09-13 17:36:46 +02:00
}