FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cppcheck/gui/projectfiledialog.cpp at master · 2php/cppcheck · GitHub
2php
/
cppcheck
Public
forked from
cppcheck-opensource/cppcheck
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cppcheck
/
gui
/
projectfiledialog.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
675 lines (601 loc) · 22.6 KB
Breadcrumbs
cppcheck
/
gui
/
projectfiledialog.cpp
Copy path
File metadata and controls
675 lines (601 loc) · 22.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
/*
* Cppcheck - A tool for static C/C++ code analysis
* Copyright (C) 2007-2018 Cppcheck team.
*
* 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 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 <http://www.gnu.org/licenses/>.
*/
#
include
<
QWidget
>
#
include
<
QDialog
>
#
include
<
QString
>
#
include
<
QStringList
>
#
include
<
QFileInfo
>
#
include
<
QFileDialog
>
#
include
<
QInputDialog
>
#
include
<
QDir
>
#
include
<
QSettings
>
#
include
<
QProcess
>
#
include
"
common.h
"
#
include
"
newsuppressiondialog.h
"
#
include
"
projectfiledialog.h
"
#
include
"
checkthread.h
"
#
include
"
projectfile.h
"
#
include
"
library.h
"
#
include
"
platforms.h
"
/*
* Platforms shown in the platform combobox
*/
static
const
cppcheck::Platform::PlatformType builtinPlatforms[] = {
cppcheck::Platform::Native,
cppcheck::Platform::Win32A,
cppcheck::Platform::Win32W,
cppcheck::Platform::Win64,
cppcheck::Platform::Unix32,
cppcheck::Platform::Unix64
};
static
const
int
numberOfBuiltinPlatforms =
sizeof
(builtinPlatforms) /
sizeof
(builtinPlatforms[
0
]);
ProjectFileDialog::ProjectFileDialog
(ProjectFile *projectFile, QWidget *parent)
: QDialog(parent)
, mProjectFile(projectFile)
{
mUI
.
setupUi
(
this
);
mUI
.
mToolClangAnalyzer
->
hide
();
const
QFileInfo
inf
(projectFile->
getFilename
());
QString filename = inf.
fileName
();
QString title =
tr
(
"
Project file: %1
"
).
arg
(filename);
setWindowTitle
(title);
loadSettings
();
//
Checkboxes for the libraries..
const
QString applicationFilePath =
QCoreApplication::applicationFilePath
();
const
QString appPath =
QFileInfo
(applicationFilePath).
canonicalPath
();
QSettings settings;
#
ifdef
CFGDIR
const
QString cfgdir =
CFGDIR
;
#
endif
const
QString datadir = settings.
value
(
"
DATADIR
"
,
QString
()).
toString
();
QStringList searchPaths;
searchPaths << appPath << appPath +
"
/cfg
"
<< inf.
canonicalPath
();
#
ifdef
CFGDIR
if
(!cfgdir.
isEmpty
())
searchPaths << cfgdir << cfgdir +
"
/cfg
"
;
#
endif
if
(!datadir.
isEmpty
())
searchPaths << datadir << datadir +
"
/cfg
"
;
QStringList libs;
foreach
(
const
QString sp, searchPaths) {
QDir
dir
(sp);
dir.
setSorting
(QDir::Name);
dir.
setNameFilters
(
QStringList
(
"
*.cfg
"
));
dir.
setFilter
(QDir::Files | QDir::NoDotAndDotDot);
foreach
(QFileInfo item, dir.
entryInfoList
()) {
QString library = item.
fileName
();
{
Library lib;
const
QString fullfilename = sp +
"
/
"
+ library;
const
Library::Error err = lib.
load
(
nullptr
, fullfilename.
toLatin1
());
if
(err.
errorcode
!= Library::
OK
)
continue
;
}
library.
chop
(
4
);
if
(library.
compare
(
"
std
"
, Qt::CaseInsensitive) ==
0
)
continue
;
if
(libs.
indexOf
(library) == -
1
)
libs << library;
}
}
qSort
(libs);
foreach
(
const
QString library, libs) {
QCheckBox *checkbox =
new
QCheckBox
(
this
);
checkbox->
setText
(library);
mUI
.
mLayoutLibraries
->
addWidget
(checkbox);
mLibraryCheckboxes
<< checkbox;
}
//
Platforms..
Platforms p;
for
(
int
i =
0
; i < numberOfBuiltinPlatforms; i++)
mUI
.
mComboBoxPlatform
->
addItem
(p.
get
(builtinPlatforms[i]).
mTitle
);
QStringList platformFiles;
foreach
(QString sp, searchPaths) {
if
(sp.
endsWith
(
"
/cfg
"
))
sp = sp.
mid
(
0
,sp.
length
()-
3
) +
"
platforms
"
;
QDir
dir
(sp);
dir.
setSorting
(QDir::Name);
dir.
setNameFilters
(
QStringList
(
"
*.xml
"
));
dir.
setFilter
(QDir::Files | QDir::NoDotAndDotDot);
foreach
(QFileInfo item, dir.
entryInfoList
()) {
const
QString platformFile = item.
fileName
();
cppcheck::Platform p;
if
(!p.
loadPlatformFile
(applicationFilePath.
toStdString
().
c_str
(), platformFile.
toStdString
()))
continue
;
if
(platformFiles.
indexOf
(platformFile) == -
1
)
platformFiles << platformFile;
}
}
qSort
(platformFiles);
mUI
.
mComboBoxPlatform
->
addItems
(platformFiles);
mUI
.
mEditTags
->
setValidator
(
new
QRegExpValidator
(
QRegExp
(
"
[a-zA-Z0-9 ;]*
"
),
this
));
connect
(
mUI
.
mButtons
, &QDialogButtonBox::accepted,
this
, &ProjectFileDialog::ok);
connect
(
mUI
.
mBtnBrowseBuildDir
, &QPushButton::clicked,
this
, &ProjectFileDialog::browseBuildDir);
connect
(
mUI
.
mBtnClearImportProject
, &QPushButton::clicked,
this
, &ProjectFileDialog::clearImportProject);
connect
(
mUI
.
mBtnBrowseImportProject
, &QPushButton::clicked,
this
, &ProjectFileDialog::browseImportProject);
connect
(
mUI
.
mBtnAddCheckPath
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
addCheckPath
()));
connect
(
mUI
.
mBtnEditCheckPath
, &QPushButton::clicked,
this
, &ProjectFileDialog::editCheckPath);
connect
(
mUI
.
mBtnRemoveCheckPath
, &QPushButton::clicked,
this
, &ProjectFileDialog::removeCheckPath);
connect
(
mUI
.
mBtnAddInclude
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
addIncludeDir
()));
connect
(
mUI
.
mBtnEditInclude
, &QPushButton::clicked,
this
, &ProjectFileDialog::editIncludeDir);
connect
(
mUI
.
mBtnRemoveInclude
, &QPushButton::clicked,
this
, &ProjectFileDialog::removeIncludeDir);
connect
(
mUI
.
mBtnAddIgnorePath
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
addExcludePath
()));
connect
(
mUI
.
mBtnEditIgnorePath
, &QPushButton::clicked,
this
, &ProjectFileDialog::editExcludePath);
connect
(
mUI
.
mBtnRemoveIgnorePath
, &QPushButton::clicked,
this
, &ProjectFileDialog::removeExcludePath);
connect
(
mUI
.
mBtnIncludeUp
, &QPushButton::clicked,
this
, &ProjectFileDialog::moveIncludePathUp);
connect
(
mUI
.
mBtnIncludeDown
, &QPushButton::clicked,
this
, &ProjectFileDialog::moveIncludePathDown);
connect
(
mUI
.
mBtnAddSuppression
, &QPushButton::clicked,
this
, &ProjectFileDialog::addSuppression);
connect
(
mUI
.
mBtnRemoveSuppression
, &QPushButton::clicked,
this
, &ProjectFileDialog::removeSuppression);
connect
(
mUI
.
mBtnBrowseMisraFile
, &QPushButton::clicked,
this
, &ProjectFileDialog::browseMisraFile);
loadFromProjectFile
(projectFile);
}
ProjectFileDialog::~ProjectFileDialog
()
{
saveSettings
();
}
void
ProjectFileDialog::loadSettings
()
{
QSettings settings;
resize
(settings.
value
(
SETTINGS_PROJECT_DIALOG_WIDTH
,
470
).
toInt
(),
settings.
value
(
SETTINGS_PROJECT_DIALOG_HEIGHT
,
330
).
toInt
());
}
void
ProjectFileDialog::saveSettings
()
const
{
QSettings settings;
settings.
setValue
(
SETTINGS_PROJECT_DIALOG_WIDTH
,
size
().
width
());
settings.
setValue
(
SETTINGS_PROJECT_DIALOG_HEIGHT
,
size
().
height
());
}
static
void
updateAddonCheckBox
(QCheckBox *cb,
const
ProjectFile *projectFile,
const
QString &dataDir,
const
QString &addon)
{
if
(projectFile)
cb->
setChecked
(projectFile->
getAddons
().
contains
(addon));
if
(
CheckThread::getAddonFilePath
(dataDir, addon +
"
.py
"
).
isEmpty
()) {
cb->
setEnabled
(
false
);
cb->
setText
(cb->
text
() +
QObject::tr
(
"
(Not found)
"
));
}
}
void
ProjectFileDialog::loadFromProjectFile
(
const
ProjectFile *projectFile)
{
setRootPath
(projectFile->
getRootPath
());
setBuildDir
(projectFile->
getBuildDir
());
setIncludepaths
(projectFile->
getIncludeDirs
());
setDefines
(projectFile->
getDefines
());
setCheckPaths
(projectFile->
getCheckPaths
());
setImportProject
(projectFile->
getImportProject
());
mUI
.
mChkAllVsConfigs
->
setChecked
(projectFile->
getAnalyzeAllVsConfigs
());
setExcludedPaths
(projectFile->
getExcludedPaths
());
setLibraries
(projectFile->
getLibraries
());
const
QString platform = projectFile->
getPlatform
();
if
(platform.
endsWith
(
"
.xml
"
)) {
int
i;
for
(i = numberOfBuiltinPlatforms; i <
mUI
.
mComboBoxPlatform
->
count
(); ++i) {
if
(
mUI
.
mComboBoxPlatform
->
itemText
(i) == platform)
break
;
}
if
(i <
mUI
.
mComboBoxPlatform
->
count
())
mUI
.
mComboBoxPlatform
->
setCurrentIndex
(i);
else
{
mUI
.
mComboBoxPlatform
->
addItem
(platform);
mUI
.
mComboBoxPlatform
->
setCurrentIndex
(i);
}
}
else
{
int
i;
for
(i =
0
; i < numberOfBuiltinPlatforms; ++i) {
const
cppcheck::Platform::PlatformType p = builtinPlatforms[i];
if
(platform ==
cppcheck::Platform::platformString
(p))
break
;
}
if
(i < numberOfBuiltinPlatforms)
mUI
.
mComboBoxPlatform
->
setCurrentIndex
(i);
else
mUI
.
mComboBoxPlatform
->
setCurrentIndex
(-
1
);
}
mUI
.
mComboBoxPlatform
->
setCurrentText
(projectFile->
getPlatform
());
setSuppressions
(projectFile->
getSuppressions
());
QSettings settings;
const
QString dataDir = settings.
value
(
"
DATADIR
"
,
QString
()).
toString
();
updateAddonCheckBox
(
mUI
.
mAddonThreadSafety
, projectFile, dataDir,
"
threadsafety
"
);
updateAddonCheckBox
(
mUI
.
mAddonY2038
, projectFile, dataDir,
"
y2038
"
);
updateAddonCheckBox
(
mUI
.
mAddonCert
, projectFile, dataDir,
"
cert
"
);
updateAddonCheckBox
(
mUI
.
mAddonMisra
, projectFile, dataDir,
"
misra
"
);
const
QString &misraFile = settings.
value
(
SETTINGS_MISRA_FILE
,
QString
()).
toString
();
mUI
.
mEditMisraFile
->
setText
(misraFile);
if
(!
mUI
.
mAddonMisra
->
isEnabled
()) {
mUI
.
mEditMisraFile
->
setEnabled
(
false
);
mUI
.
mBtnBrowseMisraFile
->
setEnabled
(
false
);
}
else
if
(misraFile.
isEmpty
()) {
mUI
.
mAddonMisra
->
setEnabled
(
false
);
mUI
.
mAddonMisra
->
setText
(
mUI
.
mAddonMisra
->
text
() +
'
'
+
tr
(
"
(no rule texts file)
"
));
}
mUI
.
mToolClangAnalyzer
->
setChecked
(projectFile->
getClangAnalyzer
());
mUI
.
mToolClangTidy
->
setChecked
(projectFile->
getClangTidy
());
if
(
CheckThread::clangTidyCmd
().
isEmpty
()) {
mUI
.
mToolClangTidy
->
setText
(
tr
(
"
Clang-tidy (not found)
"
));
mUI
.
mToolClangTidy
->
setEnabled
(
false
);
}
QString tags;
foreach
(
const
QString tag, projectFile->
getTags
()) {
if
(tags.
isEmpty
())
tags = tag;
else
tags +=
'
;
'
+ tag;
}
mUI
.
mEditTags
->
setText
(tags);
updatePathsAndDefines
();
}
void
ProjectFileDialog::saveToProjectFile
(ProjectFile *projectFile)
const
{
projectFile->
setRootPath
(
getRootPath
());
projectFile->
setBuildDir
(
getBuildDir
());
projectFile->
setImportProject
(
getImportProject
());
projectFile->
setAnalyzeAllVsConfigs
(
mUI
.
mChkAllVsConfigs
->
isChecked
());
projectFile->
setIncludes
(
getIncludePaths
());
projectFile->
setDefines
(
getDefines
());
projectFile->
setCheckPaths
(
getCheckPaths
());
projectFile->
setExcludedPaths
(
getExcludedPaths
());
projectFile->
setLibraries
(
getLibraries
());
if
(
mUI
.
mComboBoxPlatform
->
currentText
().
endsWith
(
"
.xml
"
))
projectFile->
setPlatform
(
mUI
.
mComboBoxPlatform
->
currentText
());
else
{
int
i =
mUI
.
mComboBoxPlatform
->
currentIndex
();
if
(i < numberOfBuiltinPlatforms)
projectFile->
setPlatform
(
cppcheck::Platform::platformString
(builtinPlatforms[i]));
else
projectFile->
setPlatform
(
QString
());
}
projectFile->
setSuppressions
(
getSuppressions
());
QStringList list;
if
(
mUI
.
mAddonThreadSafety
->
isChecked
())
list <<
"
threadsafety
"
;
if
(
mUI
.
mAddonY2038
->
isChecked
())
list <<
"
y2038
"
;
if
(
mUI
.
mAddonCert
->
isChecked
())
list <<
"
cert
"
;
if
(
mUI
.
mAddonMisra
->
isChecked
())
list <<
"
misra
"
;
projectFile->
setAddons
(list);
projectFile->
setClangAnalyzer
(
mUI
.
mToolClangAnalyzer
->
isChecked
());
projectFile->
setClangTidy
(
mUI
.
mToolClangTidy
->
isChecked
());
QStringList
tags
(
mUI
.
mEditTags
->
text
().
split
(
"
;
"
));
tags.
removeAll
(
QString
());
projectFile->
setTags
(tags);
}
void
ProjectFileDialog::ok
()
{
saveToProjectFile
(
mProjectFile
);
mProjectFile
->
write
();
accept
();
}
QString
ProjectFileDialog::getExistingDirectory
(
const
QString &caption,
bool
trailingSlash)
{
const
QFileInfo
inf
(
mProjectFile
->
getFilename
());
const
QString rootpath = inf.
absolutePath
();
QString selectedDir =
QFileDialog::getExistingDirectory
(
this
,
caption,
rootpath);
if
(selectedDir.
isEmpty
())
return
QString
();
//
Check if the path is relative to project file's path and if so
//
make it a relative path instead of absolute path.
const
QDir
dir
(rootpath);
const
QString
relpath
(dir.
relativeFilePath
(selectedDir));
if
(!relpath.
startsWith
(
"
.
"
))
selectedDir = relpath;
//
Trailing slash..
if
(trailingSlash && !selectedDir.
endsWith
(
'
/
'
))
selectedDir +=
'
/
'
;
return
selectedDir;
}
void
ProjectFileDialog::browseBuildDir
()
{
const
QString
dir
(
getExistingDirectory
(
tr
(
"
Select Cppcheck build dir
"
),
false
));
if
(!dir.
isEmpty
())
mUI
.
mEditBuildDir
->
setText
(dir);
}
void
ProjectFileDialog::updatePathsAndDefines
()
{
const
QString &fileName =
mUI
.
mEditImportProject
->
text
();
bool
importProject = !fileName.
isEmpty
();
mUI
.
mBtnClearImportProject
->
setEnabled
(importProject);
mUI
.
mListCheckPaths
->
setEnabled
(!importProject);
mUI
.
mListIncludeDirs
->
setEnabled
(!importProject);
mUI
.
mBtnAddCheckPath
->
setEnabled
(!importProject);
mUI
.
mBtnEditCheckPath
->
setEnabled
(!importProject);
mUI
.
mBtnRemoveCheckPath
->
setEnabled
(!importProject);
mUI
.
mEditDefines
->
setEnabled
(!importProject);
mUI
.
mBtnAddInclude
->
setEnabled
(!importProject);
mUI
.
mBtnEditInclude
->
setEnabled
(!importProject);
mUI
.
mBtnRemoveInclude
->
setEnabled
(!importProject);
mUI
.
mBtnIncludeUp
->
setEnabled
(!importProject);
mUI
.
mBtnIncludeDown
->
setEnabled
(!importProject);
mUI
.
mChkAllVsConfigs
->
setEnabled
(fileName.
endsWith
(
"
.sln
"
) || fileName.
endsWith
(
"
.vcxproj
"
));
}
void
ProjectFileDialog::clearImportProject
()
{
mUI
.
mEditImportProject
->
clear
();
updatePathsAndDefines
();
}
void
ProjectFileDialog::browseImportProject
()
{
const
QFileInfo
inf
(
mProjectFile
->
getFilename
());
const
QDir &dir = inf.
absoluteDir
();
QMap<QString,QString> filters;
filters[
tr
(
"
Visual Studio
"
)] =
"
*.sln *.vcxproj
"
;
filters[
tr
(
"
Compile database
"
)] =
"
compile_commands.json
"
;
filters[
tr
(
"
Borland C++ Builder 6
"
)] =
"
*.bpr
"
;
QString fileName =
QFileDialog::getOpenFileName
(
this
,
tr
(
"
Import Project
"
),
dir.
canonicalPath
(),
toFilterString
(filters));
if
(!fileName.
isEmpty
()) {
mUI
.
mEditImportProject
->
setText
(dir.
relativeFilePath
(fileName));
updatePathsAndDefines
();
}
}
QString
ProjectFileDialog::getImportProject
()
const
{
return
mUI
.
mEditImportProject
->
text
();
}
void
ProjectFileDialog::addIncludeDir
(
const
QString &dir)
{
if
(dir.
isNull
() || dir.
isEmpty
())
return
;
const
QString newdir =
QDir::toNativeSeparators
(dir);
QListWidgetItem *item =
new
QListWidgetItem
(newdir);
item->
setFlags
(item->
flags
() | Qt::ItemIsEditable);
mUI
.
mListIncludeDirs
->
addItem
(item);
}
void
ProjectFileDialog::addCheckPath
(
const
QString &path)
{
if
(path.
isNull
() || path.
isEmpty
())
return
;
const
QString newpath =
QDir::toNativeSeparators
(path);
QListWidgetItem *item =
new
QListWidgetItem
(newpath);
item->
setFlags
(item->
flags
() | Qt::ItemIsEditable);
mUI
.
mListCheckPaths
->
addItem
(item);
}
void
ProjectFileDialog::addExcludePath
(
const
QString &path)
{
if
(path.
isNull
() || path.
isEmpty
())
return
;
const
QString newpath =
QDir::toNativeSeparators
(path);
QListWidgetItem *item =
new
QListWidgetItem
(newpath);
item->
setFlags
(item->
flags
() | Qt::ItemIsEditable);
mUI
.
mListExcludedPaths
->
addItem
(item);
}
QString
ProjectFileDialog::getRootPath
()
const
{
QString root =
mUI
.
mEditProjectRoot
->
text
();
root = root.
trimmed
();
root =
QDir::fromNativeSeparators
(root);
return
root;
}
QString
ProjectFileDialog::getBuildDir
()
const
{
return
mUI
.
mEditBuildDir
->
text
();
}
QStringList
ProjectFileDialog::getIncludePaths
()
const
{
const
int
count =
mUI
.
mListIncludeDirs
->
count
();
QStringList includePaths;
for
(
int
i =
0
; i < count; i++) {
QListWidgetItem *item =
mUI
.
mListIncludeDirs
->
item
(i);
includePaths <<
QDir::fromNativeSeparators
(item->
text
());
}
return
includePaths;
}
QStringList
ProjectFileDialog::getDefines
()
const
{
QString define =
mUI
.
mEditDefines
->
text
();
QStringList defines;
if
(!define.
isEmpty
()) {
define = define.
trimmed
();
if
(define.
indexOf
(
'
;
'
) != -
1
)
defines = define.
split
(
"
;
"
);
else
defines.
append
(define);
}
return
defines;
}
QStringList
ProjectFileDialog::getCheckPaths
()
const
{
const
int
count =
mUI
.
mListCheckPaths
->
count
();
QStringList paths;
for
(
int
i =
0
; i < count; i++) {
QListWidgetItem *item =
mUI
.
mListCheckPaths
->
item
(i);
paths <<
QDir::fromNativeSeparators
(item->
text
());
}
return
paths;
}
QStringList
ProjectFileDialog::getExcludedPaths
()
const
{
const
int
count =
mUI
.
mListExcludedPaths
->
count
();
QStringList paths;
for
(
int
i =
0
; i < count; i++) {
QListWidgetItem *item =
mUI
.
mListExcludedPaths
->
item
(i);
paths <<
QDir::fromNativeSeparators
(item->
text
());
}
return
paths;
}
QStringList
ProjectFileDialog::getLibraries
()
const
{
QStringList libraries;
foreach
(
const
QCheckBox *checkbox,
mLibraryCheckboxes
) {
if
(checkbox->
isChecked
())
libraries << checkbox->
text
();
}
return
libraries;
}
void
ProjectFileDialog::setRootPath
(
const
QString &root)
{
mUI
.
mEditProjectRoot
->
setText
(
QDir::toNativeSeparators
(root));
}
void
ProjectFileDialog::setBuildDir
(
const
QString &buildDir)
{
mUI
.
mEditBuildDir
->
setText
(buildDir);
}
void
ProjectFileDialog::setImportProject
(
const
QString &importProject)
{
mUI
.
mEditImportProject
->
setText
(importProject);
}
void
ProjectFileDialog::setIncludepaths
(
const
QStringList &includes)
{
foreach
(QString dir, includes) {
addIncludeDir
(dir);
}
}
void
ProjectFileDialog::setDefines
(
const
QStringList &defines)
{
QString definestr;
QString define;
foreach
(define, defines) {
definestr += define;
definestr +=
"
;
"
;
}
//
Remove ; from the end of the string
if
(definestr.
endsWith
(
'
;
'
))
definestr = definestr.
left
(definestr.
length
() -
1
);
mUI
.
mEditDefines
->
setText
(definestr);
}
void
ProjectFileDialog::setCheckPaths
(
const
QStringList &paths)
{
foreach
(QString path, paths) {
addCheckPath
(path);
}
}
void
ProjectFileDialog::setExcludedPaths
(
const
QStringList &paths)
{
foreach
(QString path, paths) {
addExcludePath
(path);
}
}
void
ProjectFileDialog::setLibraries
(
const
QStringList &libraries)
{
for
(
int
i =
0
; i <
mLibraryCheckboxes
.
size
(); i++) {
QCheckBox *checkbox =
mLibraryCheckboxes
[i];
checkbox->
setChecked
(libraries.
contains
(checkbox->
text
()));
}
}
void
ProjectFileDialog::setSuppressions
(
const
QList<Suppressions::Suppression> &suppressions)
{
mSuppressions
= suppressions;
QStringList s;
foreach
(
const
Suppressions::Suppression &suppression,
mSuppressions
) {
s <<
QString::fromStdString
(suppression.
getText
());
}
mUI
.
mListSuppressions
->
clear
();
mUI
.
mListSuppressions
->
addItems
(s);
mUI
.
mListSuppressions
->
sortItems
();
}
void
ProjectFileDialog::addCheckPath
()
{
QString dir =
getExistingDirectory
(
tr
(
"
Select a directory to check
"
),
false
);
if
(!dir.
isEmpty
())
addCheckPath
(dir);
}
void
ProjectFileDialog::editCheckPath
()
{
QListWidgetItem *item =
mUI
.
mListCheckPaths
->
currentItem
();
mUI
.
mListCheckPaths
->
editItem
(item);
}
void
ProjectFileDialog::removeCheckPath
()
{
const
int
row =
mUI
.
mListCheckPaths
->
currentRow
();
QListWidgetItem *item =
mUI
.
mListCheckPaths
->
takeItem
(row);
delete
item;
}
void
ProjectFileDialog::addIncludeDir
()
{
const
QString dir =
getExistingDirectory
(
tr
(
"
Select include directory
"
),
true
);
if
(!dir.
isEmpty
())
addIncludeDir
(dir);
}
void
ProjectFileDialog::removeIncludeDir
()
{
const
int
row =
mUI
.
mListIncludeDirs
->
currentRow
();
QListWidgetItem *item =
mUI
.
mListIncludeDirs
->
takeItem
(row);
delete
item;
}
void
ProjectFileDialog::editIncludeDir
()
{
QListWidgetItem *item =
mUI
.
mListIncludeDirs
->
currentItem
();
mUI
.
mListIncludeDirs
->
editItem
(item);
}
void
ProjectFileDialog::addExcludePath
()
{
QString dir =
getExistingDirectory
(
tr
(
"
Select directory to ignore
"
),
true
);
if
(!dir.
isEmpty
())
addExcludePath
(dir);
}
void
ProjectFileDialog::editExcludePath
()
{
QListWidgetItem *item =
mUI
.
mListExcludedPaths
->
currentItem
();
mUI
.
mListExcludedPaths
->
editItem
(item);
}
void
ProjectFileDialog::removeExcludePath
()
{
const
int
row =
mUI
.
mListExcludedPaths
->
currentRow
();
QListWidgetItem *item =
mUI
.
mListExcludedPaths
->
takeItem
(row);
delete
item;
}
void
ProjectFileDialog::moveIncludePathUp
()
{
int
row =
mUI
.
mListIncludeDirs
->
currentRow
();
QListWidgetItem *item =
mUI
.
mListIncludeDirs
->
takeItem
(row);
row = row >
0
? row -
1
:
0
;
mUI
.
mListIncludeDirs
->
insertItem
(row, item);
mUI
.
mListIncludeDirs
->
setCurrentItem
(item);
}
void
ProjectFileDialog::moveIncludePathDown
()
{
int
row =
mUI
.
mListIncludeDirs
->
currentRow
();
QListWidgetItem *item =
mUI
.
mListIncludeDirs
->
takeItem
(row);
const
int
count =
mUI
.
mListIncludeDirs
->
count
();
row = row < count ? row +
1
: count;
mUI
.
mListIncludeDirs
->
insertItem
(row, item);
mUI
.
mListIncludeDirs
->
setCurrentItem
(item);
}
void
ProjectFileDialog::addSuppression
()
{
NewSuppressionDialog dlg;
if
(dlg.
exec
() == QDialog::Accepted) {
setSuppressions
(
mSuppressions
<< dlg.
getSuppression
());
}
}
void
ProjectFileDialog::removeSuppression
()
{
const
int
row =
mUI
.
mListSuppressions
->
currentRow
();
QListWidgetItem *item =
mUI
.
mListSuppressions
->
takeItem
(row);
const
std::string s = item->
text
().
toStdString
();
delete
item;
for
(
int
i =
0
; i <
mSuppressions
.
size
(); ++i) {
if
(
mSuppressions
[i].
getText
() == s) {
mSuppressions
.
removeAt
(i);
break
;
}
}
}
void
ProjectFileDialog::browseMisraFile
()
{
const
QString fileName =
QFileDialog::getOpenFileName
(
this
,
tr
(
"
Select MISRA rule texts file
"
),
QDir::homePath
(),
tr
(
"
Misra rule texts file (%1)
"
).
arg
(
"
*.txt
"
));
if
(!fileName.
isEmpty
()) {
QSettings settings;
mUI
.
mEditMisraFile
->
setText
(fileName);
settings.
setValue
(
SETTINGS_MISRA_FILE
, fileName);
mUI
.
mAddonMisra
->
setText
(
"
MISRA C 2012
"
);
mUI
.
mAddonMisra
->
setEnabled
(
true
);
updateAddonCheckBox
(
mUI
.
mAddonMisra
,
nullptr
, settings.
value
(
"
DATADIR
"
,
QString
()).
toString
(),
"
misra
"
);
}
}
Back
|
FazBrowse Home
|
New Git URL