-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
1c178e1
commit 3da2ded
Showing
22 changed files
with
427 additions
and
79 deletions.
There are no files selected for viewing
File renamed without changes.
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 |
---|---|---|
|
@@ -5,8 +5,8 @@ deconf.set('API_VERSION', API_VERSION) | |
deconf.set('prefix', get_option('prefix')) | ||
deconf.set('libdir', '${exec_prefix}/'+get_option('libdir')) | ||
|
||
configure_file(input : 'gtkcanvas.pc.in', | ||
output : 'gtkcanvas-@[email protected]'.format(API_VERSION), | ||
configure_file(input : 'gcav.pc.in', | ||
output : 'gcav-@[email protected]'.format(API_VERSION), | ||
configuration : deconf, | ||
install : true, | ||
install_dir : join_paths(get_option('libdir'), 'pkgconfig') | ||
|
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
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
* Authored by: Alessandro Castellani <[email protected]> | ||
*/ | ||
|
||
internal class GtkCanvas.HoverAction : Object { | ||
internal class Gcav.HoverAction : Object { | ||
/** | ||
* Toggle the visibility of the HoverEffect() | ||
*/ | ||
|
@@ -42,9 +42,9 @@ internal class GtkCanvas.HoverAction : Object { | |
bool visible = false; | ||
|
||
/** | ||
* Parent CanvasItem passed on mouse enter | ||
* Parent Item passed on mouse enter | ||
*/ | ||
private unowned CanvasItem item; | ||
private unowned Item item; | ||
|
||
/** | ||
* HoverEffect (int border_width ) | ||
|
@@ -53,9 +53,9 @@ internal class GtkCanvas.HoverAction : Object { | |
|
||
/** | ||
* Initialize Class | ||
* @param CanvasItem item [hovered item from canvas] | ||
* @param Item item [hovered item from canvas] | ||
*/ | ||
public HoverAction (CanvasItem item) { | ||
public HoverAction (Item item) { | ||
this.item = item; | ||
} | ||
|
||
|
@@ -67,4 +67,4 @@ internal class GtkCanvas.HoverAction : Object { | |
public void toggle (bool toggle) { | ||
toggled = toggle; | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
* Authored by: Felipe Escoto <[email protected]> | ||
*/ | ||
|
||
internal class HoverEffect : Clutter.Effect { | ||
internal class Gcav.HoverEffect : Clutter.Effect { | ||
public int border_size { get; construct; } | ||
public float scale_factor { get; set; default = 1; } | ||
|
||
|
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
Oops, something went wrong.