3

使用 pyGtk 我创建了一个没有装饰的窗口。该窗口从任务栏和所有窗口的顶部隐藏。在 linux 上它可以正常工作,但在 MS Windows 窗口上,它有时会隐藏在其他窗口下,并且在 Windows 中的任务栏上总是有“python.exe”。

代表我的问题的图像:

在此处输入图像描述

如何从任务栏中隐藏此“python.exe”窗口?

我的代码:

class Infowindow(gtk.Window):
'''
Klasa okienka informacyjnego
'''
def __init__(self, json, index, destroy_cb, device):
    gtk.Window.__init__(self)
    self.size_x = 260+48
    self.size_y = 85
    self.separator_size = 10
    self.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_SPLASHSCREEN)
    self.set_decorated(False)
    self.set_property('skip-taskbar-hint', True)
    self.set_opacity(1)
    self.set_keep_above(True)
    self.add_events(gtk.gdk.BUTTON_PRESS_MASK)
    self.connect("enter-notify-event", self.__on_hover)
    self.connect("leave-notify-event", self.__on_leave)
    self.connect("button_press_event", self.__on_click)
    self.set_size_request(self.size_x, self.size_y)
    color = gtk.gdk.color_parse('#f3f3f3')
    self.modify_bg(gtk.STATE_NORMAL, color)

    self.expanded = False
    self.index = index
    self.destroy_cb = destroy_cb
    self.json = json['data']
    self.system_info = False if 'system' not in self.json or not self.json['system'] else True
    self.device = device
    f = gtk.Frame()
    self.move_window(index) #move window to specified place
    self.box_area = gtk.VBox()
    self.box_area.set_spacing(10)
    f.add(self.box_area)
    self.add(f)
    self.show_all()
4

3 回答 3

6

再次感谢大卫赫弗南。完美运行!

对于想要在 python 中获得完整解决方案的人。

  • 以特有的方式命名您的窗口,例如:“alamakota”
  • 使用 find_window('alamakota'),
  • 使用给定的处理程序使用 hide_from_taskbar(handler)
  • 最后使用 set_topmost(handler)

窗口从任务栏隐藏,它总是在顶部。

我知道这不是一个完整的代码,但在 Windows XP 及更高版本上运行良好。

import ctypes
import win32gui
import win32api
from win32con import SWP_NOMOVE 
from win32con import SWP_NOSIZE 
from win32con import SW_HIDE
from win32con import SW_SHOW
from win32con import HWND_TOPMOST
from win32con import GWL_EXSTYLE 
from win32con import WS_EX_TOOLWINDOW

@staticmethod
def find_window(name):
    try:
        return win32gui.FindWindow(None, name)
    except win32gui.error:
        print("Error while finding the window")
        return None

@staticmethod   
def hide_from_taskbar(hw):
    try:
        win32gui.ShowWindow(hw, SW_HIDE)
        win32gui.SetWindowLong(hw, GWL_EXSTYLE,win32gui.GetWindowLong(hw, GWL_EXSTYLE)| WS_EX_TOOLWINDOW);
        win32gui.ShowWindow(hw, SW_SHOW);
    except win32gui.error:
        print("Error while hiding the window")
        return None

@staticmethod
def set_topmost(hw):
    try:
          win32gui.SetWindowPos(hw, HWND_TOPMOST, 0,0,0,0, SWP_NOMOVE | SWP_NOSIZE)
    except win32gui.error:
        print("Error while move window on top")
于 2013-10-21T09:44:10.477 回答
3

您有两个选项可以从任务栏中删除窗口:

  1. 添加WS_EX_TOOLWINDOW扩展窗口样式。但这还有其他后果,我不能说它们是否严重。
  2. 给窗口一个不可见的所有者。这使您可以自由地使用您希望的任何窗口样式和扩展样式,但确实涉及更多工作。

您的窗户自然会低于其他窗户。这就是窗户的工作原理。如果您想让您的窗口出现在顶部,请使用HWND_TOPMOST.

我不知道如何在 PyGtk 下实现(或不)这些。我刚刚给了你 Win32 的答案!

于 2013-10-17T11:29:03.977 回答
0

另一个答案中提供的 Win32 解决方案不是很容易,并且与 GtkWindow::show 方法不能很好地配合。现在在 Gtk3 中的一个简单解决方案是:

win->set_type_hint(Gdk::WindowTypeHint::WINDOW_TYPE_HINT_UTILITY); //This works
win->set_skip_taskbar_hint(); //This does not guarantee to work
于 2020-05-27T19:34:14.140 回答