Proof-reading - fixed one usage of the i18n plural form (it wasn't doing before,...
[kdeadmin.git] / ksystemlog / src / tabLogManager.cpp
blob7a9e24ebf06e4d050a4f28c051b9a8ccb4f39cd8
1 /***************************************************************************
2 * KSystemLog, a system log viewer tool *
3 * Copyright (C) 2007 by Nicolas Ternisien *
4 * nicolas.ternisien@gmail.com *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the *
18 * Free Software Foundation, Inc., *
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
20 ***************************************************************************/
22 #include "tabLogManager.h"
26 #include <klocale.h>
28 #include "logging.h"
30 #include "view.h"
32 #include "logMode.h"
33 #include "defaults.h"
34 #include "logManager.h"
36 class TabLogManagerPrivate {
37 public:
38 LogManager* logManager;
39 int newLinesCount;
43 TabLogManager::TabLogManager(LogManager* logManager) :
44 d(new TabLogManagerPrivate()) {
46 d->logManager = logManager;
48 d->newLinesCount = 0;
51 TabLogManager::~TabLogManager() {
53 delete d->logManager->usedView();
55 delete d->logManager;
57 delete d;
61 LogManager* TabLogManager::logManager() {
62 return d->logManager;
65 void TabLogManager::addNewLinesCount(int newLines) {
66 d->newLinesCount += newLines;
69 void TabLogManager::initNewLinesCount() {
70 d->newLinesCount = 0;
73 QString TabLogManager::title() {
74 if (d->newLinesCount == 0)
75 return logModeName();
76 else
77 return i18nc("Log mode name (added lines count)", "%1 (%2)", d->logManager->logMode()->name(), d->newLinesCount);
80 QString TabLogManager::logModeName() {
81 if (d->logManager->logMode() == NULL)
82 return i18nc("Newly created tab", "Empty Log");
83 else
84 return d->logManager->logMode()->name();
87 #include "tabLogManager.moc"