Windows-10-Toast-Notifications
Windows-10-Toast-Notifications copied to clipboard
Added on-click callback feature
Hi. I added callback on click functionality discussed in this issue . Implementation followed this comment plus my own code snippet for decorator/handler.
How it works - just add to show_toast
method argument called callback_on_click
with callable as value.
Great, this works perfectly for me!
Is this going to be merged?
@Charnelx could you give a bit more detail on this, sorry guys bit of a Python noob, I downloaded the changed file and replaced the old one in source, built from source (I think that worked correctly?) Just need some clarification on how to implement a click action to my toast notifications
@JDogg1329 , don't know about merge, but you can get this from my own repo if needed.
On-click implementation is really easy - just pass callable (in this case function that doesn't receive any arguments) as value of show_toast
method parameter called callback_on_click
.
Example:
def say_hello():
print('Hello!')
toast = ToastNotifier()
toast.show_toast( title="Notification", msg="Here comes the message",
icon_path=None, duration=5, threaded=False, callback_on_click=say_hello)
In this case, if notification is clicked, say_hello
function will be called.
Thanks @Charnelx ! So is it possible to pass an argument to the callback_on_click method?
@JDogg1329 , nope, you can't pass the argument in a direct way...but you can do a trick like this:
toast.show_toast( title="Notification", msg="Here comes the message",
icon_path=None, duration=5, threaded=False, callback_on_click=lambda: say_hello(arg))
@Charnelx Bro I have been trying some random stuff for a long time. Thanks for your help. Now I can die peacefully 🤣
@Charnelx I noticed that if user won't click on the notification, after 10 seconds (in windows 10) the message will be moved to "Action Center" (the notification area on the left side of the screen), and there I couldn't handle the user's click action. Do you have any idea? I want a web page to be opened when user click on the notification.
Thanks
I've installed win10toast
via pip and it seems that's not the latest code version because the callback_on_click
argument doesn't work. Error says "TypeError: show_toast() got an unexpected keyword argument 'callback_on_click'"
I've installed
win10toast
via pip and it seems that's not the latest code version because thecallback_on_click
argument doesn't work. Error says "TypeError: show_toast() got an unexpected keyword argument 'callback_on_click'"
same for me.
Does this still work? I tried replacing my init.py contents with the contents from your file @Charnelx but the script was full of errors and said the callback_on_click was not an argument I could use. Sorry if I am doing something wrong, but I'm a noob
@crappy-coder21 , just try to update your version using pip.
@Charnelx Nice work ! Are there any way to get win32con.WM_RBUTTONUP in lparam for example ?
this should be merged to master it is a very useful feature
Anybody still having problems with the: TypeError: show_toast() got an unexpected keyword argument 'callback_on_click' I keep getting this message.
I installed yesterday so it must be the latest version.
What could i do wrong?
Was it fixed? Because I still get the error TypeError: show_toast() got an unexpected keyword argument 'callback_on_click'
Will this ever be merged? Because I hope so.
If anyone want's this feature and is using pipenv, the following command will update the package to the version with the callback_on_click
parameter.
pipenv install git+https://github.com/Charnelx/Windows-10-Toast-Notifications.git#egg=win10toast
I couldn't get it to work using pip
.
LGTM
There is still same problem:
TypeError: show_toast() got an unexpected keyword argument 'callback_on_click'
Here is the init: https://stackoverflow.com/questions/62828043/how-to-perform-a-function-when-toast-notification-is-clicked-in-python
Is it ever going to merge ? Or is @jacobcolbert dead due to corona ?
Its been 2 Years Now !
@Charnelx Please make a New pip Repo with Your Version 🙏
Hey Guys,
this works perfectly, BUT:
in my case the callback_on_click is executed instantly after this toast shows up.
How can i make that the action only executes if I click it?
cheers leon
@leon-mueller
You are probably doing something like
...(callback_on_click=print('clicked'))
when in reality, you wanna do
...(callback_on_click=lambda: print('clicked'))
@jakubblaha-ids
I'm doing as followed:
... callback_on_click=open_ticket(ticket_link)
def open_ticket(url): webbrowser.open(url)
In this case it's always executing the def open_ticket when the toast shows up
@leon-mueller
What you are doing is essentially the same as...
result = open_ticket(ticket_link)
...(click_on_callback=result)
You are calling the function and assigning it's return value to the click_on_callback
parameter.
You instead need to pass in the function (not it's call resulting in a return value) as the click_on_callback
argument. This can be done by defining a function without a name using the lambda
keyword (you can google that) as follows.
...(callback_on_click=lambda: open_ticket(ticket_link))
@JakubBlaha
aaaah damn didn't thought about that tho. Thank you very much!!!!
i feel dumb, but how do i install it????
@jellytoaster https://github.com/jithurjacob/Windows-10-Toast-Notifications/pull/38#issuecomment-633012502
@jellytoaster #38 (comment) thx
help, im getting errors saying "the system could not find the file specified." do i need anaconda or something????