author | sheepluva |
Fri, 21 Oct 2011 00:02:11 +0200 | |
changeset 6161 | 98486efeb0b7 |
parent 6160 | 863d3edf5690 |
child 6162 | 437116977d43 |
permissions | -rw-r--r-- |
6147 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
3 |
* Copyright (c) 2006-2007 Igor Ulyanov <iulyanov@gmail.com> |
|
4 |
* Copyright (c) 2007-2011 Andrey Korotaev <unC0Rr@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; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
6153
3881126e06e8
allow changing number of hogs or weapons with mousewheel
sheepluva
parents:
6151
diff
changeset
|
20 |
#ifndef HEDGEWARS_SMARTLINEEDIT_H |
3881126e06e8
allow changing number of hogs or weapons with mousewheel
sheepluva
parents:
6151
diff
changeset
|
21 |
#define HEDGEWARS_SMARTLINEEDIT_H |
6147 | 22 |
|
23 |
#include <QStringList> |
|
24 |
||
25 |
#include <QEvent> |
|
26 |
#include <QRegExp> |
|
27 |
||
6151
9fd5b70acb1a
give the room name edit box a history of previous room. however I hate that box from the bottom of my heart, it shall dieeeee... later...
sheepluva
parents:
6150
diff
changeset
|
28 |
#include "HistoryLineEdit.h" |
6147 | 29 |
|
30 |
/** |
|
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6153
diff
changeset
|
31 |
* @brief A {@link HistoryLineEdit} that features auto-completion with TAB key |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6153
diff
changeset
|
32 |
* and clear with ESC key. |
6150
1d98752c1fba
frontend chat input history, use arrow keys UP/DOWN
sheepluva
parents:
6149
diff
changeset
|
33 |
* |
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6153
diff
changeset
|
34 |
* Notes: |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6153
diff
changeset
|
35 |
* <ul> |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6153
diff
changeset
|
36 |
* <li>A Keyword can either be a command (if first word) or |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6153
diff
changeset
|
37 |
* a nickname (completed regardless of position in text).</li> |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6153
diff
changeset
|
38 |
* <li>Public methods for accessing keywords are <b>thread-safe.</b></li> |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6153
diff
changeset
|
39 |
* </ul> |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6153
diff
changeset
|
40 |
* |
6147 | 41 |
* @author sheepluva |
42 |
* @since 0.9.17 |
|
43 |
*/ |
|
6151
9fd5b70acb1a
give the room name edit box a history of previous room. however I hate that box from the bottom of my heart, it shall dieeeee... later...
sheepluva
parents:
6150
diff
changeset
|
44 |
class SmartLineEdit : public HistoryLineEdit |
6147 | 45 |
{ |
46 |
Q_OBJECT |
|
47 |
||
48 |
public: |
|
49 |
/** |
|
6161 | 50 |
* @brief Class constructor. |
6150
1d98752c1fba
frontend chat input history, use arrow keys UP/DOWN
sheepluva
parents:
6149
diff
changeset
|
51 |
* @param parent parent QWidget. |
1d98752c1fba
frontend chat input history, use arrow keys UP/DOWN
sheepluva
parents:
6149
diff
changeset
|
52 |
* @param maxHistorySize maximum amount of history entries kept. |
6147 | 53 |
*/ |
6150
1d98752c1fba
frontend chat input history, use arrow keys UP/DOWN
sheepluva
parents:
6149
diff
changeset
|
54 |
SmartLineEdit(QWidget * parent = 0, int maxHistorySize = 64); |
6147 | 55 |
|
56 |
/** |
|
6161 | 57 |
* @brief Adds commands to the auto-completion feature. |
6147 | 58 |
* @param commands list of commands to be added. |
59 |
*/ |
|
60 |
void addCommands(const QStringList & commands); |
|
61 |
||
62 |
/** |
|
6161 | 63 |
* @brief Adds a single nickname to the auto-completion feature. |
6147 | 64 |
* @param nickname name to be added. |
65 |
*/ |
|
66 |
void addNickname(const QString & nickname); |
|
67 |
||
68 |
/** |
|
6161 | 69 |
* @brief Removes commands from the auto-completion feature. |
6147 | 70 |
* @param commands list of commands to be removed. |
71 |
*/ |
|
72 |
void removeCommands(const QStringList & commands); |
|
73 |
||
74 |
/** |
|
6161 | 75 |
* @brief Removes a single nickname from the auto-completion feature. |
6147 | 76 |
* @param nickname name to be removed. |
77 |
*/ |
|
78 |
void removeNickname(const QString & nickname); |
|
79 |
||
6149 | 80 |
/** |
6161 | 81 |
* @brief Forget all keywords and input history. |
6149 | 82 |
*/ |
6151
9fd5b70acb1a
give the room name edit box a history of previous room. however I hate that box from the bottom of my heart, it shall dieeeee... later...
sheepluva
parents:
6150
diff
changeset
|
83 |
void reset(); |
6150
1d98752c1fba
frontend chat input history, use arrow keys UP/DOWN
sheepluva
parents:
6149
diff
changeset
|
84 |
|
1d98752c1fba
frontend chat input history, use arrow keys UP/DOWN
sheepluva
parents:
6149
diff
changeset
|
85 |
|
6147 | 86 |
protected: |
87 |
/** |
|
6161 | 88 |
* @brief Overrides method of parent class. |
6147 | 89 |
* Forward pressed TAB to parent class' method (for focus handling etc) |
90 |
* only if line is empty. |
|
6161 | 91 |
* |
6147 | 92 |
* @param event the key event. |
93 |
* @return returns true if the event was recognized. |
|
94 |
*/ |
|
95 |
virtual bool event(QEvent * event); |
|
96 |
||
97 |
/** |
|
6161 | 98 |
* @brief Overrides method of parent class. |
6147 | 99 |
* Autocompletes if TAB is reported as pressed key in the key event, |
100 |
* ESC leads to the contents being cleared. |
|
6161 | 101 |
* |
102 |
* Other keys are forwarded to parent method. |
|
103 |
* |
|
6147 | 104 |
* @param event the key event. |
105 |
*/ |
|
106 |
virtual void keyPressEvent(QKeyEvent * event); |
|
107 |
||
108 |
||
109 |
private: |
|
6161 | 110 |
QRegExp m_whitespace; /// regexp that matches a whitespace |
6147 | 111 |
|
6161 | 112 |
QStringList * m_cmds; /// list of recognized commands |
113 |
QStringList * m_nicks; /// list of recognized nicknames |
|
6147 | 114 |
|
115 |
// these variables contain information about the last replacement |
|
116 |
// they get reset whenever cursor is moved or text is changed |
|
117 |
||
6161 | 118 |
QString m_beforeMatch; /// the string that was just matched |
119 |
bool m_hasJustMatched; /// whether this widget just did an auto-completion |
|
120 |
QString m_prefix; /// prefix of the text replacement this widget just did |
|
121 |
QString m_postfix; /// postfix of the text replacement this widget just did |
|
6147 | 122 |
|
6161 | 123 |
QMutex m_keywordMutex; /// make keyword QStringList action thread-safe |
6147 | 124 |
|
125 |
/** |
|
6149 | 126 |
* Autocompletes the contents based on the known commands and/or names. |
6147 | 127 |
*/ |
128 |
void autoComplete(); |
|
129 |
||
130 |
||
131 |
private slots: |
|
6149 | 132 |
/** |
133 |
* Resets the information about the last match and text replacement. |
|
134 |
*/ |
|
135 |
void resetAutoCompletionStatus(); |
|
6147 | 136 |
}; |
137 |
||
138 |
||
139 |
||
6153
3881126e06e8
allow changing number of hogs or weapons with mousewheel
sheepluva
parents:
6151
diff
changeset
|
140 |
#endif // HEDGEWARS_SMARTLINEEDIT_H |