~ubuntu-branches/ubuntu/quantal/kdepim/quantal

« back to all changes in this revision

Viewing changes to templateparser/templatestextedit.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:51 UTC
  • mto: This revision was merged to the branch mainline in revision 193.
  • Revision ID: package-import@ubuntu.com-20111215141751-bmhdpiwl23wd9w26
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2011 Laurent Montel <montel@kde.org>
 
2
 *
 
3
 * This library is free software; you can redistribute it and/or
 
4
 * modify it under the terms of the GNU Library General Public
 
5
 * License as published by the Free Software Foundation; either
 
6
 * version 2 of the License, or (at your option) any later version.
 
7
 *
 
8
 * This library is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Library General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Library General Public License
 
14
 * along with this library; see the file COPYING.LIB.  If not, write to
 
15
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
16
 * Boston, MA 02110-1301, USA.
 
17
 */
 
18
 
 
19
#ifndef TEMPLATESTEXTEDIT_H
 
20
#define TEMPLATESTEXTEDIT_H
 
21
#include "templateparser_export.h"
 
22
 
 
23
#include <KTextEdit>
 
24
class QCompleter;
 
25
 
 
26
namespace TemplateParser {
 
27
class TEMPLATEPARSER_EXPORT TemplatesTextEdit : public KTextEdit
 
28
{
 
29
  Q_OBJECT
 
30
public:
 
31
  explicit TemplatesTextEdit( QWidget *parent );
 
32
  virtual ~TemplatesTextEdit();
 
33
 
 
34
 
 
35
protected slots:
 
36
  void slotInsertCompletion( const QString& );
 
37
  QString wordUnderCursor();
 
38
protected:
 
39
  void initCompleter();
 
40
  void keyPressEvent(QKeyEvent* e);  
 
41
private:
 
42
  QCompleter *m_completer;
 
43
};
 
44
 
 
45
}
 
46
 
 
47
#endif /* TEMPLATESTEXTEDIT_H */
 
48