Skip to main content

PyQt QMenu which contains search bar as first item

Project description

pyqt-search-bar-menu

PyQt QMenu which contains auto search bar as first item

Requirements

  • PyQt5 >= 5.8

Setup

python -m pip install pyqt-search-bar-menu

Included Packages

Feature

  • Search bar is at the very top of the menu, let user search QAction's text. At this time menu list works like a completer.

Examples

Simple Code Sample

searchBarMenu = SearchBarMenu('Menu', self)

searchBarMenu.addAction('Action')

Executable Code Sample

from PyQt5.QtWidgets import QMainWindow, QApplication

from pyqt_search_bar_menu import SearchBarMenu





class MainWindow(QMainWindow):

    def __init__(self):

        super().__init__()

        self.__initUi()



    def __initUi(self):

        menubar = self.menuBar()

        filemenu = menubar.addMenu('File')



        searchBarMenu = SearchBarMenu('A Bunch of Actions', self)



        for i in range(5):

            action = searchBarMenu.addAction(f'Action{i+1}')



        filemenu.addMenu(searchBarMenu)



        menubar.addMenu(filemenu)

        self.setMenuBar(menubar)





if __name__ == "__main__":

    import sys



    app = QApplication(sys.argv)

    ex = MainWindow()

    ex.show()

    app.exec_()

Result

image

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyqt-search-bar-menu-0.0.11.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

pyqt_search_bar_menu-0.0.11-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page