Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dorota Czaplejewicz
gtk
Commits
0d946179
Commit
0d946179
authored
Feb 04, 2010
by
Cody Russell
Browse files
Bug 554420 - Seal GtkTextTag
Seal GtkTextTag.
parent
465dd920
Changes
1
Hide whitespace changes
Inline
Side-by-side
gtk/gtktexttag.h
View file @
0d946179
...
...
@@ -85,13 +85,13 @@ struct _GtkTextTag
{
GObject
parent_instance
;
GtkTextTagTable
*
table
;
GtkTextTagTable
*
GSEAL
(
table
)
;
char
*
name
;
/* Name of this tag. This field is actually
char
*
GSEAL
(
name
);
/* Name of this tag. This field is actually
* a pointer to the key from the entry in
* tkxt->tagTable, so it needn't be freed
* explicitly. */
int
priority
;
/* Priority of this tag within widget. 0
int
GSEAL
(
priority
)
;
/* Priority of this tag within widget. 0
* means lowest priority. Exactly one tag
* has each integer value between 0 and
* numTags-1. */
...
...
@@ -103,38 +103,38 @@ struct _GtkTextTag
* defaults if no tag specifies an override.
*/
GtkTextAttributes
*
values
;
GtkTextAttributes
*
GSEAL
(
values
)
;
/* Flags for whether a given value is set; if a value is unset, then
* this tag does not affect it.
*/
guint
bg_color_set
:
1
;
guint
bg_stipple_set
:
1
;
guint
fg_color_set
:
1
;
guint
scale_set
:
1
;
guint
fg_stipple_set
:
1
;
guint
justification_set
:
1
;
guint
left_margin_set
:
1
;
guint
indent_set
:
1
;
guint
rise_set
:
1
;
guint
strikethrough_set
:
1
;
guint
right_margin_set
:
1
;
guint
pixels_above_lines_set
:
1
;
guint
pixels_below_lines_set
:
1
;
guint
pixels_inside_wrap_set
:
1
;
guint
tabs_set
:
1
;
guint
underline_set
:
1
;
guint
wrap_mode_set
:
1
;
guint
bg_full_height_set
:
1
;
guint
invisible_set
:
1
;
guint
editable_set
:
1
;
guint
language_set
:
1
;
guint
pg_bg_color_set
:
1
;
guint
GSEAL
(
bg_color_set
)
:
1
;
guint
GSEAL
(
bg_stipple_set
)
:
1
;
guint
GSEAL
(
fg_color_set
)
:
1
;
guint
GSEAL
(
scale_set
)
:
1
;
guint
GSEAL
(
fg_stipple_set
)
:
1
;
guint
GSEAL
(
justification_set
)
:
1
;
guint
GSEAL
(
left_margin_set
)
:
1
;
guint
GSEAL
(
indent_set
)
:
1
;
guint
GSEAL
(
rise_set
)
:
1
;
guint
GSEAL
(
strikethrough_set
)
:
1
;
guint
GSEAL
(
right_margin_set
)
:
1
;
guint
GSEAL
(
pixels_above_lines_set
)
:
1
;
guint
GSEAL
(
pixels_below_lines_set
)
:
1
;
guint
GSEAL
(
pixels_inside_wrap_set
)
:
1
;
guint
GSEAL
(
tabs_set
)
:
1
;
guint
GSEAL
(
underline_set
)
:
1
;
guint
GSEAL
(
wrap_mode_set
)
:
1
;
guint
GSEAL
(
bg_full_height_set
)
:
1
;
guint
GSEAL
(
invisible_set
)
:
1
;
guint
GSEAL
(
editable_set
)
:
1
;
guint
GSEAL
(
language_set
)
:
1
;
guint
GSEAL
(
pg_bg_color_set
)
:
1
;
/* Whether these margins accumulate or override */
guint
accumulative_margin
:
1
;
guint
GSEAL
(
accumulative_margin
)
:
1
;
guint
pad1
:
1
;
guint
GSEAL
(
pad1
)
:
1
;
};
struct
_GtkTextTagClass
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment