Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gtk-macros
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Felix Häcker
gtk-macros
Commits
74014f33
Commit
74014f33
authored
Mar 14, 2020
by
Bilal Elmoussaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add basic examples
parent
97188cbc
Pipeline
#160771
passed with stage
in 10 minutes and 32 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
0 deletions
+63
-0
src/lib.rs
src/lib.rs
+63
-0
No files found.
src/lib.rs
View file @
74014f33
///
/// `get_widget!` allows retrieving a widget from a gtk::Builder
///
/// Example 1:
///
/// ```no_run
/// let builder = gtk::Builder::new_from_resource("/org/gnome/App/ui/widget.ui");
/// get_widget!(builder, gtk::Label, my_label);
/// my_label.set_text("Salut world");
/// ```
/// Example 2:
///
/// ```no_run
/// let builder = gtk::Builder::new_from_resource("/org/gnome/App/ui/widget.ui");
/// get_widget!(builder, gtk::Label, @my_label).set_text("Salut world");
/// ```
#[macro_export]
macro_rules!
get_widget
{
(
$builder:expr
,
$wtype:ty
,
@
$name:ident
)
=>
{{
...
...
@@ -9,6 +25,13 @@ macro_rules! get_widget {
};
}
/// Example:
/// ```no_run
/// spawn!(async {
/// something.await;
/// });
/// ```
#[macro_export]
macro_rules!
spawn
{
(
$future:expr
)
=>
{
...
...
@@ -26,6 +49,20 @@ macro_rules! send {
};
}
/// Example:
/// ```no_run
/// let widget = get_widget!(builder, gtk::Window, widget);
/// let actions = gio::SimpleActionGroup::new();
/// widget.insert_action_group("export", Some(&actions));
/// action!(
/// actions,
/// "do",
/// move |action, _| {
/// // do something
/// },
///);
/// ```
#[macro_export]
macro_rules!
action
{
(
$actions_group:expr
,
$name:expr
,
$callback:expr
)
=>
{
...
...
@@ -40,6 +77,19 @@ macro_rules! action {
};
}
/// Example:
/// ```no_run
/// let actions = gio::SimpleActionGroup::new();
/// let is_dark_mode = false;
/// stateful_action!(actions, "dark-mode", is_dark_mode, move |action, _| {
/// let state = action.get_state().unwrap();
/// let action_state: bool = state.get().unwrap();
/// let is_dark_mode = !action_state;
/// action.set_state(&is_dark_mode.to_variant());
///
/// // Store the state using gsettings for example
/// });
/// ```
#[macro_export]
macro_rules!
stateful_action
{
(
$actions_group:expr
,
$name:expr
,
$state:expr
,
$callback:expr
)
=>
{
...
...
@@ -55,6 +105,19 @@ macro_rules! stateful_action {
}
/// Example:
/// ```no_run
/// let actions = gio::SimpleActionGroup::new();
/// widget.insert_action_group("export", Some(&actions));
/// action!(
/// actions,
/// "do",
/// move |action, _| {
/// // do something
/// },
///);
/// get_action!(actions, @delete).set_enabled(false);
/// ```
#[macro_export]
macro_rules!
get_action
{
(
$actions:expr
,
@
$name:ident
)
=>
{{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment