Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
d639b6aa
Commit
d639b6aa
authored
7 years ago
by
Olivier Couet
Browse files
Options
Downloads
Patches
Plain Diff
float attributes are now working.
parent
7554be95
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
graf2d/primitives/v7/inc/ROOT/TText.hxx
+9
-9
9 additions, 9 deletions
graf2d/primitives/v7/inc/ROOT/TText.hxx
with
9 additions
and
9 deletions
graf2d/primitives/v7/inc/ROOT/TText.hxx
+
9
−
9
View file @
d639b6aa
...
...
@@ -41,9 +41,9 @@ public:
*/
class
DrawingOpts
:
public
TDrawingOptsBase
{
TDrawingAttr
<
TColor
>
fTextColor
{
*
this
,
"Text.Color"
,
TColor
::
kBlack
};
///< The text color.
TDrawingAttr
<
int
>
fTextSize
{
*
this
,
"Text.Size"
,
10
};
///< The text size
TDrawingAttr
<
int
>
fTextAngle
{
*
this
,
"Text.Angle"
,
0
};
///< The text angle
TDrawingAttr
<
TColor
>
fTextColor
{
*
this
,
"Text.Color"
,
TColor
::
kBlack
};
///< The text color.
TDrawingAttr
<
float
>
fTextSize
{
*
this
,
"Text.Size"
,
10
.
};
///< The text size
TDrawingAttr
<
float
>
fTextAngle
{
*
this
,
"Text.Angle"
,
0
.
};
///< The text angle
public
:
/// The color of the text.
...
...
@@ -52,14 +52,14 @@ public:
const
TColor
&
GetTextColor
()
const
{
return
fTextColor
.
Get
();
}
/// The text size.
void
SetTextSize
(
in
t
size
)
{
fTextSize
=
size
;
}
TDrawingAttr
<
in
t
>
&
GetTextSize
()
{
return
fTextSize
;
}
in
t
GetTextSize
()
const
{
return
(
in
t
)
fTextSize
;
}
void
SetTextSize
(
floa
t
size
)
{
fTextSize
=
size
;
}
TDrawingAttr
<
floa
t
>
&
GetTextSize
()
{
return
fTextSize
;
}
floa
t
GetTextSize
()
const
{
return
(
floa
t
)
fTextSize
;
}
/// The text angle in degrees.
void
SetTextAngle
(
in
t
angle
)
{
fTextAngle
=
angle
;
}
TDrawingAttr
<
in
t
>
&
GetTextAngle
()
{
return
fTextAngle
;
}
in
t
GetTextAngle
()
const
{
return
(
in
t
)
fTextAngle
;
}
void
SetTextAngle
(
floa
t
angle
)
{
fTextAngle
=
angle
;
}
TDrawingAttr
<
floa
t
>
&
GetTextAngle
()
{
return
fTextAngle
;
}
floa
t
GetTextAngle
()
const
{
return
(
floa
t
)
fTextAngle
;
}
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment