Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Utilities
KDebugSettings
Commits
de6cc888
Commit
de6cc888
authored
Jul 16, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start to implement group support
parent
11549f15
Pipeline
#27354
passed with stage
in 16 minutes and 12 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
68 additions
and
0 deletions
+68
-0
src/CMakeLists.txt
src/CMakeLists.txt
+1
-0
src/loadgroupmenu.cpp
src/loadgroupmenu.cpp
+33
-0
src/loadgroupmenu.h
src/loadgroupmenu.h
+34
-0
No files found.
src/CMakeLists.txt
View file @
de6cc888
...
...
@@ -15,6 +15,7 @@ set(kdebugsettings_LIB_SRCS
categorytypecombobox.cpp
environmentplaintextedit.cpp
changedebugmodejob.cpp
loadgroupmenu.cpp
${
kdebugsettings_debug_SRCS
}
)
...
...
src/loadgroupmenu.cpp
0 → 100644
View file @
de6cc888
/*
Copyright (c) 2020 Laurent Montel <montel@kde.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#include "loadgroupmenu.h"
LoadGroupMenu
::
LoadGroupMenu
(
QWidget
*
parent
)
:
QMenu
(
parent
)
{
}
LoadGroupMenu
::~
LoadGroupMenu
()
{
}
src/loadgroupmenu.h
0 → 100644
View file @
de6cc888
/*
Copyright (c) 2020 Laurent Montel <montel@kde.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#ifndef LOADGROUPMENU_H
#define LOADGROUPMENU_H
#include <QMenu>
class
LoadGroupMenu
:
public
QMenu
{
Q_OBJECT
public:
explicit
LoadGroupMenu
(
QWidget
*
parent
);
~
LoadGroupMenu
();
};
#endif // LOADGROUPMENU_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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