Windows API – Mantener ventana siempre al frente

Versión: 2.x, 3.x.
Descargas: alwaysontop.zip.

Simple código que utiliza las funciones de la API de Windows FindWindow (en su versión Unicode, FindWindowW) y SetWindowPos para, respectivamente, obtener el número identificador de una ventana específica (determinada a partir del título) y luego enviarla y mantenerla al frente, por más que pierda el foco.

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # alwaysontop.py
  5. #
  6. # Copyright 2014 Recursos Python - www.recursospython.com
  7. #
  8. from ctypes import c_void_p, windll
  9. from platform import python_version_tuple
  10. from sys import stdin
  11. # Constantes.
  12. SWP_NOMOVE = 0x0002
  13. SWP_NOSIZE = 0x0001
  14. def main():
  15. # Compatibilidad entre versiones.
  16. py_version = int(python_version_tuple()[0])
  17. prompt = raw_input if py_version == 2 else input
  18. # Nombre de la ventana.
  19. window_name = ""
  20. # Identificador.
  21. handle = 0
  22. while not window_name or not handle:
  23. window_name = prompt("Nombre de la ventana: ")
  24. # Convertir a Unicode en Python 2.
  25. if py_version == 2:
  26. window_name = window_name.decode(stdin.encoding)
  27. handle = windll.user32.FindWindowW(None, window_name)
  28. # Enviar ventana al frente.
  29. windll.user32.SetWindowPos(handle, c_void_p(-1), 0, 0, 0, 0,
  30. SWP_NOMOVE | SWP_NOSIZE)
  31. if __name__ == "__main__":
  32. main()
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
#       alwaysontop.py
#       
#       Copyright 2014 Recursos Python - www.recursospython.com
#       

from ctypes import c_void_p, windll
from platform import python_version_tuple
from sys import stdin


# Constantes.
SWP_NOMOVE = 0x0002
SWP_NOSIZE = 0x0001


def main():
    # Compatibilidad entre versiones.
    py_version = int(python_version_tuple()[0])
    prompt = raw_input if py_version == 2 else input
    
    # Nombre de la ventana.
    window_name = ""
    # Identificador.
    handle = 0
    
    while not window_name or not handle:
        window_name = prompt("Nombre de la ventana: ")
        
        # Convertir a Unicode en Python 2.
        if py_version == 2:
            window_name = window_name.decode(stdin.encoding)
        
        handle = windll.user32.FindWindowW(None, window_name)
    
    # Enviar ventana al frente.
    windll.user32.SetWindowPos(handle, c_void_p(-1), 0, 0, 0, 0,
                               SWP_NOMOVE | SWP_NOSIZE)


if __name__ == "__main__":
    main()

A continuación, un código análogo que utiliza el módulo pywin32:

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # alwaysontop_pywin32.py
  5. #
  6. # Copyright 2014 Recursos Python - www.recursospython.com
  7. #
  8. from platform import python_version_tuple
  9. from sys import stdin
  10. from win32con import SWP_NOMOVE, SWP_NOSIZE
  11. from win32gui import FindWindow, SetWindowPos
  12. def main():
  13. py_version = int(python_version_tuple()[0])
  14. prompt = raw_input if py_version == 2 else input
  15. window_name = ""
  16. handle = 0
  17. while not window_name or not handle:
  18. window_name = prompt("Nombre de la ventana: ")
  19. if py_version == 2:
  20. window_name = window_name.decode(stdin.encoding)
  21. handle = FindWindow(None, window_name)
  22. SetWindowPos(handle, -1, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE)
  23. if __name__ == "__main__":
  24. main()
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
#       alwaysontop_pywin32.py
#       
#       Copyright 2014 Recursos Python - www.recursospython.com
#       

from platform import python_version_tuple
from sys import stdin

from win32con import SWP_NOMOVE, SWP_NOSIZE
from win32gui import FindWindow, SetWindowPos


def main():
    py_version = int(python_version_tuple()[0])
    prompt = raw_input if py_version == 2 else input
    
    window_name = ""
    handle = 0
    
    while not window_name or not handle:
        window_name = prompt("Nombre de la ventana: ")
        
        if py_version == 2:
            window_name = window_name.decode(stdin.encoding)
        
        handle = FindWindow(None, window_name)
    
    SetWindowPos(handle, -1, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE)


if __name__ == "__main__":
    main()

Curso online 👨‍💻

¡Ya lanzamos el curso oficial de Recursos Python en Udemy! Un curso moderno para aprender Python desde cero con programación orientada a objetos, SQL y tkinter en 2024.

Consultoría 💡

Ofrecemos servicios profesionales de desarrollo y capacitación en Python a personas y empresas. Consultanos por tu proyecto.

Deja una respuesta