mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 18:31:20 +00:00
Added flags moved from NSText
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@8364 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
eb487d1b20
commit
b95084a593
1 changed files with 15 additions and 0 deletions
|
@ -39,6 +39,21 @@
|
|||
|
||||
@interface NSTextView : NSText //<NSTextInput>
|
||||
{
|
||||
struct GSTextViewFlagsType {
|
||||
/* owns_text_network is YES if we have created the whole network
|
||||
of text classes (and thus we are responsible to release them
|
||||
when we are released).
|
||||
|
||||
owns_text_network in NO if the text network was assembled by
|
||||
hand, and the text storage owns everything - thus we need to
|
||||
release nothing. */
|
||||
unsigned owns_text_network: 1;
|
||||
/* Always NO except when we own text network and are deallocating */
|
||||
unsigned is_in_dealloc: 1;
|
||||
unsigned allows_undo: 1;
|
||||
unsigned smart_insert_delete: 1;
|
||||
} _tvf;
|
||||
|
||||
NSSize _textContainerInset;
|
||||
NSPoint _textContainerOrigin;
|
||||
NSDictionary *_selectedTextAttributes;
|
||||
|
|
Loading…
Reference in a new issue