-
-
Notifications
You must be signed in to change notification settings - Fork 90
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
Ported Action Bar
in Rust
#554
Merged
Merged
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
4169b5d
Added Rust Implementation
itsAdee ad726ac
added closures instead of dedicated functions.
itsAdee af561d4
Deleted previous components from the main branch
itsAdee 794569d
Added `Action Bar ` Impl
itsAdee 61ad9b6
Used the the connect notify local function.
itsAdee 7a8fa0a
Update about.js
itsAdee 1d0515f
Formatted the code
itsAdee 21fc7f2
Format code
Hofer-Julian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
use crate::workbench; | ||
use gtk::prelude::*; | ||
|
||
pub fn main() { | ||
let action_bar: gtk::ActionBar = workbench::builder().object("action_bar").unwrap(); | ||
let button: gtk::ToggleButton = workbench::builder().object("button").unwrap(); | ||
let start_widget: gtk::Button = workbench::builder().object("start_widget").unwrap(); | ||
let end_widget: gtk::Button = workbench::builder().object("end_widget").unwrap(); | ||
|
||
button.connect_clicked(move |button| { | ||
action_bar.set_revealed(!button.is_active()); | ||
}); | ||
|
||
start_widget.connect_clicked(|_| { | ||
println!("Start Widget"); | ||
}); | ||
|
||
end_widget.connect_clicked(|_| { | ||
println!("End Widget"); | ||
}); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should use this function https://gtk-rs.org/gtk-rs-core/stable/0.18/docs/glib/object/trait.ObjectExt.html#tymethod.connect_notify_local with parameter "active" instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made the changes :) and also added my name in the contributors list.