Skip to content

Commit

Permalink
Use blueprints for welcome_dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
matzipan committed Nov 15, 2023
1 parent 5a9c09a commit 9d518b4
Show file tree
Hide file tree
Showing 6 changed files with 273 additions and 227 deletions.
1 change: 1 addition & 0 deletions app/data/resources/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
blueprints = custom_target('blueprints',
input: [
'window.blp',
'welcome_dialog.blp',
],
output: '.',
command: [blueprint_compiler, 'batch-compile', '@OUTPUT@', '@CURRENT_SOURCE_DIR@', '@INPUT@'],
Expand Down
1 change: 1 addition & 0 deletions app/data/resources/resources.gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
<gresource prefix="/com/github/matzipan/envoyer/">
<!-- see https://gtk-rs.org/gtk4-rs/git/docs/gtk4/struct.Application.html#automatic-resources -->
<file compressed="true" preprocess="xml-stripblanks">window.ui</file>
<file compressed="true" preprocess="xml-stripblanks">welcome_dialog.ui</file>
</gresource>
</gresources>
187 changes: 187 additions & 0 deletions app/data/resources/welcome_dialog.blp
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
using Gtk 4.0;
using Adw 1;

template $WelcomeDialog : Dialog {
height-request: 800;
width-request: 800;
modal: true;

Adw.Clamp {
maximum-size: 400;
tightening-threshold: 200;

Stack stack {
StackPage {
name: "welcome-screen";

child: Box welcome-screen {
orientation: vertical;
valign: center;
halign: center;

Label {
label: "Welcome!";
halign: start;
styles ["title-1"]
}
Label {
label: "Let's get you set up using the app. Enter your information below:";
wrap: true;
halign: start;
margin-bottom: 20;
}

Grid {
halign: start;
valign: center;
row-spacing: 5;
column-spacing: 20;

Label {
label: "Email address";
halign: start;
}
Entry {
layout {
row: 0;
column: 2;
}
}

Label {
label: "Account name";
halign: start;

layout {
row: 1;
column: 0;
}
}

Entry {
width-request: 270;

layout {
row: 1;
column: 2;
}
}

Label {
label: "Full name";
halign: start;

layout {
row: 2;
column: 0;
}
}

Image {
pixel-size: 15;
tooltip-text: "Publicly visible. Used in the sender field of your e-mails.";
icon-name: "dialog-information-symbolic";

layout {
row: 2;
column: 1;
}
}


Entry {
layout {
row: 2;
column: 2;
}
}
}

Button {
label: "Next";
halign: end;
margin-top: 30;
clicked => $next_clicked() swapped;
}
};
}
StackPage {
name: "authorization-screen";

child: Box authorization-screen {
orientation: vertical;
valign: center;
halign: center;

Label {
label: "Authorization";
halign: start;
styles ["title-1"]
}

Label {
label: "Clicking the button will open a browser window requesting you to authorize Envoyer to read your e-mails.";
wrap: true;
halign: start;
}

Button {
label: "Authorize";
halign: end;
margin-top: 30;
clicked => $authorize_clicked() swapped;

}
};
}
StackPage {
name: "check-browser";

child: Box check-browser {
orientation: vertical;
valign: center;
halign: center;

Label {
label: "Check your Internet browser";
halign: start;
styles ["title-1"]
}

Label {
label: "A browser window was opened to authenticate with your e-mail provider. Please continue there.";
wrap: true;
halign: start;
}

};
}
StackPage {
name: "please-wait";

child: Box please-wait {
orientation: vertical;
valign: center;
halign: center;

Label {
label: "Please wait";
halign: start;
styles ["title-1"]
}

Label {
label: "Synchronizing with the server. It may take a while.";
wrap: true;
halign: start;
}

Spinner spinner {
width-request: 40;
height-request: 40;
}
};
}
}
}
}
2 changes: 1 addition & 1 deletion app/src/controllers/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ mod imp {
*notifications_email_count_clone.borrow_mut() = 0;
});

welcome_dialog.transient_for(main_window);
welcome_dialog.set_transient_for(Some(main_window));
}

let action_show_conversation_for_email_id =
Expand Down
Loading

0 comments on commit 9d518b4

Please sign in to comment.