-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,45 @@ | ||
CLASS cl_gui_textedit DEFINITION INHERITING FROM cl_gui_control PUBLIC. | ||
PUBLIC SECTION. | ||
CONSTANTS false TYPE i VALUE 0. | ||
|
||
METHODS constructor | ||
IMPORTING | ||
max_number_chars TYPE i OPTIONAL | ||
parent TYPE REF TO cl_gui_container. | ||
|
||
METHODS set_toolbar_mode | ||
IMPORTING | ||
toolbar_mode TYPE i DEFAULT false. | ||
|
||
METHODS set_statusbar_mode | ||
IMPORTING | ||
statusbar_mode TYPE i DEFAULT false. | ||
|
||
METHODS get_textstream | ||
IMPORTING | ||
only_when_modified TYPE i DEFAULT false | ||
EXPORTING | ||
text TYPE string | ||
is_modified TYPE i. | ||
|
||
ENDCLASS. | ||
|
||
CLASS cl_gui_textedit IMPLEMENTATION. | ||
|
||
METHOD constructor. | ||
ASSERT 1 = 2. | ||
ENDMETHOD. | ||
|
||
METHOD set_toolbar_mode. | ||
ASSERT 1 = 2. | ||
ENDMETHOD. | ||
|
||
METHOD set_statusbar_mode. | ||
ASSERT 1 = 2. | ||
ENDMETHOD. | ||
|
||
METHOD get_textstream. | ||
ASSERT 1 = 2. | ||
ENDMETHOD. | ||
|
||
ENDCLASS. |