diff --git a/kdevplatform/shell/launchconfigurationdialog.ui b/kdevplatform/shell/launchconfigurationdialog.ui index 03bc9cb475..b24ee02e68 100644 --- a/kdevplatform/shell/launchconfigurationdialog.ui +++ b/kdevplatform/shell/launchconfigurationdialog.ui @@ -1,154 +1,154 @@ LaunchConfigurationDialog 0 0 643 530 0 Qt::Horizontal Add Remove - + Qt::Horizontal 1 0 false false 0 0 Debugger: 0 0 0 0 1 Name 2 0 QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok KMessageWidget QFrame
kmessagewidget.h
1
diff --git a/kdevplatform/shell/settings/environmentwidget.ui b/kdevplatform/shell/settings/environmentwidget.ui index c7344de8f9..7d0d29d681 100644 --- a/kdevplatform/shell/settings/environmentwidget.ui +++ b/kdevplatform/shell/settings/environmentwidget.ui @@ -1,163 +1,163 @@ EnvironmentWidget 0 0 704 480 0 Environment profile: 1 0 Add profile... Clone profile... Remove profile - + Set as default 0 2 QAbstractItemView::ExtendedSelection QAbstractItemView::SelectRows true false false 0 0 Remove variable - + 0 0 Batch Edit Mode Qt::Vertical 20 40 KComboBox QComboBox
kcombobox.h
diff --git a/kdevplatform/vcs/dvcs/ui/branchmanager.ui b/kdevplatform/vcs/dvcs/ui/branchmanager.ui index e5f2f144e5..eb571f4bdf 100644 --- a/kdevplatform/vcs/dvcs/ui/branchmanager.ui +++ b/kdevplatform/vcs/dvcs/ui/branchmanager.ui @@ -1,158 +1,158 @@ BranchDialogBase 0 0 438 352 0 0 0 0 Creates new branch based on the selected branch New The same as git branch -D Delete - + Rename Qt::Vertical QSizePolicy::Fixed 20 15 <p>Show changes between the current branch (or staging area, if not empty) and the last commit on the selected branch.</p> Compare to Branch Qt::Vertical QSizePolicy::Fixed 20 15 Checkout to the selected branch Checkout Merge Qt::Vertical 20 40 QAbstractItemView::EditKeyPressed diff --git a/plugins/cmake/settings/cmakebuildsettings.ui b/plugins/cmake/settings/cmakebuildsettings.ui index 23084e3dac..5431d30076 100644 --- a/plugins/cmake/settings/cmakebuildsettings.ui +++ b/plugins/cmake/settings/cmakebuildsettings.ui @@ -1,268 +1,268 @@ CMakeBuildSettings 0 0 605 607 0 0 0 0 0 0 0 0 0 0 - + Cache Values 75 true Comment: Show Advanced true false 0 0 Advanced QFormLayout::ExpandingFieldsGrow Installation prefix: Build type: true Debug Release RelWithDebInfo MinSizeRel Extra arguments: 0 0 true Configure environment: 0 0 Select an environment to be used Show advanced values CMake executable: KComboBox QComboBox
kcombobox.h
KUrlRequester QWidget
kurlrequester.h
KDevelop::EnvironmentSelectionWidget KComboBox
util/environmentselectionwidget.h
KDevelop::EnvironmentConfigureButton QToolButton
shell/environmentconfigurebutton.h
diff --git a/plugins/custom-buildsystem/custombuildsystemconfigwidget.ui b/plugins/custom-buildsystem/custombuildsystemconfigwidget.ui index bd2e23973f..c7de3351ea 100644 --- a/plugins/custom-buildsystem/custombuildsystemconfigwidget.ui +++ b/plugins/custom-buildsystem/custombuildsystemconfigwidget.ui @@ -1,90 +1,90 @@ CustomBuildSystemConfigWidget 0 0 648 508 Build configuration: 0 0 true QComboBox::NoInsert Add Remove - + Qt::Horizontal 0 0 ConfigWidget QWidget
configwidget.h
1
diff --git a/plugins/custom-definesandincludes/compilerprovider/widget/compilerswidget.ui b/plugins/custom-definesandincludes/compilerprovider/widget/compilerswidget.ui index 181125f1c6..59b648f817 100644 --- a/plugins/custom-definesandincludes/compilerprovider/widget/compilerswidget.ui +++ b/plugins/custom-definesandincludes/compilerprovider/widget/compilerswidget.ui @@ -1,97 +1,97 @@ CompilersWidget 0 0 547 410 0 &Add &Remove - + Qt::Vertical 20 40 Name: Compiler executable: KUrlRequester QWidget
kurlrequester.h
diff --git a/plugins/custom-definesandincludes/kcm_widget/defineswidget.cpp b/plugins/custom-definesandincludes/kcm_widget/defineswidget.cpp index e22a510a51..4301231d3f 100644 --- a/plugins/custom-definesandincludes/kcm_widget/defineswidget.cpp +++ b/plugins/custom-definesandincludes/kcm_widget/defineswidget.cpp @@ -1,77 +1,77 @@ /************************************************************************ * * * Copyright 2010 Andreas Pakulat * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 or version 3 of the License, or * * (at your option) any later version. * * * * This program 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 * * General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ************************************************************************/ #include "defineswidget.h" #include #include #include "../ui_defineswidget.h" #include "definesmodel.h" #include using namespace KDevelop; DefinesWidget::DefinesWidget( QWidget* parent ) : QWidget ( parent ), ui( new Ui::DefinesWidget ) , definesModel( new DefinesModel( this ) ) { ui->setupUi( this ); ui->defines->setModel( definesModel ); ui->defines->horizontalHeader()->setSectionResizeMode( QHeaderView::Stretch ); connect( definesModel, &DefinesModel::dataChanged, this, static_cast(&DefinesWidget::definesChanged) ); connect( definesModel, &DefinesModel::rowsInserted, this, static_cast(&DefinesWidget::definesChanged) ); connect( definesModel, &DefinesModel::rowsRemoved, this, static_cast(&DefinesWidget::definesChanged) ); QAction* delDefAction = new QAction( i18n("Delete Define"), this ); delDefAction->setShortcut( QKeySequence(Qt::Key_Delete) ); delDefAction->setShortcutContext( Qt::WidgetWithChildrenShortcut ); - delDefAction->setIcon( QIcon::fromTheme(QStringLiteral("list-remove")) ); + delDefAction->setIcon( QIcon::fromTheme(QStringLiteral("edit-delete")) ); ui->defines->addAction( delDefAction ); ui->defines->setContextMenuPolicy( Qt::ActionsContextMenu ); connect( delDefAction, &QAction::triggered, this, &DefinesWidget::deleteDefine ); } void DefinesWidget::setDefines( const Defines& defines ) { bool b = blockSignals( true ); clear(); definesModel->setDefines( defines ); blockSignals( b ); } void DefinesWidget::definesChanged() { qCDebug(DEFINESANDINCLUDES) << "defines changed"; emit definesChanged( definesModel->defines() ); } void DefinesWidget::clear() { definesModel->setDefines( {} ); } void DefinesWidget::deleteDefine() { qCDebug(DEFINESANDINCLUDES) << "Deleting defines"; QModelIndexList selection = ui->defines->selectionModel()->selectedRows(); foreach( const QModelIndex& row, selection ) { definesModel->removeRow( row.row() ); } } diff --git a/plugins/custom-definesandincludes/kcm_widget/projectpathswidget.ui b/plugins/custom-definesandincludes/kcm_widget/projectpathswidget.ui index 6031caee61..cf0cf6ad37 100644 --- a/plugins/custom-definesandincludes/kcm_widget/projectpathswidget.ui +++ b/plugins/custom-definesandincludes/kcm_widget/projectpathswidget.ui @@ -1,236 +1,236 @@ ProjectPathsWidget 0 0 667 621 0 Configure which macros and include directories/files will be added to the parser during project parsing: Check this if you want the project to be reparsed to apply the changes. Reparse the project true Qt::Horizontal 40 20 0 0 0 0 <html><head/><body><p>Select compiler that will be used to retrieve standard include directories and defined macros.</p></body></html> Compiler for path: <html><head/><body><p>Select compiler that will be used to retrieve standard include directories and defined macros.</p></body></html> Edit multiply includes/defines at the same time. &Batch Edit... 0 0 Add a new sub-project path entry. false Delete current sub-project path entry. - + true 0 8 0 Includes/Imports 0 8 Defines 0 8 C/C++ Parser KComboBox QComboBox
kcombobox.h
DefinesWidget QWidget
kcm_widget/defineswidget.h
IncludesWidget QWidget
kcm_widget/includeswidget.h
ParserWidget QWidget
kcm_widget/parserwidget.h
1
diff --git a/plugins/projectfilter/projectfiltersettings.ui b/plugins/projectfilter/projectfiltersettings.ui index 40e35ad8dd..b797f4f386 100644 --- a/plugins/projectfilter/projectfiltersettings.ui +++ b/plugins/projectfilter/projectfiltersettings.ui @@ -1,114 +1,114 @@ ProjectFilterSettings 0 0 696 400 0 Configure which files and folders inside the project folder should be included or excluded: Add true Remove - + Move Up Move Down Qt::Vertical 20 40 KMessageWidget QFrame
kmessagewidget.h
1
diff --git a/plugins/qmakebuilder/qmakeconfig.ui b/plugins/qmakebuilder/qmakeconfig.ui index 87eac56048..62cd2616d4 100644 --- a/plugins/qmakebuilder/qmakeconfig.ui +++ b/plugins/qmakebuilder/qmakeconfig.ui @@ -1,93 +1,93 @@ QMakeConfig 0 0 520 552 QLayout::SetMinimumSize 0 0 0 0 - + 16777215 273 Build Settings Qt::Vertical 20 492 KComboBox QComboBox
kcombobox.h