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

Add task dialog samples #2802

Merged
merged 3 commits into from
Jan 18, 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: 2 additions & 0 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ jobs:
cargo clippy -p sample_shell &&
cargo clippy -p sample_simple &&
cargo clippy -p sample_spellchecker &&
cargo clippy -p sample_task_dialog &&
cargo clippy -p sample_task_dialog_sys &&
cargo clippy -p sample_thread_pool_work &&
cargo clippy -p sample_thread_pool_work_sys &&
cargo clippy -p sample_uiautomation &&
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ jobs:
cargo test -p sample_shell &&
cargo test -p sample_simple &&
cargo test -p sample_spellchecker &&
cargo test -p sample_task_dialog &&
cargo test -p sample_task_dialog_sys &&
cargo test -p sample_thread_pool_work &&
cargo test -p sample_thread_pool_work_sys &&
cargo test -p sample_uiautomation &&
Expand Down Expand Up @@ -100,8 +102,8 @@ jobs:
cargo test -p test_does_not_return &&
cargo test -p test_enums &&
cargo test -p test_error &&
cargo test -p test_event &&
cargo clean &&
cargo test -p test_event &&
cargo test -p test_extensions &&
cargo test -p test_handles &&
cargo test -p test_helpers &&
Expand Down
12 changes: 12 additions & 0 deletions crates/samples/windows-sys/task_dialog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "sample_task_dialog_sys"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies.windows-sys]
path = "../../../libs/sys"
features = [
"Win32_UI_Controls",
"Win32_UI_WindowsAndMessaging",
]
16 changes: 16 additions & 0 deletions crates/samples/windows-sys/task_dialog/build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
fn main() {
println!("cargo:rerun-if-changed=build.rs");

if std::env::var("CARGO_CFG_TARGET_ENV").unwrap() == "msvc" {
println!("cargo:rerun-if-changed=manifest.xml");
println!("cargo:rustc-link-arg-bins=/MANIFEST:EMBED");

println!(
"cargo:rustc-link-arg-bins=/MANIFESTINPUT:{}",
std::path::Path::new("manifest.xml")
.canonicalize()
.unwrap()
.display()
);
}
}
19 changes: 19 additions & 0 deletions crates/samples/windows-sys/task_dialog/manifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<asmv3:application>
<asmv3:windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
</asmv3:windowsSettings>
</asmv3:application>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"/>
</dependentAssembly>
</dependency>
</assembly>
44 changes: 44 additions & 0 deletions crates/samples/windows-sys/task_dialog/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
use windows_sys::{core::*, Win32::Foundation::*, Win32::UI::Controls::*};

fn main() {
unsafe {
let mut config = TASKDIALOGCONFIG {
cbSize: std::mem::size_of::<TASKDIALOGCONFIG>() as _,
..std::mem::zeroed()
};

let buttons = [TASKDIALOG_BUTTON {
nButtonID: 123,
pszButtonText: w!("Let's do it"),
}];

config.pszWindowTitle = w!("Window title");
config.pszMainInstruction = w!("Main instruction");
config.pszContent = w!("Content");
config.pButtons = buttons.as_ptr();
config.cButtons = buttons.len() as _;
config.pfCallback = Some(callback);
config.dwFlags = TDF_USE_COMMAND_LINKS | TDF_ALLOW_DIALOG_CANCELLATION;

let mut selection = 0;

TaskDialogIndirect(
&config,
&mut selection,
std::ptr::null_mut(),
std::ptr::null_mut(),
);

if selection == buttons[0].nButtonID {
println!("custom button");
};
}
}

extern "system" fn callback(_: HWND, notification: u32, _: WPARAM, _: LPARAM, _: isize) -> HRESULT {
if notification == TDN_BUTTON_CLICKED as _ {
println!("button clicked");
}

0
}
12 changes: 12 additions & 0 deletions crates/samples/windows/task_dialog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "sample_task_dialog"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies.windows]
path = "../../../libs/windows"
features = [
"Win32_UI_Controls",
"Win32_UI_WindowsAndMessaging",
]
16 changes: 16 additions & 0 deletions crates/samples/windows/task_dialog/build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
fn main() {
println!("cargo:rerun-if-changed=build.rs");

if std::env::var("CARGO_CFG_TARGET_ENV").unwrap() == "msvc" {
println!("cargo:rerun-if-changed=manifest.xml");
println!("cargo:rustc-link-arg-bins=/MANIFEST:EMBED");

println!(
"cargo:rustc-link-arg-bins=/MANIFESTINPUT:{}",
std::path::Path::new("manifest.xml")
.canonicalize()
.unwrap()
.display()
);
}
}
19 changes: 19 additions & 0 deletions crates/samples/windows/task_dialog/manifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<asmv3:application>
<asmv3:windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
</asmv3:windowsSettings>
</asmv3:application>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"/>
</dependentAssembly>
</dependency>
</assembly>
43 changes: 43 additions & 0 deletions crates/samples/windows/task_dialog/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
use windows::{core::*, Win32::Foundation::*, Win32::UI::Controls::*};

fn main() -> Result<()> {
unsafe {
let mut config = TASKDIALOGCONFIG {
cbSize: std::mem::size_of::<TASKDIALOGCONFIG>() as _,
..Default::default()
};

let buttons = [TASKDIALOG_BUTTON {
nButtonID: 123,
pszButtonText: w!("Let's do it"),
}];

config.pszWindowTitle = w!("Window title");
config.pszMainInstruction = w!("Main instruction");
config.pszContent = w!("Content");
config.pButtons = buttons.as_ptr();
config.cButtons = buttons.len() as _;
config.pfCallback = Some(callback);

config.dwFlags =
TASKDIALOG_FLAGS(TDF_USE_COMMAND_LINKS.0 | TDF_ALLOW_DIALOG_CANCELLATION.0);

let mut selection = 0;

TaskDialogIndirect(&config, Some(&mut selection), None, None)?;

if selection == buttons[0].nButtonID {
println!("custom button");
};

Ok(())
}
}

extern "system" fn callback(_: HWND, notification: u32, _: WPARAM, _: LPARAM, _: isize) -> HRESULT {
if notification == TDN_BUTTON_CLICKED.0 as _ {
println!("button clicked");
}

HRESULT(0)
}