python实现桌面托盘气泡提示
作者:adengou 时间:2023-05-16 21:27:15
本文实例为大家分享了python实现桌面托盘气泡提示的具体代码,供大家参考,具体内容如下
# -*- encoding:utf-8 -*-
##############################
#
# 程序名:python桌面托盘气泡
# 文件名:clsBubble.py
# 功能 :实现桌面托盘气泡提示功能
# modify:by adengou 2016.1.4
# program:python3.4.4
# 适用 :windowsXP -windows10
#
##############################
import sys
import os
import struct
import time
import win32con
from win32api import *
# Try and use XP features, so we get alpha-blending etc.
try:
from winxpgui import *
except ImportError:
from win32gui import *
class PyNOTIFYICONDATA:
_struct_format = (
"I" # DWORD cbSize; 结构大小(字节)
"I" # HWND hWnd; 处理消息的窗口的句柄
"I" # UINT uID; 唯一的标识符
"I" # UINT uFlags;
"I" # UINT uCallbackMessage; 处理消息的窗口接收的消息
"I" # HICON hIcon; 托盘图标句柄
"128s" # TCHAR szTip[128]; 提示文本
"I" # DWORD dwState; 托盘图标状态
"I" # DWORD dwStateMask; 状态掩码
"256s" # TCHAR szInfo[256]; 气泡提示文本
"I" # union {
# UINT uTimeout; 气球提示消失时间(毫秒)
# UINT uVersion; 版本(0 for V4, 3 for V5)
# } DUMMYUNIONNAME;
"64s" # TCHAR szInfoTitle[64]; 气球提示标题
"I" # DWORD dwInfoFlags; 气球提示图标
)
_struct = struct.Struct(_struct_format)
hWnd = 0
uID = 0
uFlags = 0
uCallbackMessage = 0
hIcon = 0
szTip = ''
dwState = 0
dwStateMask = 0
szInfo = ''
uTimeoutOrVersion = 0
szInfoTitle = ''
dwInfoFlags = 0
def pack(self):
return self._struct.pack(
self._struct.size,
self.hWnd,
self.uID,
self.uFlags,
self.uCallbackMessage,
self.hIcon,
self.szTip.encode("gbk"),
self.dwState,
self.dwStateMask,
self.szInfo.encode("gbk"),
self.uTimeoutOrVersion,
self.szInfoTitle.encode("gbk"),
self.dwInfoFlags
)
def __setattr__(self, name, value):
# avoid wrong field names
if not hasattr(self, name):
raise (NameError, name)
self.__dict__[name] = value
class MainWindow:
def __init__(self):
#初始化变量
self.title =""
self.msg =""
self.duration=5#延时5秒
self.hwnd =None
self.hinst =None
self.regOk = False
#self.creWind()
def creWind(self):
# Register the Window class.
wc = WNDCLASS()
self.hinst = wc.hInstance = GetModuleHandle(None)
wc.lpszClassName = "PythonTaskbarDemo" # 字符串只要有值即可,下面3处也一样
wc.lpfnWndProc = { win32con.WM_DESTROY: self.OnDestroy } # could also specify a wndproc.
classAtom = RegisterClass(wc)
# Create the Window.
style = win32con.WS_OVERLAPPED | win32con.WS_SYSMENU
self.hwnd = CreateWindow(classAtom, "Taskbar Demo", style,
0, 0, win32con.CW_USEDEFAULT, win32con.CW_USEDEFAULT,
0, 0, self.hinst, None
)
UpdateWindow(self.hwnd)
#
def startBubble(self,title, msg, duration=3):
if(self.hwnd==None):
self.creWind()
self.title =title
self.msg=msg
self.duration=duration
iconPathName = os.path.abspath(os.path.join(sys.prefix, os.getcwd()+"\\pyc.ico"))
icon_flags = win32con.LR_LOADFROMFILE | win32con.LR_DEFAULTSIZE
try:
hicon = LoadImage(self.hinst, iconPathName, win32con.IMAGE_ICON, 0, 0, icon_flags)
except:
hicon = LoadIcon(0, win32con.IDI_APPLICATION)
flags = NIF_ICON | NIF_MESSAGE | NIF_TIP
nid = (self.hwnd, 0, flags, win32con.WM_USER + 20, hicon, "Balloon tooltip demo")
try:
Shell_NotifyIcon(NIM_ADD, nid)
except:
self.hwnd==None
self.show_balloon(self.title, self.msg)
time.sleep(self.duration)
#ReleaseDC(self.hwnd,wc)
#DeleteDC(wc)
try:
DestroyWindow(self.hwnd)
self.hwnd==None
except:
return None
def show_balloon(self, title, msg):
# For this message I can't use the win32gui structure because
# it doesn't declare the new, required fields
nid = PyNOTIFYICONDATA()
nid.hWnd = self.hwnd
nid.uFlags = NIF_INFO
# type of balloon and text are random
#nid.dwInfoFlags = NIIF_INFO
nid.szInfo = msg[:64]
nid.szInfoTitle = title[:256]
# Call the Windows function, not the wrapped one
from ctypes import windll
Shell_NotifyIcon = windll.shell32.Shell_NotifyIconA
Shell_NotifyIcon(NIM_MODIFY, nid.pack())
def OnDestroy(self, hwnd, msg, wparam, lparam):
nid = (self.hwnd, 0)
Shell_NotifyIcon(NIM_DELETE, nid)
PostQuitMessage(0) # Terminate the app.
if __name__=='__main__':
msgTitle =u"您有一条短消息"
msgContent =u"hello python"
msgTitle =msgTitle
bubble =MainWindow()
bubble.startBubble(msgTitle,msgContent)
bubble.startBubble(msgTitle,u"i'm a balloon")
bubble.startBubble(msgTitle,u"how do u feel?")
本程序修改网上的程序,适用于WINDOWS平台,有兴趣的朋友还可以修改成最小化托盘程序。
来源:https://blog.csdn.net/adengou/article/details/50460086
标签:python,气泡提示
0
投稿
猜你喜欢
vuex 第三方包实现数据持久化的方法
2024-04-30 10:34:56
python多环境切换及pyenv使用过程详解
2021-08-09 02:00:08
centos上安装mysql并设置远程访问的操作方法
2024-01-14 15:24:28
OpenCV实战之实现手势虚拟缩放效果
2023-04-06 12:51:09
Linux 下 Python 实现按任意键退出的实现方法
2022-08-07 14:22:01
Golang中的错误处理的示例详解
2024-02-05 03:54:44
Python3控制路由器——使用requests重启极路由.py
2023-05-20 08:07:54
python实现超级玛丽游戏
2023-10-02 20:19:28
python使用pil进行图像处理(等比例压缩、裁剪)实例代码
2022-12-22 16:50:09
vue日历/日程提醒/html5本地缓存功能
2024-04-28 09:30:15
MYSQL的存储过程和函数简单写法
2024-01-21 20:16:34
python 实现return返回多个值
2022-10-12 17:23:37
微信公众平台开发——群发信息
2023-05-19 16:18:48
python3.6.3安装图文教程 TensorFlow安装配置方法
2021-06-25 19:20:42
SQL Server比较常见数据类型详解
2024-01-26 11:28:48
Oracle数据表中的死锁情况解决方法
2024-01-15 11:23:01
mysql中为用户设置密码的多种方法
2024-01-26 07:36:07
Python Matplotlib通过plt.subplots创建子绘图
2022-06-03 08:23:16
python四个坐标点对图片区域最小外接矩形进行裁剪
2022-01-18 02:18:09
nvm版本导致npm install报错Unexpected token '.'的解决办法
2024-05-05 09:21:04