mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-04 05:39:06 +00:00
Rename configure window to more generic configure screen
This commit is contained in:
@@ -3,7 +3,7 @@ from PyQt6 import QtWidgets
|
||||
from PyQt6.QtCore import Qt
|
||||
|
||||
|
||||
class ConfigureWindow(QtWidgets.QDialog):
|
||||
class ConfigureScreen(QtWidgets.QDialog):
|
||||
"""Create Window to Configure Khoj
|
||||
Allow user to
|
||||
1. Enable/Disable search on 1. org-mode, 2. markdown, 3. beancount or 4. image content types
|
||||
@@ -12,7 +12,7 @@ class ConfigureWindow(QtWidgets.QDialog):
|
||||
"""
|
||||
|
||||
def __init__(self, parent=None):
|
||||
super(ConfigureWindow, self).__init__(parent=parent)
|
||||
super(ConfigureScreen, self).__init__(parent=parent)
|
||||
|
||||
# Initialize Configure Window
|
||||
self.setWindowTitle("Khoj - Configure")
|
||||
@@ -8,11 +8,11 @@ from PyQt6 import QtGui, QtWidgets
|
||||
from src.utils import constants
|
||||
|
||||
|
||||
def create_system_tray(gui: QtWidgets.QApplication, window: QtWidgets.QMainWindow):
|
||||
def create_system_tray(gui: QtWidgets.QApplication, configure_screen: QtWidgets.QDialog):
|
||||
"""Create System Tray with Menu
|
||||
Menu Actions should contain
|
||||
1. option to open search page at localhost:8000/
|
||||
2. option to open config page at localhost:8000/config
|
||||
2. option to open config screen
|
||||
3. to quit
|
||||
"""
|
||||
|
||||
@@ -26,7 +26,7 @@ def create_system_tray(gui: QtWidgets.QApplication, window: QtWidgets.QMainWindo
|
||||
menu = QtWidgets.QMenu()
|
||||
menu_actions = [
|
||||
('Search', lambda: webbrowser.open('http://localhost:8000/')),
|
||||
('Configure', window.show),
|
||||
('Configure', configure_screen.show),
|
||||
('Quit', gui.quit),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user