summaryrefslogtreecommitdiffstats
path: root/src/gui/lineedit.h
blob: d2f9873cadf168966743ca597f2def743502dcde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/***************************************************************************
    copyright            : (C) 2005-2006 by Robby Stephenson
    email                : robby@periapsis.org
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of version 2 of the GNU General Public License as  *
 *   published by the Free Software Foundation;                            *
 *                                                                         *
 ***************************************************************************/

#ifndef TELLICO_GUILINEEDIT_H
#define TELLICO_GUILINEEDIT_H

#include <klineedit.h>

#include <tqstring.h>

class TDEAction;
class KSpell;

namespace Tellico {
  namespace GUI {

/**
 * @author Robby Stephenson
 */
class LineEdit : public KLineEdit {
Q_OBJECT
  

public:
  LineEdit(TQWidget* parent = 0, const char* name = 0);

  virtual void setText(const TQString& text);
  void setHint(const TQString& hint);

  // by default, spell check is not allowed, and no popupmenu item is created
  void setAllowSpellCheck(bool b) { m_allowSpellCheck = b; }
  // spell check may be allowed but disabled
  void setEnableSpellCheck(bool b) { m_enableSpellCheck = b; }

public slots:
  void clear();

protected:
  virtual void focusInEvent(TQFocusEvent* event);
  virtual void focusOutEvent(TQFocusEvent* event);
  virtual void drawContents(TQPainter* painter);
  virtual TQPopupMenu* createPopupMenu();

private slots:
  void slotCheckSpelling();
  void slotSpellCheckReady(KSpell* spell);
  void slotSpellCheckDone(const TQString& text);
  void spellCheckerMisspelling(const TQString& text, const TQStringList&, unsigned int pos);
  void spellCheckerCorrected(const TQString& oldText, const TQString& newText, unsigned int pos);
  void spellCheckerFinished();

private:
  TQString m_hint;
  bool m_drawHint;
  TDEAction* m_spellAction;
  bool m_allowSpellCheck;
  bool m_enableSpellCheck;
  KSpell* m_spell;
};

  } // end namespace
} // end namespace
#endif