|
@@ -41,8 +41,6 @@
|
|
class TextEdit : public Control {
|
|
class TextEdit : public Control {
|
|
GDCLASS(TextEdit, Control);
|
|
GDCLASS(TextEdit, Control);
|
|
|
|
|
|
- friend class CodeHighlighter;
|
|
|
|
-
|
|
|
|
public:
|
|
public:
|
|
/* Edit Actions. */
|
|
/* Edit Actions. */
|
|
enum EditAction {
|
|
enum EditAction {
|
|
@@ -1029,6 +1027,8 @@ public:
|
|
void set_draw_spaces(bool p_enabled);
|
|
void set_draw_spaces(bool p_enabled);
|
|
bool is_drawing_spaces() const;
|
|
bool is_drawing_spaces() const;
|
|
|
|
|
|
|
|
+ Color get_font_color() const;
|
|
|
|
+
|
|
TextEdit(const String &p_placeholder = String());
|
|
TextEdit(const String &p_placeholder = String());
|
|
};
|
|
};
|
|
|
|
|