Files
novelWriter/nw/gui/searchbar.py
T
Veronica K. B. Olsen 7c60d9e9fd Added searchbar class
2019-09-29 15:39:35 +02:00

35 lines
671 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -*- coding: utf-8 -*-
"""novelWriter GUI Main Window SearchBar
novelWriter GUI Main Window SearchBar
=========================================
Class holding the main window search bar
File History:
Created: 2019-09-29 [0.2.1]
"""
import logging
import nw
from PyQt5.QtWidgets import QFrame
logger = logging.getLogger(__name__)
class GuiSearchBar(QFrame):
def __init__(self, theParent):
logger.debug("Initialising GuiSearchBar ...")
self.mainConf = nw.CONFIG
self.theParent = theParent
self.refTime = None
logger.debug("GuiSearchBar initialisation complete")
return
# END Class GuiSearchBar