mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 07:50:53 +00:00
Added some ivars
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6593 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5474093fbf
commit
ff76c41e7e
1 changed files with 15 additions and 12 deletions
|
@ -94,31 +94,34 @@ typedef enum _NSSelectionAffinity {
|
|||
|
||||
@interface NSText : NSView <NSChangeSpelling,NSIgnoreMisspelledWords,NSCoding>
|
||||
{
|
||||
// Attributes
|
||||
id _delegate;
|
||||
// content
|
||||
NSTextStorage *_textStorage;
|
||||
|
||||
// Attributes
|
||||
struct GSTextFlagsType {
|
||||
unsigned is_field_editor: 1;
|
||||
unsigned is_editable: 1;
|
||||
unsigned is_rich_text: 1;
|
||||
unsigned is_selectable: 1;
|
||||
unsigned is_rich_text: 1;
|
||||
unsigned imports_graphics: 1;
|
||||
unsigned uses_font_panel: 1;
|
||||
unsigned draws_background: 1;
|
||||
unsigned is_horizontally_resizable: 1;
|
||||
unsigned is_vertically_resizable: 1;
|
||||
unsigned uses_font_panel: 1;
|
||||
unsigned uses_ruler: 1;
|
||||
unsigned is_ruler_visible: 1;
|
||||
unsigned is_field_editor: 1;
|
||||
unsigned draws_background: 1;
|
||||
unsigned smart_insert_delete: 1;
|
||||
} _tf;
|
||||
NSTextAlignment _alignment;
|
||||
NSColor *_background_color;
|
||||
NSColor *_text_color;
|
||||
NSFont *_default_font;
|
||||
NSRange _selected_range;
|
||||
NSColor *_caret_color;
|
||||
NSSize _minSize;
|
||||
NSSize _maxSize;
|
||||
NSMutableDictionary *_typingAttributes;
|
||||
|
||||
// content
|
||||
NSTextStorage *_textStorage;
|
||||
NSTextAlignment _alignment;
|
||||
NSFont *_default_font;
|
||||
NSColor *_background_color;
|
||||
NSColor *_text_color;
|
||||
|
||||
int _spellCheckerDocumentTag;
|
||||
|
||||
|
|
Loading…
Reference in a new issue