mirror of
https://github.com/yusufipk/dikte.git
synced 2026-09-11 10:56:10 +00:00
Who said what is the hard part of a meeting transcript, and the usual answer is to hand one mixed recording to a model and ask it to tell the voices apart. That guess is wrong often enough to be worse than useless in minutes, where a decision attributed to the wrong person is a decision nobody made. So the question never reaches a model. ffmpeg records the microphone and the default sink's monitor as one stereo stream, you on the left and everyone else on the right, and one process reading both is what keeps them aligned over an hour. Each channel is transcribed on its own and the two are interleaved on a single timeline, so attribution is settled by the wire a voice arrived on. What a microphone picks up from the speakers lands on both channels; our copy is dropped when it overlaps theirs in time and says nearly the same thing. The stream is written to disk as it arrives rather than held in memory, so length costs nothing and a crash costs the tail instead of the whole meeting. Every stage the run reaches is recorded in meetings.jsonl, so a failure while summarising does not throw away the transcription of an hour of audio: the retry reads the transcript back out of the document and picks up from there. A run that dies keeps its recording whether or not audio is being kept. The minutes model is configured on its own, under Settings, with its own prompt, and it is told who was expected in the room so the names come out spelled right. It is told outright that the transcript is a record of other people talking, not instructions addressed to it. The built-in listener now holds several bindings rather than one, and the KDE side is parameterised by desktop id, so the meeting toggle gets a shortcut of its own on the same footing as the dictation one.
1194 lines
50 KiB
Python
1194 lines
50 KiB
Python
"""Settings window."""
|
|
|
|
import os
|
|
import threading
|
|
|
|
from PyQt6.QtCore import Qt, QUrl, pyqtSignal
|
|
from PyQt6.QtGui import QDesktopServices, QGuiApplication, QKeySequence, QShortcut
|
|
from PyQt6.QtWidgets import (
|
|
QAbstractItemView, QCheckBox, QComboBox, QDialog, QDialogButtonBox,
|
|
QFileDialog, QFormLayout, QGroupBox, QHBoxLayout, QLabel, QLineEdit,
|
|
QListWidget, QListWidgetItem, QMenu, QMessageBox, QPlainTextEdit,
|
|
QPushButton, QScrollArea, QSpinBox, QTabWidget, QVBoxLayout, QWidget,
|
|
)
|
|
|
|
import api
|
|
import audio
|
|
import config as cfg
|
|
import filetranscribe
|
|
import hotkey
|
|
import meeting
|
|
from filetranscribe import FileTranscriber
|
|
from i18n import t
|
|
|
|
UI_LANGUAGES = [("Automatic (system)", "auto"), ("Turkish", "tr"), ("English", "en")]
|
|
LANGUAGES = [
|
|
("Detect automatically", "auto"), ("Turkish", "tr"), ("English", "en"),
|
|
("German", "de"), ("French", "fr"), ("Spanish", "es"), ("Arabic", "ar"),
|
|
]
|
|
CORNERS = ["bottom-left", "bottom-right", "top-left", "top-right"]
|
|
TRANSCRIBE_PROVIDERS = [("OpenAI", "openai"), ("OpenRouter", "openrouter")]
|
|
# Starting points for the model box; "Fetch model list" replaces them with
|
|
# whatever the provider offers today.
|
|
TRANSCRIBE_MODELS = {
|
|
"openai": ["gpt-4o-transcribe", "gpt-4o-mini-transcribe", "whisper-1"],
|
|
"openrouter": [
|
|
"openai/gpt-4o-transcribe", "openai/gpt-4o-mini-transcribe",
|
|
"openai/whisper-1", "openai/whisper-large-v3",
|
|
"openai/whisper-large-v3-turbo", "mistralai/voxtral-mini-transcribe",
|
|
"deepgram/nova-3", "google/chirp-3",
|
|
],
|
|
}
|
|
CLEANUP_MODELS = [
|
|
"google/gemini-3.5-flash-lite", "google/gemini-3.1-flash-lite",
|
|
"google/gemini-2.5-flash-lite", "anthropic/claude-haiku-4.5",
|
|
"openai/gpt-5-mini", "meta-llama/llama-3.3-70b-instruct",
|
|
]
|
|
# Minutes are a harder job than cleanup: an hour of talk has to be read whole
|
|
# and turned into decisions, so the starting points are the larger models.
|
|
MEETING_MODELS = [
|
|
"google/gemini-3.5-flash", "google/gemini-3.1-pro-preview",
|
|
"anthropic/claude-sonnet-5", "openai/gpt-5.4", "x-ai/grok-4.5",
|
|
]
|
|
MEETING_STATUS = {
|
|
"recorded": "waiting to be written up",
|
|
"transcribed": "transcript ready, minutes missing",
|
|
"failed": "failed",
|
|
}
|
|
# How hard the cleanup model may think before it answers, in OpenRouter's own
|
|
# effort levels. A model that ignores the field simply answers as it always did.
|
|
REASONING_LEVELS = [
|
|
("Model's own default", ""), ("Off", "none"), ("Minimal", "minimal"),
|
|
("Low", "low"), ("Medium", "medium"), ("High", "high"),
|
|
("Very high", "xhigh"), ("Maximum", "max"),
|
|
]
|
|
PASTE_SHORTCUTS = ["ctrl+v", "ctrl+shift+v", "shift+insert"]
|
|
AUDIO_FILTER = ("*.mp3 *.wav *.m4a *.ogg *.opus *.flac *.aac *.wma "
|
|
"*.mp4 *.mkv *.webm *.mov *.avi")
|
|
|
|
|
|
class SettingsWindow(QDialog):
|
|
applied = pyqtSignal()
|
|
|
|
_models_loaded = pyqtSignal(list, str)
|
|
_transcribe_models_loaded = pyqtSignal(list, str)
|
|
_test_done = pyqtSignal(bool, str)
|
|
_or_test_done = pyqtSignal(bool, str)
|
|
|
|
def __init__(self, conf, launch_command, meeting_command=None,
|
|
meetings=None, parent=None):
|
|
super().__init__(parent)
|
|
self.conf = conf
|
|
self.launch_command = launch_command
|
|
self.meeting_command = meeting_command or launch_command
|
|
self.meetings = meetings
|
|
# Each provider keeps its own transcription model, so switching the
|
|
# provider back and forth never overwrites the other one's.
|
|
self._models = {"openai": "", "openrouter": ""}
|
|
self._shown_provider = ""
|
|
self.transcriber = FileTranscriber(conf, self)
|
|
self.setWindowTitle(t("Dikte Settings"))
|
|
self.resize(680, 640)
|
|
|
|
tabs = QTabWidget(self)
|
|
tabs.addTab(self._general_tab(), t("General"))
|
|
tabs.addTab(self._api_tab(), t("API and models"))
|
|
tabs.addTab(self._prompt_tab(), t("Cleanup rules"))
|
|
tabs.addTab(self._meeting_tab(), t("Meeting"))
|
|
tabs.addTab(self._minutes_tab(), t("Minutes"))
|
|
tabs.addTab(self._file_tab(), t("Audio file"))
|
|
tabs.addTab(self._shortcut_tab(), t("Shortcut"))
|
|
tabs.addTab(self._history_tab(), t("History"))
|
|
|
|
# Save keeps the window open, so the window is closed with the titlebar
|
|
# cross (or Escape) instead. A "Cancel" next to it would be a lie: the
|
|
# settings are already on disk by then.
|
|
buttons = QDialogButtonBox(QDialogButtonBox.StandardButton.Save)
|
|
buttons.button(QDialogButtonBox.StandardButton.Save).setText(t("Save"))
|
|
buttons.accepted.connect(self._save)
|
|
|
|
layout = QVBoxLayout(self)
|
|
layout.addWidget(tabs)
|
|
layout.addWidget(buttons)
|
|
|
|
self._models_loaded.connect(self._on_models_loaded)
|
|
self._transcribe_models_loaded.connect(self._on_transcribe_models_loaded)
|
|
self._test_done.connect(self._on_test_done)
|
|
self._or_test_done.connect(self._on_or_test_done)
|
|
self.transcriber.progress.connect(self._on_file_progress)
|
|
self.transcriber.finished.connect(self._on_file_finished)
|
|
self.transcriber.failed.connect(self._on_file_failed)
|
|
if self.meetings is not None:
|
|
self.meetings.progress.connect(self._on_minutes_progress)
|
|
self.meetings.finished.connect(self._on_minutes_finished)
|
|
self.meetings.failed.connect(self._on_minutes_failed)
|
|
self._load()
|
|
|
|
# ---- tabs ----------------------------------------------------------
|
|
|
|
def _general_tab(self):
|
|
page = QWidget()
|
|
form = QFormLayout(page)
|
|
|
|
self.ui_language = QComboBox()
|
|
for label, code in UI_LANGUAGES:
|
|
self.ui_language.addItem(t(label), code)
|
|
self.ui_language.setToolTip(
|
|
t("Restart Dikte for the language change to reach every window.")
|
|
)
|
|
form.addRow(t("Interface language"), self.ui_language)
|
|
|
|
self.mic = QComboBox()
|
|
self.mic.addItem(t("Default microphone"), "")
|
|
for name, desc in audio.list_sources():
|
|
self.mic.addItem(desc, name)
|
|
form.addRow(t("Microphone"), self.mic)
|
|
|
|
self.language = QComboBox()
|
|
for label, code in LANGUAGES:
|
|
self.language.addItem(t(label), code)
|
|
form.addRow(t("Speech language"), self.language)
|
|
|
|
self.auto_paste = QCheckBox(t("Paste the text into the focused window"))
|
|
form.addRow("", self.auto_paste)
|
|
|
|
self.paste_shortcut = QComboBox()
|
|
self.paste_shortcut.addItems(PASTE_SHORTCUTS)
|
|
self.paste_shortcut.setToolTip(
|
|
t("Terminals usually want ctrl+shift+v. Change this if pasting does nothing.")
|
|
)
|
|
form.addRow(t("Paste key"), self.paste_shortcut)
|
|
|
|
self.restore_clipboard = QCheckBox(t("Restore the previous clipboard after pasting"))
|
|
form.addRow("", self.restore_clipboard)
|
|
|
|
self.corner = QComboBox()
|
|
for value in CORNERS:
|
|
self.corner.addItem(t(value), value)
|
|
form.addRow(t("Indicator corner"), self.corner)
|
|
|
|
self.max_seconds = QSpinBox()
|
|
self.max_seconds.setRange(10, 3600)
|
|
self.max_seconds.setSuffix(t(" s"))
|
|
form.addRow(t("Longest recording"), self.max_seconds)
|
|
|
|
self.skip_silent = QCheckBox(t("Skip silent recordings (don't call the API)"))
|
|
form.addRow("", self.skip_silent)
|
|
|
|
self.silence_db = QSpinBox()
|
|
self.silence_db.setRange(-80, -20)
|
|
self.silence_db.setSuffix(" dB")
|
|
self.silence_db.setToolTip(t(
|
|
"Speech also has to rise {margin} dB above the recording's own noise "
|
|
"floor, so this absolute floor rarely needs touching. Lower it if quiet "
|
|
"speech gets dropped; raise it if noise still gets through.",
|
|
margin=10,
|
|
))
|
|
form.addRow(t("Silence threshold"), self.silence_db)
|
|
|
|
self.filter_hallucinations = QCheckBox(
|
|
t("Discard stock phrases models invent for near-silent audio")
|
|
)
|
|
self.filter_hallucinations.setToolTip(
|
|
t("Whisper answers silence with things like “Thanks for watching”.")
|
|
)
|
|
form.addRow("", self.filter_hallucinations)
|
|
|
|
self.keep_audio = QCheckBox(t("Keep audio files (~/.local/share/dikte/recordings)"))
|
|
form.addRow("", self.keep_audio)
|
|
return page
|
|
|
|
def _api_tab(self):
|
|
page = QWidget()
|
|
outer = QVBoxLayout(page)
|
|
|
|
# Keys first, then the two jobs, because OpenRouter can now do both of
|
|
# them and a key no longer belongs to a single job.
|
|
keys = QGroupBox(t("Keys"))
|
|
keys_form = QFormLayout(keys)
|
|
self.openai_key = QLineEdit()
|
|
self.openai_key.setEchoMode(QLineEdit.EchoMode.Password)
|
|
self.openai_key.setPlaceholderText(t("sk-… (falls back to OPENAI_API_KEY)"))
|
|
self.test_button = QPushButton(t("Test"))
|
|
self.test_button.clicked.connect(self._test_openai)
|
|
self.test_label = QLabel("")
|
|
self.test_label.setWordWrap(True)
|
|
keys_form.addRow("OpenAI", self._row(self.openai_key, self.test_button))
|
|
keys_form.addRow("", self.test_label)
|
|
|
|
self.openrouter_key = QLineEdit()
|
|
self.openrouter_key.setEchoMode(QLineEdit.EchoMode.Password)
|
|
self.openrouter_key.setPlaceholderText(t("sk-or-… (falls back to OPENROUTER_API_KEY)"))
|
|
self.or_test_button = QPushButton(t("Test"))
|
|
self.or_test_button.clicked.connect(self._test_openrouter)
|
|
self.or_test_label = QLabel("")
|
|
self.or_test_label.setWordWrap(True)
|
|
keys_form.addRow("OpenRouter", self._row(self.openrouter_key, self.or_test_button))
|
|
keys_form.addRow("", self.or_test_label)
|
|
outer.addWidget(keys)
|
|
|
|
stt = QGroupBox(t("Speech to text"))
|
|
stt_form = QFormLayout(stt)
|
|
self.transcribe_provider = QComboBox()
|
|
for label, value in TRANSCRIBE_PROVIDERS:
|
|
self.transcribe_provider.addItem(label, value)
|
|
stt_form.addRow(t("Provider"), self.transcribe_provider)
|
|
|
|
self.transcribe_model = QComboBox()
|
|
self.transcribe_model.setEditable(True)
|
|
self.refresh_transcribe_models = QPushButton(t("Fetch model list"))
|
|
self.refresh_transcribe_models.clicked.connect(self._load_transcribe_models)
|
|
stt_form.addRow(t("Model"),
|
|
self._row(self.transcribe_model, self.refresh_transcribe_models))
|
|
# A spanning row: in the narrow field column a wrapped label gets a
|
|
# height that fits one line, and the rest of the text is cut off.
|
|
self.transcribe_status = QLabel("")
|
|
self.transcribe_status.setWordWrap(True)
|
|
stt_form.addRow(self.transcribe_status)
|
|
self.transcribe_provider.currentIndexChanged.connect(self._provider_changed)
|
|
outer.addWidget(stt)
|
|
|
|
orr = QGroupBox(t("Transcript cleanup"))
|
|
orr_form = QFormLayout(orr)
|
|
self.cleanup_enabled = QCheckBox(t("Clean the transcript with a model"))
|
|
orr_form.addRow("", self.cleanup_enabled)
|
|
|
|
self.cleanup_model = QComboBox()
|
|
self.cleanup_model.setEditable(True)
|
|
self.cleanup_model.addItems(CLEANUP_MODELS)
|
|
self.refresh_models = QPushButton(t("Fetch model list"))
|
|
self.refresh_models.clicked.connect(self._load_models)
|
|
orr_form.addRow(t("Model"), self._row(self.cleanup_model, self.refresh_models))
|
|
|
|
self.cleanup_reasoning = QComboBox()
|
|
for label, value in REASONING_LEVELS:
|
|
self.cleanup_reasoning.addItem(t(label), value)
|
|
self.cleanup_reasoning.setToolTip(
|
|
t("How long a thinking model may reason before it answers. Cleanup is "
|
|
"a light job, so more thinking mostly costs time and tokens. Models "
|
|
"that cannot think ignore this.")
|
|
)
|
|
orr_form.addRow(t("Thinking"), self.cleanup_reasoning)
|
|
|
|
self.models_label = QLabel(t("Runs on OpenRouter."))
|
|
self.models_label.setWordWrap(True)
|
|
orr_form.addRow(self.models_label)
|
|
outer.addWidget(orr)
|
|
outer.addStretch(1)
|
|
return page
|
|
|
|
def _prompt_tab(self):
|
|
page = QWidget()
|
|
layout = QVBoxLayout(page)
|
|
intro = QLabel(t("System instruction given to the cleanup model. This is where "
|
|
"you decide how much it may touch your words."))
|
|
intro.setWordWrap(True)
|
|
layout.addWidget(intro)
|
|
|
|
self.cleanup_prompt = QPlainTextEdit()
|
|
layout.addWidget(self.cleanup_prompt, 1)
|
|
|
|
reset = QPushButton(t("Reset to default"))
|
|
reset.clicked.connect(
|
|
lambda: self.cleanup_prompt.setPlainText(cfg.default_cleanup_prompt())
|
|
)
|
|
layout.addWidget(reset, 0, Qt.AlignmentFlag.AlignRight)
|
|
|
|
hint = QLabel(t("Names and terms you say often (optional). They go to the "
|
|
"transcription model as a hint, and to the cleanup model as a "
|
|
"glossary, so it can repair the ones that still come out wrong."))
|
|
hint.setWordWrap(True)
|
|
layout.addWidget(hint)
|
|
self.transcribe_prompt = QPlainTextEdit()
|
|
self.transcribe_prompt.setMaximumHeight(90)
|
|
layout.addWidget(self.transcribe_prompt)
|
|
return page
|
|
|
|
def _meeting_tab(self):
|
|
page = QWidget()
|
|
layout = QVBoxLayout(page)
|
|
intro = QLabel(t(
|
|
"A meeting is recorded from two devices at once: your microphone and "
|
|
"whatever comes out of your speakers. Nothing has to guess who was "
|
|
"speaking, because the two never share a channel."
|
|
))
|
|
intro.setWordWrap(True)
|
|
layout.addWidget(intro)
|
|
|
|
sources = QGroupBox(t("Sound"))
|
|
sources_form = QFormLayout(sources)
|
|
self.meeting_mic = QComboBox()
|
|
self.meeting_mic.addItem(t("Same as dictation"), "")
|
|
for name, desc in audio.list_sources():
|
|
self.meeting_mic.addItem(desc, name)
|
|
sources_form.addRow(t("Microphone"), self.meeting_mic)
|
|
|
|
self.meeting_system = QComboBox()
|
|
self.meeting_system.addItem(t("Current output"), "")
|
|
for name, desc in audio.list_monitors():
|
|
self.meeting_system.addItem(desc, name)
|
|
sources_form.addRow(t("The other participants"), self.meeting_system)
|
|
|
|
note = QLabel(t(
|
|
"Wear headphones if you can. Through speakers your microphone hears "
|
|
"the other side as well, and although a line that lands on both "
|
|
"channels at once is dropped again, the repair is never as clean as "
|
|
"not needing it."
|
|
))
|
|
note.setWordWrap(True)
|
|
sources_form.addRow(note)
|
|
layout.addWidget(sources)
|
|
|
|
people = QGroupBox(t("Who is talking"))
|
|
people_form = QFormLayout(people)
|
|
self.meeting_self_name = QLineEdit()
|
|
self.meeting_self_name.setPlaceholderText(t("Me"))
|
|
people_form.addRow(t("You"), self.meeting_self_name)
|
|
self.meeting_other_name = QLineEdit()
|
|
self.meeting_other_name.setPlaceholderText(t("Other side"))
|
|
people_form.addRow(t("The other end"), self.meeting_other_name)
|
|
self.meeting_participants = QPlainTextEdit()
|
|
self.meeting_participants.setMaximumHeight(70)
|
|
self.meeting_participants.setPlaceholderText(t("One name per line"))
|
|
people_form.addRow(t("Expected"), self.meeting_participants)
|
|
people_note = QLabel(t(
|
|
"Everyone on the far end shares one label: they reach you as a single "
|
|
"mixed signal. The names go to the transcription model so they come "
|
|
"out spelled right, and to the minutes, which may use one for a line "
|
|
"only when the conversation itself makes clear who was speaking."
|
|
))
|
|
people_note.setWordWrap(True)
|
|
people_form.addRow(people_note)
|
|
layout.addWidget(people)
|
|
|
|
models = QGroupBox(t("Minutes"))
|
|
models_form = QFormLayout(models)
|
|
self.meeting_model = QComboBox()
|
|
self.meeting_model.setEditable(True)
|
|
self.meeting_model.addItems(MEETING_MODELS)
|
|
models_form.addRow(t("Model"), self.meeting_model)
|
|
self.meeting_reasoning = QComboBox()
|
|
for label, value in REASONING_LEVELS:
|
|
self.meeting_reasoning.addItem(t(label), value)
|
|
self.meeting_reasoning.setToolTip(t(
|
|
"Unlike cleanup, this one is worth some thinking: it has to hold a "
|
|
"whole meeting in its head and work out what was actually decided."
|
|
))
|
|
models_form.addRow(t("Thinking"), self.meeting_reasoning)
|
|
self.meeting_language = QComboBox()
|
|
self.meeting_language.addItem(t("Same as dictation"), "")
|
|
for label, code in LANGUAGES:
|
|
self.meeting_language.addItem(t(label), code)
|
|
models_form.addRow(t("Speech language"), self.meeting_language)
|
|
self.meeting_cleanup = QCheckBox(t("Clean the transcript up first"))
|
|
self.meeting_cleanup.setToolTip(t(
|
|
"Runs the cleanup model over the transcript before the minutes are "
|
|
"written, keeping the timestamps and the speaker labels."
|
|
))
|
|
models_form.addRow("", self.meeting_cleanup)
|
|
layout.addWidget(models)
|
|
|
|
recording = QGroupBox(t("Recording"))
|
|
recording_form = QFormLayout(recording)
|
|
self.meeting_max_minutes = QSpinBox()
|
|
self.meeting_max_minutes.setRange(5, 600)
|
|
self.meeting_max_minutes.setSuffix(t(" min"))
|
|
recording_form.addRow(t("Longest meeting"), self.meeting_max_minutes)
|
|
self.meeting_keep_audio = QCheckBox(
|
|
t("Keep the recording after the minutes are written")
|
|
)
|
|
self.meeting_keep_audio.setToolTip(t(
|
|
"A run that fails keeps its recording either way, so it can be tried "
|
|
"again from the Minutes tab. This is about the ones that worked."
|
|
))
|
|
recording_form.addRow("", self.meeting_keep_audio)
|
|
|
|
self.meeting_shortcut = QLineEdit()
|
|
self.meeting_shortcut.setPlaceholderText(t("none"))
|
|
install = QPushButton(t("Install as a KDE shortcut"))
|
|
install.clicked.connect(self._install_meeting_shortcut)
|
|
remove = QPushButton(t("Remove"))
|
|
remove.clicked.connect(self._remove_meeting_shortcut)
|
|
recording_form.addRow(t("Shortcut"),
|
|
self._row(self.meeting_shortcut, install, remove))
|
|
self.meeting_shortcut_status = QLabel("")
|
|
self.meeting_shortcut_status.setWordWrap(True)
|
|
recording_form.addRow(self.meeting_shortcut_status)
|
|
layout.addWidget(recording)
|
|
|
|
prompt_label = QLabel(t("System instruction given to the minutes model."))
|
|
prompt_label.setWordWrap(True)
|
|
layout.addWidget(prompt_label)
|
|
self.meeting_prompt = QPlainTextEdit()
|
|
self.meeting_prompt.setMinimumHeight(200)
|
|
layout.addWidget(self.meeting_prompt, 1)
|
|
reset = QPushButton(t("Reset to default"))
|
|
reset.clicked.connect(
|
|
lambda: self.meeting_prompt.setPlainText(cfg.default_meeting_prompt())
|
|
)
|
|
layout.addWidget(reset, 0, Qt.AlignmentFlag.AlignRight)
|
|
|
|
# Everything above is more than one screenful; let it scroll rather than
|
|
# squeezing the prompt box down to nothing.
|
|
area = QScrollArea()
|
|
area.setWidgetResizable(True)
|
|
area.setFrameShape(QScrollArea.Shape.NoFrame)
|
|
area.setWidget(page)
|
|
return area
|
|
|
|
def _minutes_tab(self):
|
|
page = QWidget()
|
|
layout = QVBoxLayout(page)
|
|
|
|
self.minutes_list = QListWidget()
|
|
self.minutes_list.setWordWrap(True)
|
|
self.minutes_list.setMaximumHeight(170)
|
|
self.minutes_list.currentItemChanged.connect(self._show_minutes)
|
|
layout.addWidget(self.minutes_list)
|
|
|
|
self.minutes_status = QLabel("")
|
|
self.minutes_status.setWordWrap(True)
|
|
layout.addWidget(self.minutes_status)
|
|
|
|
self.minutes_view = QPlainTextEdit()
|
|
self.minutes_view.setReadOnly(True)
|
|
self.minutes_view.setPlaceholderText(t("Pick a meeting to read it."))
|
|
layout.addWidget(self.minutes_view, 1)
|
|
|
|
copy = QPushButton(t("Copy"))
|
|
copy.clicked.connect(
|
|
lambda: QGuiApplication.clipboard().setText(self.minutes_view.toPlainText())
|
|
)
|
|
self.minutes_retry = QPushButton(t("Write it up"))
|
|
self.minutes_retry.clicked.connect(self._retry_minutes)
|
|
self.minutes_retry.setEnabled(False)
|
|
folder = QPushButton(t("Open the folder"))
|
|
folder.clicked.connect(
|
|
lambda: QDesktopServices.openUrl(
|
|
QUrl.fromLocalFile(str(cfg.MEETINGS_DIR))
|
|
)
|
|
)
|
|
delete = QPushButton(t("Delete selected"))
|
|
delete.clicked.connect(self._delete_minutes)
|
|
reload_ = QPushButton(t("Reload"))
|
|
reload_.clicked.connect(self._load_minutes)
|
|
row = QHBoxLayout()
|
|
row.addWidget(copy)
|
|
row.addWidget(self.minutes_retry)
|
|
row.addStretch(1)
|
|
row.addWidget(folder)
|
|
row.addWidget(delete)
|
|
row.addWidget(reload_)
|
|
layout.addLayout(row)
|
|
return page
|
|
|
|
def _file_tab(self):
|
|
page = QWidget()
|
|
layout = QVBoxLayout(page)
|
|
intro = QLabel(t("Transcribe an existing audio or video file with the same models."))
|
|
intro.setWordWrap(True)
|
|
layout.addWidget(intro)
|
|
|
|
pick = QPushButton(t("Choose file…"))
|
|
pick.clicked.connect(self._choose_file)
|
|
self.file_label = QLabel(t("No file selected"))
|
|
self.file_label.setWordWrap(True)
|
|
row = QHBoxLayout()
|
|
row.addWidget(pick)
|
|
row.addWidget(self.file_label, 1)
|
|
layout.addLayout(row)
|
|
|
|
self.file_timestamps = QCheckBox(t("Add timestamps"))
|
|
self.file_timestamps.setToolTip(
|
|
t("Prefixes every segment with [mm:ss]. Uses whisper-1 on whichever "
|
|
"provider you picked, the only model that returns segment times.")
|
|
)
|
|
layout.addWidget(self.file_timestamps)
|
|
|
|
self.file_cleanup = QCheckBox(t("Run the cleanup model afterwards"))
|
|
layout.addWidget(self.file_cleanup)
|
|
|
|
self.file_run = QPushButton(t("Transcribe"))
|
|
self.file_run.clicked.connect(self._run_file)
|
|
self.file_stop = QPushButton(t("Stop"))
|
|
self.file_stop.clicked.connect(self.transcriber.stop)
|
|
self.file_stop.setEnabled(False)
|
|
run_row = QHBoxLayout()
|
|
run_row.addWidget(self.file_run)
|
|
run_row.addWidget(self.file_stop)
|
|
run_row.addStretch(1)
|
|
layout.addLayout(run_row)
|
|
|
|
self.file_status = QLabel("")
|
|
self.file_status.setWordWrap(True)
|
|
layout.addWidget(self.file_status)
|
|
|
|
self.file_output = QPlainTextEdit()
|
|
self.file_output.setPlaceholderText("…")
|
|
layout.addWidget(self.file_output, 1)
|
|
|
|
copy = QPushButton(t("Copy"))
|
|
copy.clicked.connect(
|
|
lambda: QGuiApplication.clipboard().setText(self.file_output.toPlainText())
|
|
)
|
|
save = QPushButton(t("Save as .txt"))
|
|
save.clicked.connect(self._save_transcript)
|
|
self.file_save_srt = QPushButton(t("Save as .srt"))
|
|
self.file_save_srt.setToolTip(
|
|
t("Subtitles, timed from the segments. Needs the timestamps option.")
|
|
)
|
|
self.file_save_srt.setEnabled(False)
|
|
self.file_save_srt.clicked.connect(self._save_subtitles)
|
|
out_row = QHBoxLayout()
|
|
out_row.addWidget(copy)
|
|
out_row.addWidget(save)
|
|
out_row.addWidget(self.file_save_srt)
|
|
out_row.addStretch(1)
|
|
layout.addLayout(out_row)
|
|
return page
|
|
|
|
def _shortcut_tab(self):
|
|
page = QWidget()
|
|
layout = QVBoxLayout(page)
|
|
form = QFormLayout()
|
|
self.shortcut = QLineEdit()
|
|
self.shortcut.setPlaceholderText("Ctrl+Space")
|
|
form.addRow(t("Shortcut"), self.shortcut)
|
|
layout.addLayout(form)
|
|
|
|
install = QPushButton(t("Install as a KDE shortcut"))
|
|
install.clicked.connect(self._install_shortcut)
|
|
remove = QPushButton(t("Remove"))
|
|
remove.clicked.connect(self._remove_shortcut)
|
|
row = QHBoxLayout()
|
|
row.addWidget(install)
|
|
row.addWidget(remove)
|
|
row.addStretch(1)
|
|
layout.addLayout(row)
|
|
|
|
self.shortcut_status = QLabel("")
|
|
self.shortcut_status.setWordWrap(True)
|
|
layout.addWidget(self.shortcut_status)
|
|
|
|
self.evdev_enabled = QCheckBox(t(
|
|
"Use the built-in listener (/dev/input), for when the KDE shortcut is "
|
|
"not active yet"
|
|
))
|
|
self.evdev_enabled.setToolTip(t(
|
|
"Works immediately, no session restart. The only difference: the key "
|
|
"combination also reaches the focused application."
|
|
))
|
|
layout.addWidget(self.evdev_enabled)
|
|
|
|
note = QLabel(t(
|
|
"KWin only reads shortcut settings at startup. After 'Install' the "
|
|
"shortcut shows up under System Settings → Shortcuts, but it will not "
|
|
"fire until you log out and back in. Until then, use the built-in listener."
|
|
))
|
|
note.setWordWrap(True)
|
|
layout.addWidget(note)
|
|
layout.addStretch(1)
|
|
return page
|
|
|
|
def _history_tab(self):
|
|
page = QWidget()
|
|
layout = QVBoxLayout(page)
|
|
self.history = QListWidget()
|
|
self.history.setWordWrap(True)
|
|
self.history.setSelectionMode(
|
|
QAbstractItemView.SelectionMode.ExtendedSelection
|
|
)
|
|
self.history.setContextMenuPolicy(Qt.ContextMenuPolicy.CustomContextMenu)
|
|
self.history.customContextMenuRequested.connect(self._history_menu)
|
|
delete_key = QShortcut(QKeySequence.StandardKey.Delete, self.history)
|
|
delete_key.setContext(Qt.ShortcutContext.WidgetShortcut)
|
|
delete_key.activated.connect(self._delete_history)
|
|
layout.addWidget(self.history, 1)
|
|
|
|
self.history_limit = QSpinBox()
|
|
self.history_limit.setRange(0, 10000)
|
|
self.history_limit.setSpecialValueText(t("no limit"))
|
|
self.history_limit.setSuffix(t(" entries"))
|
|
self.history_limit.setToolTip(t(
|
|
"Once the history passes this many entries, the oldest one is dropped "
|
|
"every time a new one arrives. Set it to 0 to keep everything."
|
|
))
|
|
limit_row = QHBoxLayout()
|
|
limit_row.addWidget(QLabel(t("Keep at most")))
|
|
limit_row.addWidget(self.history_limit)
|
|
limit_row.addStretch(1)
|
|
layout.addLayout(limit_row)
|
|
|
|
copy = QPushButton(t("Copy selected to clipboard"))
|
|
copy.clicked.connect(self._copy_history)
|
|
delete = QPushButton(t("Delete selected"))
|
|
delete.clicked.connect(self._delete_history)
|
|
clear = QPushButton(t("Clear history"))
|
|
clear.clicked.connect(self._clear_history)
|
|
reload_ = QPushButton(t("Reload"))
|
|
reload_.clicked.connect(self._load_history)
|
|
row = QHBoxLayout()
|
|
row.addWidget(copy)
|
|
row.addWidget(delete)
|
|
row.addStretch(1)
|
|
row.addWidget(clear)
|
|
row.addWidget(reload_)
|
|
layout.addLayout(row)
|
|
return page
|
|
|
|
@staticmethod
|
|
def _row(*widgets):
|
|
"""Widgets side by side in one form row; the first one takes the space."""
|
|
layout = QHBoxLayout()
|
|
layout.setContentsMargins(0, 0, 0, 0)
|
|
for index, widget in enumerate(widgets):
|
|
layout.addWidget(widget, 1 if index == 0 else 0)
|
|
holder = QWidget()
|
|
holder.setLayout(layout)
|
|
return holder
|
|
|
|
# ---- load / save ----------------------------------------------------
|
|
|
|
def _load(self):
|
|
conf = self.conf
|
|
self._select_data(self.ui_language, conf["ui_language"])
|
|
self._select_data(self.mic, conf["mic_target"])
|
|
self._select_data(self.language, conf["language"])
|
|
self.auto_paste.setChecked(conf["auto_paste"])
|
|
self.paste_shortcut.setCurrentText(conf["paste_shortcut"])
|
|
self.restore_clipboard.setChecked(conf["restore_clipboard"])
|
|
self._select_data(self.corner, conf["overlay_corner"])
|
|
self.max_seconds.setValue(conf["max_seconds"])
|
|
self.skip_silent.setChecked(conf["skip_silent"])
|
|
self.silence_db.setValue(int(conf["silence_db"]))
|
|
self.filter_hallucinations.setChecked(conf["filter_hallucinations"])
|
|
self.keep_audio.setChecked(conf["keep_audio"])
|
|
|
|
self.openai_key.setText(conf["openai_api_key"])
|
|
self.openrouter_key.setText(conf["openrouter_api_key"])
|
|
self._models = {"openai": conf["transcribe_model"],
|
|
"openrouter": conf["openrouter_transcribe_model"]}
|
|
self._shown_provider = ""
|
|
self._select_data(self.transcribe_provider, conf["transcribe_provider"])
|
|
self._provider_changed() # selecting index 0 fires no signal
|
|
self.cleanup_enabled.setChecked(conf["cleanup_enabled"])
|
|
self.cleanup_model.setCurrentText(conf["cleanup_model"])
|
|
self._select_data(self.cleanup_reasoning, conf["cleanup_reasoning"])
|
|
self.cleanup_prompt.setPlainText(conf["cleanup_prompt"] or cfg.default_cleanup_prompt())
|
|
self.transcribe_prompt.setPlainText(conf["transcribe_prompt"])
|
|
|
|
self._select_data(self.meeting_mic, conf["meeting_mic_target"])
|
|
self._select_data(self.meeting_system, conf["meeting_system_target"])
|
|
self.meeting_self_name.setText(conf["meeting_self_name"])
|
|
self.meeting_other_name.setText(conf["meeting_other_name"])
|
|
self.meeting_participants.setPlainText(conf["meeting_participants"])
|
|
self.meeting_model.setCurrentText(conf["meeting_model"])
|
|
self._select_data(self.meeting_reasoning, conf["meeting_reasoning"])
|
|
self._select_data(self.meeting_language, conf["meeting_language"])
|
|
self.meeting_cleanup.setChecked(conf["meeting_cleanup"])
|
|
self.meeting_max_minutes.setValue(max(5, int(conf["meeting_max_seconds"]) // 60))
|
|
self.meeting_keep_audio.setChecked(conf["meeting_keep_audio"])
|
|
self.meeting_shortcut.setText(conf["meeting_shortcut"])
|
|
self.meeting_prompt.setPlainText(
|
|
conf["meeting_prompt"] or cfg.default_meeting_prompt()
|
|
)
|
|
|
|
self.file_timestamps.setChecked(conf["file_timestamps"])
|
|
self.file_cleanup.setChecked(conf["file_cleanup"])
|
|
self.file_path = ""
|
|
|
|
self.shortcut.setText(conf["shortcut"])
|
|
self.evdev_enabled.setChecked(conf["evdev_hotkey"])
|
|
|
|
self.history_limit.setValue(max(0, int(conf["history_limit"])))
|
|
|
|
self._refresh_shortcut_status()
|
|
self._refresh_meeting_shortcut_status()
|
|
self._load_history()
|
|
self._load_minutes()
|
|
|
|
def _save(self):
|
|
conf = self.conf
|
|
conf["ui_language"] = self.ui_language.currentData() or "auto"
|
|
conf["mic_target"] = self.mic.currentData() or ""
|
|
conf["language"] = self.language.currentData() or "auto"
|
|
conf["auto_paste"] = self.auto_paste.isChecked()
|
|
conf["paste_shortcut"] = self.paste_shortcut.currentText().strip()
|
|
conf["restore_clipboard"] = self.restore_clipboard.isChecked()
|
|
conf["overlay_corner"] = self.corner.currentData() or "bottom-left"
|
|
conf["max_seconds"] = self.max_seconds.value()
|
|
conf["skip_silent"] = self.skip_silent.isChecked()
|
|
conf["silence_db"] = float(self.silence_db.value())
|
|
conf["filter_hallucinations"] = self.filter_hallucinations.isChecked()
|
|
conf["keep_audio"] = self.keep_audio.isChecked()
|
|
|
|
conf["openai_api_key"] = self.openai_key.text().strip()
|
|
conf["openrouter_api_key"] = self.openrouter_key.text().strip()
|
|
|
|
provider = self.transcribe_provider.currentData() or "openai"
|
|
self._models[provider] = self.transcribe_model.currentText().strip()
|
|
conf["transcribe_provider"] = provider
|
|
for key, name in (("openai", "transcribe_model"),
|
|
("openrouter", "openrouter_transcribe_model")):
|
|
conf[name] = self._models[key].strip() or cfg.DEFAULTS[name]
|
|
|
|
conf["cleanup_enabled"] = self.cleanup_enabled.isChecked()
|
|
conf["cleanup_model"] = self.cleanup_model.currentText().strip()
|
|
conf["cleanup_reasoning"] = self.cleanup_reasoning.currentData() or ""
|
|
|
|
# Store an empty prompt when it matches the default, so switching the
|
|
# interface language also switches the prompt language.
|
|
prompt = self.cleanup_prompt.toPlainText().strip()
|
|
conf["cleanup_prompt"] = "" if prompt == cfg.default_cleanup_prompt() else prompt
|
|
conf["transcribe_prompt"] = self.transcribe_prompt.toPlainText().strip()
|
|
|
|
conf["meeting_mic_target"] = self.meeting_mic.currentData() or ""
|
|
conf["meeting_system_target"] = self.meeting_system.currentData() or ""
|
|
conf["meeting_self_name"] = self.meeting_self_name.text().strip()
|
|
conf["meeting_other_name"] = self.meeting_other_name.text().strip()
|
|
conf["meeting_participants"] = self.meeting_participants.toPlainText().strip()
|
|
conf["meeting_model"] = (self.meeting_model.currentText().strip()
|
|
or cfg.DEFAULTS["meeting_model"])
|
|
conf["meeting_reasoning"] = self.meeting_reasoning.currentData() or ""
|
|
conf["meeting_language"] = self.meeting_language.currentData() or ""
|
|
conf["meeting_cleanup"] = self.meeting_cleanup.isChecked()
|
|
conf["meeting_max_seconds"] = self.meeting_max_minutes.value() * 60
|
|
conf["meeting_keep_audio"] = self.meeting_keep_audio.isChecked()
|
|
conf["meeting_shortcut"] = self.meeting_shortcut.text().strip()
|
|
meeting_prompt = self.meeting_prompt.toPlainText().strip()
|
|
conf["meeting_prompt"] = ("" if meeting_prompt == cfg.default_meeting_prompt()
|
|
else meeting_prompt)
|
|
|
|
conf["file_timestamps"] = self.file_timestamps.isChecked()
|
|
conf["file_cleanup"] = self.file_cleanup.isChecked()
|
|
|
|
conf["shortcut"] = self.shortcut.text().strip() or "Ctrl+Space"
|
|
conf["evdev_hotkey"] = self.evdev_enabled.isChecked()
|
|
conf["history_limit"] = self.history_limit.value()
|
|
conf.save()
|
|
# A lowered limit should bite now, not on the next dictation.
|
|
try:
|
|
cfg.trim_history(conf["history_limit"])
|
|
except OSError as exc:
|
|
print(f"dikte: could not trim the history ({exc})")
|
|
self._load_history() # the trim may just have dropped rows from the list
|
|
self.applied.emit()
|
|
QMessageBox.information(self, t("Dikte Settings"), t("Saved successfully."))
|
|
|
|
@staticmethod
|
|
def _select_data(combo, value):
|
|
index = combo.findData(value)
|
|
combo.setCurrentIndex(index if index >= 0 else 0)
|
|
|
|
# ---- api helpers -----------------------------------------------------
|
|
|
|
def _provider_changed(self):
|
|
"""Swap the model box over to the newly chosen provider's own model."""
|
|
if self._shown_provider:
|
|
self._models[self._shown_provider] = self.transcribe_model.currentText().strip()
|
|
provider = self.transcribe_provider.currentData() or "openai"
|
|
self._shown_provider = provider
|
|
self.transcribe_model.clear()
|
|
self.transcribe_model.addItems(TRANSCRIBE_MODELS[provider])
|
|
self.transcribe_model.setCurrentText(self._models[provider])
|
|
self.transcribe_status.setText("")
|
|
|
|
def _load_transcribe_models(self):
|
|
"""The model list of whichever provider is selected."""
|
|
provider = self.transcribe_provider.currentData() or "openai"
|
|
self.refresh_transcribe_models.setEnabled(False)
|
|
self.transcribe_status.setText(t("Fetching model list…"))
|
|
openai_key = self.openai_key.text().strip() or self.conf.openai_key()
|
|
openrouter_key = self.openrouter_key.text().strip() or self.conf.openrouter_key()
|
|
base = self.conf["openai_base_url"]
|
|
|
|
def work():
|
|
try:
|
|
models = (api.openrouter_models(openrouter_key, transcription=True)
|
|
if provider == "openrouter"
|
|
else api.openai_models(openai_key, base))
|
|
self._transcribe_models_loaded.emit(models, "")
|
|
except api.ApiError as exc:
|
|
self._transcribe_models_loaded.emit([], str(exc))
|
|
|
|
threading.Thread(target=work, daemon=True).start()
|
|
|
|
def _on_transcribe_models_loaded(self, models, error):
|
|
self.refresh_transcribe_models.setEnabled(True)
|
|
if error:
|
|
self.transcribe_status.setText(t("Could not fetch the list: {error}", error=error))
|
|
return
|
|
current = self.transcribe_model.currentText()
|
|
self.transcribe_model.clear()
|
|
self.transcribe_model.addItems(models)
|
|
self.transcribe_model.setCurrentText(current)
|
|
self.transcribe_status.setText(t("{count} models loaded.", count=len(models)))
|
|
|
|
def _load_models(self):
|
|
self.refresh_models.setEnabled(False)
|
|
self.models_label.setText(t("Fetching model list…"))
|
|
key = self.openrouter_key.text().strip() or self.conf.openrouter_key()
|
|
|
|
def work():
|
|
try:
|
|
self._models_loaded.emit(api.openrouter_models(key), "")
|
|
except api.ApiError as exc:
|
|
self._models_loaded.emit([], str(exc))
|
|
|
|
threading.Thread(target=work, daemon=True).start()
|
|
|
|
def _on_models_loaded(self, models, error):
|
|
self.refresh_models.setEnabled(True)
|
|
if error:
|
|
self.models_label.setText(t("Could not fetch the list: {error}", error=error))
|
|
return
|
|
for combo in (self.cleanup_model, self.meeting_model):
|
|
current = combo.currentText()
|
|
combo.clear()
|
|
combo.addItems(models)
|
|
combo.setCurrentText(current)
|
|
self.models_label.setText(t("{count} models loaded.", count=len(models)))
|
|
|
|
def _test_openai(self):
|
|
self.test_button.setEnabled(False)
|
|
self.test_label.setText(t("Trying…"))
|
|
key = self.openai_key.text().strip() or self.conf.openai_key()
|
|
base = self.conf["openai_base_url"]
|
|
|
|
def work():
|
|
try:
|
|
models = api.openai_models(key, base)
|
|
self._test_done.emit(
|
|
True, t("Connection works. {count} audio models visible.", count=len(models))
|
|
)
|
|
except api.ApiError as exc:
|
|
self._test_done.emit(False, str(exc))
|
|
|
|
threading.Thread(target=work, daemon=True).start()
|
|
|
|
def _test_openrouter(self):
|
|
self.or_test_button.setEnabled(False)
|
|
self.or_test_label.setText(t("Trying…"))
|
|
key = self.openrouter_key.text().strip() or self.conf.openrouter_key()
|
|
|
|
def work():
|
|
try:
|
|
self._or_test_done.emit(True, api.openrouter_key_status(key))
|
|
except api.ApiError as exc:
|
|
self._or_test_done.emit(False, str(exc))
|
|
|
|
threading.Thread(target=work, daemon=True).start()
|
|
|
|
def _on_or_test_done(self, ok, message):
|
|
self.or_test_button.setEnabled(True)
|
|
self.or_test_label.setText(("✓ " if ok else "✗ ") + message)
|
|
|
|
def _on_test_done(self, ok, message):
|
|
self.test_button.setEnabled(True)
|
|
self.test_label.setText(("✓ " if ok else "✗ ") + message)
|
|
|
|
# ---- audio file ------------------------------------------------------
|
|
|
|
def _choose_file(self):
|
|
start = self.conf["file_last_dir"] or os.path.expanduser("~")
|
|
path, _ = QFileDialog.getOpenFileName(
|
|
self, t("Select an audio file"), start,
|
|
f"{t('Audio and video files')} ({AUDIO_FILTER});;{t('All files')} (*)",
|
|
)
|
|
if not path:
|
|
return
|
|
self.file_path = path
|
|
self.file_label.setText(os.path.basename(path))
|
|
self.conf["file_last_dir"] = os.path.dirname(path)
|
|
|
|
def _run_file(self):
|
|
if not getattr(self, "file_path", "") or self.transcriber.busy:
|
|
return
|
|
self.file_output.clear()
|
|
self.file_segments = []
|
|
self.file_save_srt.setEnabled(False)
|
|
self.file_run.setEnabled(False)
|
|
self.file_stop.setEnabled(True)
|
|
self.transcriber.start(
|
|
self.file_path,
|
|
self.file_timestamps.isChecked(),
|
|
self.file_cleanup.isChecked(),
|
|
)
|
|
|
|
def _on_file_progress(self, message):
|
|
self.file_status.setText(message)
|
|
if message == t("Stopped."):
|
|
self._file_idle()
|
|
|
|
def _on_file_finished(self, text, segments):
|
|
self.file_output.setPlainText(text)
|
|
self.file_segments = segments
|
|
self.file_save_srt.setEnabled(bool(segments))
|
|
self.file_status.setText(t("Done: {chars} characters.", chars=len(text)))
|
|
self._file_idle()
|
|
|
|
def _on_file_failed(self, error):
|
|
self.file_status.setText(t("Failed: {error}", error=error))
|
|
self._file_idle()
|
|
|
|
def _file_idle(self):
|
|
self.file_run.setEnabled(True)
|
|
self.file_stop.setEnabled(False)
|
|
|
|
def _save_transcript(self):
|
|
self._write_transcript(self.file_output.toPlainText(), ".txt",
|
|
f"{t('Text files')} (*.txt)")
|
|
|
|
def _save_subtitles(self):
|
|
srt = filetranscribe.to_srt(self.file_output.toPlainText(),
|
|
getattr(self, "file_segments", []))
|
|
if not srt:
|
|
self.file_status.setText(t("No timestamped lines to turn into subtitles."))
|
|
return
|
|
self._write_transcript(srt, ".srt", f"{t('Subtitle files')} (*.srt)")
|
|
|
|
def _write_transcript(self, text, suffix, file_filter):
|
|
if not text:
|
|
return
|
|
base = os.path.splitext(os.path.basename(getattr(self, "file_path", "")))[0]
|
|
start = os.path.join(self.conf["file_last_dir"] or os.path.expanduser("~"),
|
|
f"{base or 'transcript'}{suffix}")
|
|
path, _ = QFileDialog.getSaveFileName(
|
|
self, t("Save transcript"), start, file_filter
|
|
)
|
|
if not path:
|
|
return
|
|
if not path.lower().endswith(suffix):
|
|
path += suffix
|
|
try:
|
|
with open(path, "w", encoding="utf-8") as fh:
|
|
fh.write(text)
|
|
self.file_status.setText(t("Saved: {path}", path=path))
|
|
except OSError as exc:
|
|
self.file_status.setText(t("Failed: {error}", error=exc))
|
|
|
|
# ---- shortcut --------------------------------------------------------
|
|
|
|
def _install_shortcut(self):
|
|
combo = self.shortcut.text().strip() or "Ctrl+Space"
|
|
clashes = hotkey.conflicting_shortcuts(combo)
|
|
if clashes:
|
|
answer = QMessageBox.question(
|
|
self, t("Shortcut conflict"),
|
|
t("{shortcut} is also used by:\n\n{list}\n\nInstall anyway?",
|
|
shortcut=combo, list="\n".join(clashes[:6])),
|
|
)
|
|
if answer != QMessageBox.StandardButton.Yes:
|
|
return
|
|
ok, message = hotkey.install_kde_shortcut(combo, self.launch_command)
|
|
QMessageBox.information(self, t("Shortcut"), message)
|
|
if ok:
|
|
self.conf["shortcut"] = combo
|
|
self.conf.save()
|
|
self._refresh_shortcut_status()
|
|
|
|
def _remove_shortcut(self):
|
|
hotkey.remove_kde_shortcut()
|
|
self._refresh_shortcut_status()
|
|
|
|
def _refresh_shortcut_status(self):
|
|
current = hotkey.kde_shortcut_status()
|
|
self.shortcut_status.setText(
|
|
t("Registered in KDE: {shortcut}", shortcut=current) if current
|
|
else t("No KDE shortcut installed.")
|
|
)
|
|
|
|
def _install_meeting_shortcut(self):
|
|
combo = self.meeting_shortcut.text().strip()
|
|
if not combo:
|
|
QMessageBox.information(self, t("Shortcut"),
|
|
t("Type a key combination first."))
|
|
return
|
|
clashes = hotkey.conflicting_shortcuts(combo, hotkey.MEETING_DESKTOP_ID)
|
|
if clashes:
|
|
answer = QMessageBox.question(
|
|
self, t("Shortcut conflict"),
|
|
t("{shortcut} is also used by:\n\n{list}\n\nInstall anyway?",
|
|
shortcut=combo, list="\n".join(clashes[:6])),
|
|
)
|
|
if answer != QMessageBox.StandardButton.Yes:
|
|
return
|
|
ok, message = hotkey.install_kde_shortcut(
|
|
combo, self.meeting_command, name="Dikte: start/end a meeting recording",
|
|
desktop_id=hotkey.MEETING_DESKTOP_ID,
|
|
)
|
|
QMessageBox.information(self, t("Shortcut"), message)
|
|
if ok:
|
|
self.conf["meeting_shortcut"] = combo
|
|
self.conf.save()
|
|
self._refresh_meeting_shortcut_status()
|
|
|
|
def _remove_meeting_shortcut(self):
|
|
hotkey.remove_kde_shortcut(hotkey.MEETING_DESKTOP_ID)
|
|
self._refresh_meeting_shortcut_status()
|
|
|
|
def _refresh_meeting_shortcut_status(self):
|
|
current = hotkey.kde_shortcut_status(hotkey.MEETING_DESKTOP_ID)
|
|
self.meeting_shortcut_status.setText(
|
|
t("Registered in KDE: {shortcut}", shortcut=current) if current
|
|
else t("No KDE shortcut installed. The tray menu starts a meeting too.")
|
|
)
|
|
|
|
# ---- minutes ---------------------------------------------------------
|
|
|
|
def _load_minutes(self):
|
|
self.minutes_list.clear()
|
|
for row in reversed(cfg.read_meetings()):
|
|
title = row.get("title") or t("Meeting")
|
|
head = f"{row.get('ts', '')} · {meeting.length_label(row.get('duration', 0))}"
|
|
state = MEETING_STATUS.get(row.get("status", ""), "")
|
|
if state:
|
|
head += " · " + t(state)
|
|
item = QListWidgetItem(f"{head}\n{title}")
|
|
item.setData(Qt.ItemDataRole.UserRole, row)
|
|
self.minutes_list.addItem(item)
|
|
if not self.minutes_list.count():
|
|
self.minutes_view.clear()
|
|
self.minutes_retry.setEnabled(False)
|
|
|
|
def _selected_meeting(self):
|
|
item = self.minutes_list.currentItem()
|
|
return item.data(Qt.ItemDataRole.UserRole) if item is not None else None
|
|
|
|
def _show_minutes(self, *_):
|
|
row = self._selected_meeting()
|
|
if not row:
|
|
self.minutes_view.clear()
|
|
self.minutes_retry.setEnabled(False)
|
|
return
|
|
doc_path, _wav = cfg.meeting_paths(row["base"])
|
|
try:
|
|
self.minutes_view.setPlainText(doc_path.read_text(encoding="utf-8"))
|
|
except OSError:
|
|
self.minutes_view.setPlainText(
|
|
row.get("error") or t("Nothing has been written yet.")
|
|
)
|
|
busy = self.meetings is not None and self.meetings.busy
|
|
self.minutes_retry.setEnabled(
|
|
self.meetings is not None and not busy and row.get("status") != "done"
|
|
)
|
|
|
|
def _retry_minutes(self):
|
|
row = self._selected_meeting()
|
|
if not row or self.meetings is None or self.meetings.busy:
|
|
return
|
|
# A row that already has its transcript resumes from there; only a run
|
|
# that never got that far goes back to the audio.
|
|
self.meetings.run(row)
|
|
self.minutes_retry.setEnabled(False)
|
|
self.minutes_status.setText(t("Working…"))
|
|
|
|
def _delete_minutes(self):
|
|
row = self._selected_meeting()
|
|
if not row:
|
|
return
|
|
if self.meetings is not None and self.meetings.running_base == row["base"]:
|
|
QMessageBox.information(self, t("Minutes"),
|
|
t("This one is being written up right now."))
|
|
return
|
|
if not self._confirm(
|
|
t("Delete this meeting, its minutes and its recording?"), t("Minutes")
|
|
):
|
|
return
|
|
try:
|
|
cfg.delete_meetings([row["base"]])
|
|
except OSError as exc:
|
|
QMessageBox.warning(self, t("Minutes"), t("Failed: {error}", error=exc))
|
|
self._load_minutes()
|
|
|
|
def _on_minutes_progress(self, _base, message):
|
|
self.minutes_status.setText(message)
|
|
|
|
def _on_minutes_finished(self, _base, title):
|
|
self.minutes_status.setText(t("Done: {title}", title=title))
|
|
self._load_minutes()
|
|
|
|
def _on_minutes_failed(self, _base, error):
|
|
self.minutes_status.setText(t("Failed: {error}", error=error))
|
|
self._load_minutes()
|
|
|
|
# ---- history ---------------------------------------------------------
|
|
|
|
def _load_history(self):
|
|
self.history.clear()
|
|
for row in reversed(cfg.read_history(self.conf["history_limit"])):
|
|
text = (row.get("text") or "").replace("\n", " ")
|
|
preview = text[:110] + ("…" if len(text) > 110 else "")
|
|
header = t("{ts} ({duration} s)",
|
|
ts=row.get("ts", ""), duration=row.get("duration", 0))
|
|
item = QListWidgetItem(f"{header}\n{preview}")
|
|
item.setData(Qt.ItemDataRole.UserRole, row)
|
|
self.history.addItem(item)
|
|
|
|
def _selected_rows(self):
|
|
"""Selected entries, newest first, the order they are listed in."""
|
|
items = sorted(self.history.selectedItems(), key=self.history.row)
|
|
return [item.data(Qt.ItemDataRole.UserRole) for item in items]
|
|
|
|
def _copy_history(self):
|
|
rows = self._selected_rows()
|
|
if rows:
|
|
QGuiApplication.clipboard().setText(
|
|
"\n\n".join(row.get("text", "") for row in rows)
|
|
)
|
|
|
|
def _delete_history(self):
|
|
rows = self._selected_rows()
|
|
if not rows:
|
|
return
|
|
# One entry goes without asking; a multi-selection is easy to make by
|
|
# accident, and there is no undo.
|
|
if len(rows) > 1 and not self._confirm(
|
|
t("Delete the {count} selected entries?", count=len(rows))
|
|
):
|
|
return
|
|
self._rewrite_history(lambda: cfg.delete_history(rows))
|
|
|
|
def _clear_history(self):
|
|
if not self.history.count():
|
|
return
|
|
if not self._confirm(t("Delete the whole history? This cannot be undone.")):
|
|
return
|
|
self._rewrite_history(cfg.clear_history)
|
|
|
|
def _confirm(self, question, title=None):
|
|
answer = QMessageBox.question(
|
|
self, title or t("History"), question,
|
|
QMessageBox.StandardButton.Yes | QMessageBox.StandardButton.No,
|
|
QMessageBox.StandardButton.No,
|
|
)
|
|
return answer == QMessageBox.StandardButton.Yes
|
|
|
|
def _rewrite_history(self, action):
|
|
try:
|
|
action()
|
|
except OSError as exc:
|
|
QMessageBox.warning(self, t("History"), t("Failed: {error}", error=exc))
|
|
self._load_history()
|
|
|
|
def _history_menu(self, pos):
|
|
item = self.history.itemAt(pos)
|
|
if item is not None and not item.isSelected():
|
|
self.history.setCurrentItem(item)
|
|
menu = QMenu(self)
|
|
copy = menu.addAction(t("Copy selected to clipboard"))
|
|
delete = menu.addAction(t("Delete selected"))
|
|
menu.addSeparator()
|
|
clear = menu.addAction(t("Clear history"))
|
|
has_selection = bool(self.history.selectedItems())
|
|
copy.setEnabled(has_selection)
|
|
delete.setEnabled(has_selection)
|
|
clear.setEnabled(self.history.count() > 0)
|
|
chosen = menu.exec(self.history.viewport().mapToGlobal(pos))
|
|
if chosen is copy:
|
|
self._copy_history()
|
|
elif chosen is delete:
|
|
self._delete_history()
|
|
elif chosen is clear:
|
|
self._clear_history()
|