mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 17:21:02 +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>
|
@interface NSText : NSView <NSChangeSpelling,NSIgnoreMisspelledWords,NSCoding>
|
||||||
{
|
{
|
||||||
// Attributes
|
|
||||||
id _delegate;
|
id _delegate;
|
||||||
|
// content
|
||||||
|
NSTextStorage *_textStorage;
|
||||||
|
|
||||||
|
// Attributes
|
||||||
struct GSTextFlagsType {
|
struct GSTextFlagsType {
|
||||||
|
unsigned is_field_editor: 1;
|
||||||
unsigned is_editable: 1;
|
unsigned is_editable: 1;
|
||||||
unsigned is_rich_text: 1;
|
|
||||||
unsigned is_selectable: 1;
|
unsigned is_selectable: 1;
|
||||||
|
unsigned is_rich_text: 1;
|
||||||
unsigned imports_graphics: 1;
|
unsigned imports_graphics: 1;
|
||||||
unsigned uses_font_panel: 1;
|
unsigned draws_background: 1;
|
||||||
unsigned is_horizontally_resizable: 1;
|
unsigned is_horizontally_resizable: 1;
|
||||||
unsigned is_vertically_resizable: 1;
|
unsigned is_vertically_resizable: 1;
|
||||||
|
unsigned uses_font_panel: 1;
|
||||||
|
unsigned uses_ruler: 1;
|
||||||
unsigned is_ruler_visible: 1;
|
unsigned is_ruler_visible: 1;
|
||||||
unsigned is_field_editor: 1;
|
unsigned smart_insert_delete: 1;
|
||||||
unsigned draws_background: 1;
|
|
||||||
} _tf;
|
} _tf;
|
||||||
NSTextAlignment _alignment;
|
|
||||||
NSColor *_background_color;
|
|
||||||
NSColor *_text_color;
|
|
||||||
NSFont *_default_font;
|
|
||||||
NSRange _selected_range;
|
NSRange _selected_range;
|
||||||
|
NSColor *_caret_color;
|
||||||
NSSize _minSize;
|
NSSize _minSize;
|
||||||
NSSize _maxSize;
|
NSSize _maxSize;
|
||||||
NSMutableDictionary *_typingAttributes;
|
NSMutableDictionary *_typingAttributes;
|
||||||
|
NSTextAlignment _alignment;
|
||||||
// content
|
NSFont *_default_font;
|
||||||
NSTextStorage *_textStorage;
|
NSColor *_background_color;
|
||||||
|
NSColor *_text_color;
|
||||||
|
|
||||||
int _spellCheckerDocumentTag;
|
int _spellCheckerDocumentTag;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue