Merge remote-tracking branch 'origin/KDE/4.10'
[kdepim.git] / templateparser / templatesconfiguration.h
blob805d37842b009edf8ebd890b071d7fa782a04bb0
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 #include "templatesinsertcommand.h"
26 namespace TemplateParser {
28 class TEMPLATEPARSER_EXPORT TemplatesConfiguration : public QWidget, Ui::TemplatesConfigurationBase
30 Q_OBJECT
32 public:
34 explicit TemplatesConfiguration( QWidget *parent = 0, const char *name = 0 );
36 void loadFromGlobal();
37 void saveToGlobal();
38 void loadFromIdentity( uint id );
39 void saveToIdentity( uint id );
40 void loadFromFolder( const QString &id, uint identity = 0 );
41 void saveToFolder( const QString &id );
42 void resetToDefault();
44 QLabel *helpLabel() const { return mHelp; }
46 /**
47 * Returns the template configuration identifier string for a given identity.
49 static QString configIdString( uint id );
51 public Q_SLOTS:
52 void slotInsertCommand( const QString &cmd, int adjustCursor = 0 );
53 void slotTextChanged();
55 signals:
56 void changed();
58 protected:
59 QString strOrBlank( const QString &str );
60 QString mHelpString;
62 private:
63 KTextEdit *currentTextEdit() const;
65 private Q_SLOTS:
66 void slotHelpLinkClicked( const QString & );
71 #endif