SVN_SILENT made messages (after extraction)
[kdepim.git] / templateparser / src / templatesconfiguration.h
blobfb7e18eaa400f6f68e8e58a225a77c432c2e8e90
1 /*
2 * Copyright (C) 2006 Dmitry Morozhnikov <dmiceman@mail.ru>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #ifndef TEMPLATEPARSER_TEMPLATESCONFIGURATION_H
20 #define TEMPLATEPARSER_TEMPLATESCONFIGURATION_H
22 #include "templateparser_export.h"
23 #include "ui_templatesconfiguration_base.h"
24 class QPlainTextEdit;
25 namespace TemplateParser
27 class TemplatesConfigurationPrivate;
28 class TEMPLATEPARSER_EXPORT TemplatesConfiguration : public QWidget, Ui::TemplatesConfigurationBase
30 Q_OBJECT
32 public:
34 explicit TemplatesConfiguration(QWidget *parent = Q_NULLPTR, const QString &name = QString());
35 ~TemplatesConfiguration();
37 void loadFromGlobal();
38 void saveToGlobal();
39 void loadFromIdentity(uint id);
40 void saveToIdentity(uint id);
41 void loadFromFolder(const QString &id, uint identity = 0);
42 void saveToFolder(const QString &id);
43 void resetToDefault();
45 QLabel *helpLabel() const;
47 /**
48 * Returns the template configuration identifier string for a given identity.
50 static QString configIdString(uint id);
52 public Q_SLOTS:
53 void slotInsertCommand(const QString &cmd, int adjustCursor = 0);
54 void slotTextChanged();
56 private Q_SLOTS:
57 void slotHelpLinkClicked(const QString &);
59 Q_SIGNALS:
60 void changed();
62 private:
63 QPlainTextEdit *currentTextEdit() const;
64 QString strOrBlank(const QString &str);
65 TemplatesConfigurationPrivate *const d;
70 #endif