mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-05-30 19:09:14 -04:00
174 lines
4.7 KiB
C++
174 lines
4.7 KiB
C++
// Copyright (C) 2024-2026 Petr Mironychev
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <utils/aspects.h>
|
|
#include <QPointer>
|
|
|
|
#include "ButtonAspect.hpp"
|
|
#include "ConfigurationManager.hpp"
|
|
|
|
namespace Utils {
|
|
class DetailsWidget;
|
|
}
|
|
|
|
namespace QodeAssist::PluginLLMCore {
|
|
class Provider;
|
|
}
|
|
namespace QodeAssist::Settings {
|
|
|
|
class GeneralSettings : public Utils::AspectContainer
|
|
{
|
|
public:
|
|
GeneralSettings();
|
|
|
|
Utils::BoolAspect enableQodeAssist{this};
|
|
Utils::BoolAspect enableLogging{this};
|
|
Utils::BoolAspect enableCheckUpdate{this};
|
|
|
|
ButtonAspect checkUpdate{this};
|
|
ButtonAspect resetToDefaults{this};
|
|
|
|
// code completion setttings
|
|
Utils::SelectionAspect ccPresetConfig{this};
|
|
ButtonAspect ccConfigureApiKey{this};
|
|
|
|
Utils::StringAspect ccProvider{this};
|
|
ButtonAspect ccSelectProvider{this};
|
|
|
|
Utils::StringAspect ccModel{this};
|
|
ButtonAspect ccSelectModel{this};
|
|
|
|
Utils::StringAspect ccTemplate{this};
|
|
ButtonAspect ccSelectTemplate{this};
|
|
|
|
Utils::StringAspect ccUrl{this};
|
|
ButtonAspect ccSetUrl{this};
|
|
|
|
Utils::StringAspect ccCustomEndpoint{this};
|
|
|
|
Utils::StringAspect ccStatus{this};
|
|
ButtonAspect ccTest{this};
|
|
|
|
Utils::StringAspect ccTemplateDescription{this};
|
|
|
|
ButtonAspect ccSaveConfig{this};
|
|
ButtonAspect ccLoadConfig{this};
|
|
ButtonAspect ccOpenConfigFolder{this};
|
|
|
|
// TODO create dynamic presets system
|
|
// preset1 for code completion settings
|
|
Utils::BoolAspect specifyPreset1{this};
|
|
Utils::SelectionAspect preset1Language{this};
|
|
|
|
Utils::StringAspect ccPreset1Provider{this};
|
|
ButtonAspect ccPreset1SelectProvider{this};
|
|
|
|
Utils::StringAspect ccPreset1Url{this};
|
|
ButtonAspect ccPreset1SetUrl{this};
|
|
|
|
Utils::StringAspect ccPreset1CustomEndpoint{this};
|
|
|
|
Utils::StringAspect ccPreset1Model{this};
|
|
ButtonAspect ccPreset1SelectModel{this};
|
|
|
|
Utils::StringAspect ccPreset1Template{this};
|
|
ButtonAspect ccPreset1SelectTemplate{this};
|
|
|
|
// chat assistant settings
|
|
Utils::SelectionAspect caPresetConfig{this};
|
|
ButtonAspect caConfigureApiKey{this};
|
|
|
|
Utils::StringAspect caProvider{this};
|
|
ButtonAspect caSelectProvider{this};
|
|
|
|
Utils::StringAspect caModel{this};
|
|
ButtonAspect caSelectModel{this};
|
|
|
|
Utils::StringAspect caTemplate{this};
|
|
ButtonAspect caSelectTemplate{this};
|
|
|
|
Utils::StringAspect caUrl{this};
|
|
ButtonAspect caSetUrl{this};
|
|
|
|
Utils::StringAspect caCustomEndpoint{this};
|
|
|
|
Utils::StringAspect caStatus{this};
|
|
ButtonAspect caTest{this};
|
|
|
|
Utils::StringAspect caTemplateDescription{this};
|
|
|
|
ButtonAspect caSaveConfig{this};
|
|
ButtonAspect caLoadConfig{this};
|
|
ButtonAspect caOpenConfigFolder{this};
|
|
|
|
// quick refactor settings
|
|
Utils::SelectionAspect qrPresetConfig{this};
|
|
ButtonAspect qrConfigureApiKey{this};
|
|
|
|
Utils::StringAspect qrProvider{this};
|
|
ButtonAspect qrSelectProvider{this};
|
|
|
|
Utils::StringAspect qrModel{this};
|
|
ButtonAspect qrSelectModel{this};
|
|
|
|
Utils::StringAspect qrTemplate{this};
|
|
ButtonAspect qrSelectTemplate{this};
|
|
|
|
Utils::StringAspect qrUrl{this};
|
|
ButtonAspect qrSetUrl{this};
|
|
|
|
Utils::StringAspect qrCustomEndpoint{this};
|
|
|
|
Utils::StringAspect qrStatus{this};
|
|
ButtonAspect qrTest{this};
|
|
|
|
Utils::StringAspect qrTemplateDescription{this};
|
|
|
|
ButtonAspect qrSaveConfig{this};
|
|
ButtonAspect qrLoadConfig{this};
|
|
ButtonAspect qrOpenConfigFolder{this};
|
|
|
|
ButtonAspect ccShowTemplateInfo{this};
|
|
ButtonAspect caShowTemplateInfo{this};
|
|
ButtonAspect qrShowTemplateInfo{this};
|
|
|
|
void showSelectionDialog(
|
|
const QStringList &data,
|
|
Utils::StringAspect &aspect,
|
|
const QString &title = {},
|
|
const QString &text = {});
|
|
|
|
void showModelsNotFoundDialog(Utils::StringAspect &aspect);
|
|
|
|
void showModelsNotSupportedDialog(Utils::StringAspect &aspect);
|
|
|
|
void showUrlSelectionDialog(Utils::StringAspect &aspect, const QStringList &predefinedUrls);
|
|
|
|
void showTemplateInfoDialog(const Utils::StringAspect &descriptionAspect, const QString &templateName);
|
|
|
|
void updatePreset1Visiblity(bool state);
|
|
|
|
void onSaveConfiguration(const QString &prefix);
|
|
void onLoadConfiguration(const QString &prefix);
|
|
|
|
void loadPresetConfigurations(Utils::SelectionAspect &aspect, ConfigurationType type);
|
|
void applyPresetConfiguration(int index, ConfigurationType type);
|
|
|
|
private:
|
|
void setupConnections();
|
|
void resetPageToDefaults();
|
|
|
|
QVector<AIConfiguration> m_ccPresets;
|
|
QVector<AIConfiguration> m_caPresets;
|
|
QVector<AIConfiguration> m_qrPresets;
|
|
};
|
|
|
|
GeneralSettings &generalSettings();
|
|
|
|
void showSettings(const Utils::Id page);
|
|
void showSettings(const Utils::Id page, Utils::Id item);
|
|
|
|
} // namespace QodeAssist::Settings
|