source: azure_iot_hub/trunk/ntshell/ntshell/core/text_editor.h@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-chdr
File size: 2.5 KB
Line 
1/**
2 * @file text_editor.h
3 * @author CuBeatSystems
4 * @author Shinichiro Nakamura
5 * @copyright
6 * ===============================================================
7 * Natural Tiny Shell (NT-Shell) Version 0.3.1
8 * ===============================================================
9 * Copyright (c) 2010-2016 Shinichiro Nakamura
10 *
11 * Permission is hereby granted, free of charge, to any person
12 * obtaining a copy of this software and associated documentation
13 * files (the "Software"), to deal in the Software without
14 * restriction, including without limitation the rights to use,
15 * copy, modify, merge, publish, distribute, sublicense, and/or
16 * sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following
18 * conditions:
19 *
20 * The above copyright notice and this permission notice shall be
21 * included in all copies or substantial portions of the Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
25 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
27 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
28 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
30 * OTHER DEALINGS IN THE SOFTWARE.
31 */
32
33#ifndef TEXT_EDITOR_H
34#define TEXT_EDITOR_H
35
36#include "ntconf.h"
37
38/**
39 * @brief Maximum length of the text string.
40 */
41#define TEXTEDITOR_MAXLEN (NTCONF_EDITOR_MAXLEN)
42
43/**
44 * @brief Text editor handler.
45 */
46typedef struct {
47 char buffer[TEXTEDITOR_MAXLEN]; /**< Buffer for the text string. */
48 int pos; /**< Position of the logical cursor. */
49 int len; /**< Length of the text string. */
50} text_editor_t;
51
52#ifdef __cplusplus
53extern "C" {
54#endif
55
56void text_editor_init(text_editor_t *p);
57int text_editor_insert(text_editor_t *p, unsigned int ch, char *utf8);
58int text_editor_backspace(text_editor_t *p);
59int text_editor_delete(text_editor_t *p);
60int text_editor_cursor_get_position(text_editor_t *p);
61int text_editor_cursor_head(text_editor_t *p);
62int text_editor_cursor_tail(text_editor_t *p);
63int text_editor_cursor_left(text_editor_t *p);
64int text_editor_cursor_right(text_editor_t *p);
65int text_editor_set_text(text_editor_t *p, char *buf);
66int text_editor_get_text(text_editor_t *p, char *buf, int siz);
67void text_editor_clear(text_editor_t *p);
68
69#ifdef __cplusplus
70}
71#endif
72
73#endif
74
Note: See TracBrowser for help on using the repository browser.