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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
#ifndef __VIM_COMMANDS__
#define __VIM_COMMANDS__
#include "ieditor.h"
#include "imanager.h"
#include <vector>
#include <wx/stc/stc.h>
//#include <wx/chartype.h>
#define VISUAL_BLOCK_INDICATOR 13
enum class COMMAND_PART {
REPEAT_NUM,
FIRST_CMD,
MOD_NUM, /*MOD == MODIFIER*/
MOD_CMD,
REPLACING
};
enum class COMMAND_TYPE { MOVE, REPLACE, INSERT, CHANGE_MODUS, CHANGE_INS };
enum class VIM_MODI {
NORMAL_MODUS,
INSERT_MODUS,
VISUAL_MODUS,
VISUAL_LINE_MODUS,
VISUAL_BLOCK_MODUS,
COMMAND_MODUS,
SEARCH_MODUS,
SEARCH_CURR_MODUS,
ISSUE_CMD,
REPLACING_MODUS
};
enum class SEARCH_DIRECTION { BACKWARD, FORWARD };
enum class MESSAGES_VIM {
NO_ERROR_VIM_MSG = 0,
UNBALNCED_PARENTESIS_VIM_MSG,
SAVED_VIM_MSG,
SAVE_AND_CLOSE_VIM_MSG,
CLOSED_VIM_MSG,
SEARCHING_WORD
};
/*enumeration of implemented commands*/
enum class COMMANDVI {
NO_COMMAND,
j,
k,
h,
l,
H,
M,
L,
_0,
_$,
_V, /*^*/
w,
W,
b,
B,
e,
E, /*FIXME E works/does not work*/
f,
F,
t,
T,
G,
gg,
i,
I,
block_I,
a,
A,
block_A,
block_c,
o,
O,
perc,
u,
r,
R,
cw,
cb,
ce,
c0,
c_caret, /*c^*/
c$,
caw,
ci_quot, /*ci"*/
ci_apos, /*ci'*/
ci_pare, /*ci(*/
ci_square, /*ci[*/
ci_lt, /*ci<*/
ci_curly,/*ci{*/
C,
cc,
S,
x,
X,
d, /*Visual modeyy delete*/
dw,
dd,
db,
de,
d0,
d$,
d_caret, /*d^*/
daw,
di_quot, /*di"*/
di_apos, /*di'*/
di_pare, /*di(*/
di_square, /*di[*/
di_lt, /*di<*/
di_curly,/*di{*/
dG,
dgg,
D,
diesis,
diesis_N,
N,
n,
slesh,
repeat,
ctrl_R,
ctrl_U,
ctrl_D, /*One has to 'disattivate' the default behavior of Ctrl+D/U*/
p,
P,
y, /*visual mode*/
yy,
yw,
yb,
ye,
y0,
y_caret, /*y^*/
y$,
yaw,
yi_quot, /*yi"*/
yi_apos, /*yi'*/
yi_pare, /*yi(*/
yi_square, /*yi[*/
yi_lt, /*yi<*/
yi_curly,/*yi{*/
yG,
ygg,
J,
v,
ctrl_V,
V
};
/**
* @brief class that implements the actual vim key-bindings
*
* The general structure of a vim command is hier schematized:
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* [start command] ...... bool inserting_num_repeat
|
|
----------
<-[Y] | number |-----
| ---------- | bool issue_cmd
| | /
--------------> ['char' ] ... bool inserting_cmd_base /__ bool mod_num_cmd
| \
| \ bool mod_cmd
-------------\
| |
| |
| --------|
| / |
| | -----
| | | num |---|
| ['char'] <-----------|
| /
| /
[ issue_cmd ] ............................... bool issue_command
bool save_buf
*/
class VimCommand;
class VimBaseCommand
{
public:
VimBaseCommand(wxString fullpath_name);
VimBaseCommand(const VimBaseCommand& command);
~VimBaseCommand();
bool isCurrentEditor(const wxString& fullpath_name);
void saveCurrentStatus(const VimCommand& command);
void setSavedStatus(VimCommand& command);
private:
wxString m_fullpath_name;
/*~~~~~~~~ INFO ~~~~~~~~~*/
COMMANDVI m_commandID; /*!< id of the current command to identify it*/
COMMAND_PART m_currentCommandPart; /*!< current part of the command */
VIM_MODI m_currentModus; /*!< actual mode the editor is in */
bool m_saveCommand;
/*~~~~~~~~ COMMAND ~~~~~~~~~*/
int m_repeat; /*!< number of repetition for the command */
wxChar m_baseCommand; /*!< base command (first char of the cmd)*/
wxChar m_actionCommand; /*!< eventual command modifier.In 'c3w', "w" */
wxChar m_externalCommand;
int m_actions; /*!< repetition of the modifier.In 'c3x', "3" */
/*~~~~~~~~ HELPER ~~~~~~~~~*/
bool m_repeatCommand;
int m_modifierKey; /*!< to take into account for some commands*/
};
class VimCommand
{
public:
enum eAction {
kNone = -1,
kClose,
kSave,
kSaveAndClose,
kSearch,
};
enum eTypeTextSearch {
kAllWord,
kFromPosToEndWord,
kFromPosToBeginWord,
kFromPositionToEndLine,
kFromPositionToBeginLine
};
public:
VimCommand(IManager* m_mgr);
~VimCommand();
/*~~~~~~~ EVENT HANLDER ~~~~~~~~~~~~~~~~*/
bool OnNewKeyDown(wxChar ch, int modifier);
bool OnEscapeDown();
bool OnReturnDown(VimCommand::eAction& action);
/**
* @brief delete last char from the command buffer
* @return true on success, false otherwise
*/
bool DeleteLastCommandChar();
MESSAGES_VIM getError();
/*~~~~~~~ GETTER ~~~~~~~~~~~~~~~~*/
VIM_MODI get_current_modus();
wxString getTmpBuf();
bool repeat_last_cmd();
bool save_current_cmd();
/*~~~~~~~ Commands-related ~~~~~~~~~~~~~~~~*/
void IssueCommand();
void RepeatIssueCommand(wxString buf);
bool Command_call();
bool Command_call_visual_mode();
bool command_call_visual_line_mode();
bool command_call_visual_block_mode();
bool is_cmd_complete();
void set_current_word(wxString word);
void set_current_modus(VIM_MODI modus);
void reset_repeat_last();
void ResetCommand();
wxString getSearchedWord();
void set_ctrl(wxStyledTextCtrl* ctrl);
private:
/*~~~~~~~~ PRIVATE METHODS ~~~~~~~~~*/
int getNumRepeat();
int getNumActions();
void evidentiate_word();
void append_command(wxChar ch);
wxString get_text_at_position(VimCommand::eTypeTextSearch typeSearch = VimCommand::eTypeTextSearch::kAllWord);
bool is_space_following();
bool is_space_preceding(bool onlyWordChar = true, bool cross_line = false);
wxString add_following_spaces();
wxString add_preceding_spaces();
bool search_word(SEARCH_DIRECTION direction, int flag = 0);
bool search_word(SEARCH_DIRECTION direction, int flag, long pos);
long goToMatchingParentesis(long start_pos);
bool findMatchingParentesis(wxChar lch, wxChar rch, long minPos, long maxPos, long& leftPos, long& rightPos);
void normal_modus(wxChar ch);
void visual_modus(wxChar ch);
void command_modus(wxChar ch);
void insert_modus(wxChar ch);
void parse_cmd_string();
void completing_command(wxChar ch);
/*~~~~~~~~ INFO ~~~~~~~~~*/
COMMANDVI m_commandID; /*!< id of the current command to identify it*/
MESSAGES_VIM m_message_ID;
COMMAND_PART m_currentCommandPart; /*!< current part of the command */
VIM_MODI m_currentModus; /*!< actual mode the editor is in */
bool m_saveCommand;
int m_initialVisualPos; /*!< initial position of cursor when changing to visual mode*/
int m_initialVisualLine; /*!< initial line which cursor is on when changing to visual line mode*/
/* visual block insert */
int m_visualBlockBeginLine;
int m_visualBlockEndLine;
int m_visualBlockBeginCol;
int m_visualBlockEndCol;
/*~~~~~~~~ COMMAND ~~~~~~~~~*/
int m_repeat; /*!< number of repetition for the command */
wxChar m_baseCommand; /*!< base command (first char of the cmd)*/
wxChar m_actionCommand; /*!< eventual command modifier.In 'c3w', "w" */
wxChar m_externalCommand;
int m_actions; /*!< repetition of the modifier.In 'c3x', "3" */
int m_cumulativeUndo; /*!< cumulative actions performed in the editor*/
/*in order to currectly do the undo!*/
/*~~~~~~~~ HELPER ~~~~~~~~~*/
bool m_repeatCommand;
int m_modifierKey; /*!< to take into account for some commands*/
wxString m_tmpbuf;
wxString m_searchWord;
bool m_newLineCopy; /*!< take track if we copy/pase the complete line (dd,yy)*/
bool m_visualBlockCopy;
std::vector<wxString> m_listCopiedStr;
/*~~~~~~~ EDITOR ~~~~~~~~~*/
wxStyledTextCtrl* m_ctrl;
IManager* m_mgr;
friend VimBaseCommand;
};
#endif //__VIM_COMMANDS__
|