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
System
KSystemLog
Commits
c18a3e8c
Commit
c18a3e8c
authored
Mar 04, 2022
by
Laurent Montel
Browse files
Show headers in qtc6
parent
e7d67e3f
Pipeline
#145009
passed with stage
in 1 minute and 47 seconds
Changes
18
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -38,6 +38,15 @@ target_sources(ksystemlog PRIVATE
tabLogViewsWidget.cpp
tabLogManager.cpp
statusBar.cpp
mainWindow.h
logModePluginsLoader.h
loggerDialog.h
detailDialog.h
generalConfigurationWidget.h
configurationDialog.h
tabLogViewsWidget.h
tabLogManager.h
statusBar.h
)
ki18n_wrap_ui
(
ksystemlog
...
...
src/lib/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -36,6 +36,37 @@ target_sources(ksystemlog_lib PRIVATE
simpleAction.cpp
multipleActions.cpp
levelPrintPage.cpp
analyzer.h
fileAnalyzer.h
logModeFactory.h
logModeConfiguration.h
logModeConfigurationWidget.h
logModeItemBuilder.h
logManager.h
view.h
globals.h
logMode.h
logLevel.h
logFile.h
logFileReader.h
localLogFileReader.h
processOutputLogFileReader.h
kioLogFileReader.h
logLine.h
logViewModel.h
logViewColumn.h
logViewColumns.h
logViewWidgetItem.h
logViewWidget.h
logViewExport.h
logViewFilterWidget.h
logViewSearchWidget.h
loadingBar.h
logModeAction.h
simpleAction.h
multipleActions.h
levelPrintPage.h
)
ecm_qt_declare_logging_category
(
ksystemlog_lib HEADER ksystemlog_debug.h IDENTIFIER KSYSTEMLOG CATEGORY_NAME log_ksystemlog DESCRIPTION
"ksystemlog"
EXPORT KSYSTEMLOG
)
...
...
src/modes/acpid/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -7,6 +7,12 @@ target_sources(ksystemlog_acpid PRIVATE
acpidItemBuilder.cpp
acpidLogMode.cpp
acpidFactory.cpp
acpidConfigurationWidget.h
acpidConfiguration.h
acpidAnalyzer.h
acpidItemBuilder.h
acpidLogMode.h
acpidFactory.h
)
...
...
src/modes/apache/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -10,7 +10,17 @@ target_sources(ksystemlog_apache PRIVATE
apacheFactory.cpp
apacheLogMode.cpp
apacheAccessLogMode.cpp
)
apacheConfiguration.h
apacheConfigurationWidget.h
apacheAnalyzer.h
apacheItemBuilder.h
apacheAccessAnalyzer.h
apacheAccessItemBuilder.h
apacheFactory.h
apacheLogMode.h
apacheAccessLogMode.h
)
add_dependencies
(
...
...
src/modes/authentication/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -6,7 +6,13 @@ target_sources(ksystemlog_authentication PRIVATE
authenticationAnalyzer.cpp
authenticationLogMode.cpp
authenticationFactory.cpp
)
authenticationConfigurationWidget.h
authenticationConfiguration.h
authenticationAnalyzer.h
authenticationLogMode.h
authenticationFactory.h
)
add_dependencies
(
...
...
src/modes/base/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -9,7 +9,16 @@ target_sources(ksystemlog_base_mode PRIVATE
logLevelSelectionDialog.cpp
genericConfiguration.cpp
syslogAnalyzer.cpp
)
parsingHelper.h
fileList.h
logLevelFileList.h
multipleFileList.h
fileListHelper.h
logLevelSelectionDialog.h
genericConfiguration.h
syslogAnalyzer.h
)
ki18n_wrap_ui
(
ksystemlog_base_mode fileListBase.ui
)
ki18n_wrap_ui
(
ksystemlog_base_mode multipleFileListBase.ui
)
...
...
src/modes/cron/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -7,7 +7,14 @@ target_sources(ksystemlog_cron PRIVATE
cronItemBuilder.cpp
cronLogMode.cpp
cronFactory.cpp
)
cronConfigurationWidget.h
cronConfiguration.h
cronAnalyzer.h
cronItemBuilder.h
cronLogMode.h
cronFactory.h
)
add_dependencies
(
...
...
src/modes/cups/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -21,7 +21,28 @@ target_sources(ksystemlog_cups PRIVATE
cupsPdfLogMode.cpp
cupsFactory.cpp
cupsConfiguration.h
cupsConfigurationWidget.h
cupsAnalyzer.h
cupsItemBuilder.h
cupsLogMode.h
cupsAccessAnalyzer.h
cupsAccessItemBuilder.h
cupsAccessLogMode.h
cupsPageAnalyzer.h
cupsPageItemBuilder.h
cupsPageLogMode.h
cupsPdfAnalyzer.h
cupsPdfItemBuilder.h
cupsPdfLogMode.h
cupsFactory.h
)
...
...
src/modes/daemon/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -5,7 +5,12 @@ target_sources(ksystemlog_daemon PRIVATE
daemonConfiguration.cpp
daemonLogMode.cpp
daemonFactory.cpp
)
daemonConfigurationWidget.h
daemonConfiguration.h
daemonLogMode.h
daemonFactory.h
)
add_dependencies
(
...
...
src/modes/journald/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -11,6 +11,17 @@ target_sources(ksystemlog_journald PRIVATE
journaldLogMode.cpp
journaldNetworkAnalyzer.cpp
journaldTypes.cpp
journaldAddressDialog.h
journaldAnalyzer.h
journaldConfiguration.h
journaldConfigurationWidget.h
journaldFactory.h
journaldItemBuilder.h
journaldLocalAnalyzer.h
journaldLogMode.h
journaldNetworkAnalyzer.h
journaldTypes.h
)
ki18n_wrap_ui
(
ksystemlog_journald journaldAddressDialog.ui journaldConfigurationWidget.ui
)
...
...
src/modes/kernel/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -4,7 +4,12 @@ target_sources(ksystemlog_kernel PRIVATE
kernelAnalyzer.cpp
kernelLogMode.cpp
kernelItemBuilder.cpp
)
kernelFactory.h
kernelAnalyzer.h
kernelLogMode.h
kernelItemBuilder.h
)
add_dependencies
(
...
...
src/modes/open/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -3,7 +3,11 @@ target_sources(ksystemlog_open PRIVATE
openAnalyzer.cpp
openFactory.cpp
openLogMode.cpp
)
openAnalyzer.h
openFactory.h
openLogMode.h
)
...
...
src/modes/postfix/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -5,7 +5,13 @@ target_sources(ksystemlog_postfix PRIVATE
postfixConfiguration.cpp
postfixAnalyzer.cpp
postfixLogMode.cpp
)
postfixFactory.h
postfixConfigurationWidget.h
postfixConfiguration.h
postfixAnalyzer.h
postfixLogMode.h
)
add_dependencies
(
...
...
src/modes/samba/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -8,7 +8,16 @@ target_sources(ksystemlog_samba PRIVATE
sambaAccessLogMode.cpp
netbiosLogMode.cpp
sambaFactory.cpp
sambaConfiguration.h
sambaConfigurationWidget.h
sambaAnalyzer.h
sambaLogMode.h
sambaItemBuilder.h
sambaAccessLogMode.h
netbiosLogMode.h
sambaFactory.h
)
...
...
src/modes/system/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -5,7 +5,13 @@ target_sources(ksystemlog_system PRIVATE
systemConfiguration.cpp
systemAnalyzer.cpp
systemLogMode.cpp
)
systemFactory.h
systemConfigurationWidget.h
systemConfiguration.h
systemAnalyzer.h
systemLogMode.h
)
add_dependencies
(
...
...
src/modes/xorg/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -6,7 +6,14 @@ target_sources(ksystemlog_xorg PRIVATE
xorgItemBuilder.cpp
xorgLogMode.cpp
xorgFactory.cpp
)
xorgConfigurationWidget.h
xorgConfiguration.h
xorgAnalyzer.h
xorgItemBuilder.h
xorgLogMode.h
xorgFactory.h
)
add_dependencies
(
...
...
src/modes/xsession/CMakeLists.txt
View file @
c18a3e8c
...
...
@@ -6,7 +6,14 @@ target_sources(ksystemlog_xsession PRIVATE
xsessionItemBuilder.cpp
xsessionLogMode.cpp
xsessionFactory.cpp
)
xsessionConfigurationWidget.h
xsessionConfiguration.h
xsessionAnalyzer.h
xsessionItemBuilder.h
xsessionLogMode.h
xsessionFactory.h
)
ki18n_wrap_ui
(
ksystemlog_xsession xsessionConfigurationWidgetBase.ui
)
...
...
src/tabLogManager.h
View file @
c18a3e8c
...
...
@@ -29,7 +29,7 @@ public:
void
addNewLinesCount
(
int
newLines
);
void
initNewLinesCount
();
QString
title
()
const
;
Q_REQUIRED_RESULT
QString
title
()
const
;
private:
QString
logModeName
()
const
;
...
...
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