This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# HeaderBar example | ||
|
||
This example demonstrates how to use HeaderBar in Windows. | ||
|
||
Run it by executing: | ||
|
||
```bash | ||
cargo run --bin header_bar | ||
``` | ||
|
||
![screenshot](screenshot.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
mod title_bar; | ||
|
||
use gtk::gio; | ||
use gtk::prelude::*; | ||
use gtk::CheckButton; | ||
use gtk::Label; | ||
use gtk::Stack; | ||
use gtk::{ApplicationWindow, WindowPosition}; | ||
use title_bar::TitleBar; | ||
|
||
fn build_ui(application: >k::Application) { | ||
let window = ApplicationWindow::new(application); | ||
|
||
window.set_title("HeaderBar example"); | ||
window.set_position(WindowPosition::Center); | ||
|
||
let stack = Stack::builder().expand(true).build(); | ||
window.add(&stack); | ||
|
||
let check_button = CheckButton::builder() | ||
.expand(true) | ||
.label("check button") | ||
.build(); | ||
stack.add_titled(&check_button, "check_button", "check button"); | ||
let label = Label::builder().label("Hello world").build(); | ||
stack.add_titled(&label, "label", "label"); | ||
|
||
let title_bar = TitleBar::new(); | ||
window.set_titlebar(Some(title_bar.header())); | ||
title_bar.set_stack(stack); | ||
|
||
window.show_all(); | ||
} | ||
|
||
fn main() { | ||
gio::resources_register_include!("compiled.gresource").unwrap(); | ||
|
||
let application = gtk::Application::new( | ||
Some("com.github.gtk-rs.examples.menu_bar"), | ||
Default::default(), | ||
); | ||
|
||
application.connect_activate(build_ui); | ||
|
||
application.run(); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
use gtk::{prelude::*, Label}; | ||
use gtk::{traits::StackSwitcherExt, HeaderBar, StackSwitcher}; | ||
|
||
pub struct TitleBar { | ||
header: HeaderBar, | ||
menu: StackSwitcher, | ||
} | ||
|
||
impl TitleBar { | ||
pub fn new() -> Self { | ||
let menu = StackSwitcher::new(); | ||
let header = HeaderBar::builder() | ||
.custom_title(&menu) | ||
.show_close_button(true) | ||
.build(); | ||
header.add(&Label::new(Some("Custom title"))); | ||
Self { header, menu } | ||
} | ||
|
||
pub fn set_stack(&self, stack: gtk::Stack) { | ||
self.menu.set_stack(Some(&stack)); | ||
} | ||
|
||
pub fn header(&self) -> &HeaderBar { | ||
&self.header | ||
} | ||
} |