-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Adw.Spinner instead of Gtk.Spinner when libadwaita 1.6 is available
- Loading branch information
Showing
4 changed files
with
55 additions
and
5 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
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,44 @@ | ||
/* | ||
* This file is part of Haguichi, a graphical frontend for Hamachi. | ||
* Copyright (C) 2007-2024 Stephen Brandt <[email protected]> | ||
* | ||
* Haguichi is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published | ||
* by the Free Software Foundation, either version 3 of the License, | ||
* or (at your option) any later version. | ||
* | ||
* SPDX-License-Identifier: GPL-3.0-or-later | ||
*/ | ||
|
||
#if ADW_1_6 | ||
using Adw; | ||
#else | ||
using Gtk; | ||
#endif | ||
|
||
namespace Haguichi { | ||
public class Throbber : Adw.Bin { | ||
public Spinner spinner; | ||
|
||
construct { | ||
spinner = new Spinner () { | ||
width_request = 20, | ||
height_request = 20 | ||
}; | ||
set_child (spinner); | ||
} | ||
|
||
public bool spinning { | ||
#if ADW_1_6 | ||
get; set; | ||
#else | ||
get { | ||
return spinner.spinning; | ||
} | ||
set { | ||
spinner.spinning = value; | ||
} | ||
#endif | ||
} | ||
} | ||
} |
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