Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KDE PIM Add-ons
Commits
edbb1957
Commit
edbb1957
authored
Aug 22, 2022
by
Laurent Montel
Browse files
Prepare dialogbox
parent
c5a514cf
Pipeline
#221080
passed with stage
in 12 minutes and 31 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
plugins/customtoolsplugins/translatorplugin/CMakeLists.txt
View file @
edbb1957
...
...
@@ -6,6 +6,10 @@ target_sources(pimcommon_translatorplugin PRIVATE
translatorview.cpp
translatorplugin.h
translatorview.h
translatorconfiguredialog.h
translatorconfiguredialog.cpp
translatorconfigurewidget.h
translatorconfigurewidget.cpp
)
if
(
COMPILE_WITH_UNITY_CMAKE_SUPPORT
)
...
...
plugins/customtoolsplugins/translatorplugin/translatorconfiguredialog.cpp
0 → 100644
View file @
edbb1957
/*
SPDX-FileCopyrightText: 2022 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include
"translatorconfiguredialog.h"
TranslatorConfigureDialog
::
TranslatorConfigureDialog
(
QWidget
*
parent
)
:
QDialog
(
parent
)
{
}
TranslatorConfigureDialog
::~
TranslatorConfigureDialog
()
{
}
plugins/customtoolsplugins/translatorplugin/translatorconfiguredialog.h
0 → 100644
View file @
edbb1957
/*
SPDX-FileCopyrightText: 2022 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include
<QDialog>
class
TranslatorConfigureDialog
:
public
QDialog
{
public:
explicit
TranslatorConfigureDialog
(
QWidget
*
parent
=
nullptr
);
~
TranslatorConfigureDialog
()
override
;
};
plugins/customtoolsplugins/translatorplugin/translatorconfigurewidget.cpp
0 → 100644
View file @
edbb1957
/*
SPDX-FileCopyrightText: 2022 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include
"translatorconfigurewidget.h"
#include
<KLocalizedString>
#include
<QVBoxLayout>
TranslatorConfigureWidget
::
TranslatorConfigureWidget
(
QWidget
*
parent
)
:
QWidget
{
parent
}
{
}
TranslatorConfigureWidget
::~
TranslatorConfigureWidget
()
{
}
plugins/customtoolsplugins/translatorplugin/translatorconfigurewidget.h
0 → 100644
View file @
edbb1957
/*
SPDX-FileCopyrightText: 2022 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include
<QWidget>
class
TranslatorConfigureWidget
:
public
QWidget
{
Q_OBJECT
public:
explicit
TranslatorConfigureWidget
(
QWidget
*
parent
=
nullptr
);
~
TranslatorConfigureWidget
()
override
;
};
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment