Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gtk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1,124
Issues
1,124
List
Boards
Labels
Service Desk
Milestones
Merge Requests
152
Merge Requests
152
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gtk
Commits
e51a98d1
Commit
e51a98d1
authored
Oct 26, 2020
by
Matthias Clasen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: Add GtkDrawingArea to the gallery
parent
b67eee57
Pipeline
#224397
passed with stages
in 16 minutes and 9 seconds
Changes
5
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
188 additions
and
2 deletions
+188
-2
docs/reference/gtk/images/drawingarea.png
docs/reference/gtk/images/drawingarea.png
+0
-0
docs/reference/gtk/images/glarea.png
docs/reference/gtk/images/glarea.png
+0
-0
docs/reference/gtk/meson.build
docs/reference/gtk/meson.build
+1
-0
docs/reference/gtk/visual_index.xml
docs/reference/gtk/visual_index.xml
+1
-0
docs/tools/widgets.c
docs/tools/widgets.c
+186
-2
No files found.
docs/reference/gtk/images/drawingarea.png
0 → 100644
View file @
e51a98d1
8.11 KB
docs/reference/gtk/images/glarea.png
View replaced file @
b67eee57
View file @
e51a98d1
2.95 KB
|
W:
|
H:
4.36 KB
|
W:
|
H:
2-up
Swipe
Onion skin
docs/reference/gtk/meson.build
View file @
e51a98d1
...
...
@@ -259,6 +259,7 @@ images = [
'images/down-start.png',
'images/drop-down.png',
'images/drawing.png',
'images/drawingarea.png',
'images/ease-in-out.png',
'images/ease-in.png',
'images/ease-out.png',
...
...
docs/reference/gtk/visual_index.xml
View file @
e51a98d1
...
...
@@ -20,6 +20,7 @@
<link
linkend=
"GtkScale"
><inlinegraphic
fileref=
"scales.png"
format=
"PNG"
></inlinegraphic></link>
<link
linkend=
"GtkCalendar"
><inlinegraphic
fileref=
"calendar.png"
format=
"PNG"
></inlinegraphic></link>
<link
linkend=
"GtkGLArea"
><inlinegraphic
fileref=
"glarea.png"
format=
"PNG"
></inlinegraphic></link>
<link
linkend=
"GtkDrawingArea"
><inlinegraphic
fileref=
"drawingarea.png"
format=
"PNG"
></inlinegraphic></link>
<link
linkend=
"GtkVideo"
><inlinegraphic
fileref=
"video.png"
format=
"PNG"
></inlinegraphic></link>
<link
linkend=
"GtkMediaControls"
><inlinegraphic
fileref=
"media-controls.png"
format=
"PNG"
></inlinegraphic></link>
<link
linkend=
"GtkWindowControls"
><inlinegraphic
fileref=
"windowcontrols.png"
format=
"PNG"
></inlinegraphic></link>
...
...
docs/tools/widgets.c
View file @
e51a98d1
...
...
@@ -1497,6 +1497,7 @@ create_flow_box (void)
static
WidgetInfo
*
create_gl_area
(
void
)
{
GtkWidget
*
vbox
;
WidgetInfo
*
info
;
GtkWidget
*
widget
;
GtkWidget
*
gears
;
...
...
@@ -1513,12 +1514,15 @@ create_gl_area (void)
gtk_style_context_add_provider
(
gtk_widget_get_style_context
(
gears
),
GTK_STYLE_PROVIDER
(
provider
),
800
);
g_object_unref
(
provider
);
vbox
=
gtk_box_new
(
GTK_ORIENTATION_VERTICAL
,
3
);
gtk_widget_set_halign
(
widget
,
GTK_ALIGN_FILL
);
gtk_widget_set_valign
(
widget
,
GTK_ALIGN_FILL
);
gtk_box_append
(
GTK_BOX
(
vbox
),
widget
);
gtk_box_append
(
GTK_BOX
(
vbox
),
gtk_label_new
(
"GL Area"
));
add_margin
(
widget
);
add_margin
(
vbox
);
info
=
new_widget_info
(
"glarea"
,
widget
,
MEDIUM
);
info
=
new_widget_info
(
"glarea"
,
vbox
,
MEDIUM
);
return
info
;
}
...
...
@@ -1741,6 +1745,185 @@ create_shortcuts_window (void)
return
new_widget_info
(
"shortcuts-window"
,
overlay
,
ASIS
);
}
static
void
oval_path
(
cairo_t
*
cr
,
double
xc
,
double
yc
,
double
xr
,
double
yr
)
{
cairo_save
(
cr
);
cairo_translate
(
cr
,
xc
,
yc
);
cairo_scale
(
cr
,
1
.
0
,
yr
/
xr
);
cairo_move_to
(
cr
,
xr
,
0
.
0
);
cairo_arc
(
cr
,
0
,
0
,
xr
,
0
,
2
*
G_PI
);
cairo_close_path
(
cr
);
cairo_restore
(
cr
);
}
static
void
fill_checks
(
cairo_t
*
cr
,
int
x
,
int
y
,
int
width
,
int
height
)
{
int
i
,
j
;
#define CHECK_SIZE 16
cairo_rectangle
(
cr
,
x
,
y
,
width
,
height
);
cairo_set_source_rgb
(
cr
,
0
.
4
,
0
.
4
,
0
.
4
);
cairo_fill
(
cr
);
/* Only works for CHECK_SIZE a power of 2 */
j
=
x
&
(
-
CHECK_SIZE
);
for
(;
j
<
height
;
j
+=
CHECK_SIZE
)
{
i
=
y
&
(
-
CHECK_SIZE
);
for
(;
i
<
width
;
i
+=
CHECK_SIZE
)
if
((
i
/
CHECK_SIZE
+
j
/
CHECK_SIZE
)
%
2
==
0
)
cairo_rectangle
(
cr
,
i
,
j
,
CHECK_SIZE
,
CHECK_SIZE
);
}
cairo_set_source_rgb
(
cr
,
0
.
7
,
0
.
7
,
0
.
7
);
cairo_fill
(
cr
);
#undef CHECK_SIZE
}
static
void
draw_3circles
(
cairo_t
*
cr
,
double
xc
,
double
yc
,
double
radius
,
double
alpha
)
{
double
subradius
=
radius
*
(
2
/
3
.
-
0
.
1
);
cairo_set_source_rgba
(
cr
,
1
.,
0
.,
0
.,
alpha
);
oval_path
(
cr
,
xc
+
radius
/
3
.
*
cos
(
G_PI
*
(
0
.
5
)),
yc
-
radius
/
3
.
*
sin
(
G_PI
*
(
0
.
5
)),
subradius
,
subradius
);
cairo_fill
(
cr
);
cairo_set_source_rgba
(
cr
,
0
.,
1
.,
0
.,
alpha
);
oval_path
(
cr
,
xc
+
radius
/
3
.
*
cos
(
G_PI
*
(
0
.
5
+
2
/
.
3
)),
yc
-
radius
/
3
.
*
sin
(
G_PI
*
(
0
.
5
+
2
/
.
3
)),
subradius
,
subradius
);
cairo_fill
(
cr
);
cairo_set_source_rgba
(
cr
,
0
.,
0
.,
1
.,
alpha
);
oval_path
(
cr
,
xc
+
radius
/
3
.
*
cos
(
G_PI
*
(
0
.
5
+
4
/
.
3
)),
yc
-
radius
/
3
.
*
sin
(
G_PI
*
(
0
.
5
+
4
/
.
3
)),
subradius
,
subradius
);
cairo_fill
(
cr
);
}
static
void
groups_draw
(
GtkDrawingArea
*
darea
,
cairo_t
*
cr
,
int
width
,
int
height
,
gpointer
data
)
{
cairo_surface_t
*
overlay
,
*
punch
,
*
circles
;
cairo_t
*
overlay_cr
,
*
punch_cr
,
*
circles_cr
;
/* Fill the background */
double
radius
=
0
.
5
*
(
width
<
height
?
width
:
height
)
-
10
;
double
xc
=
width
/
2
.;
double
yc
=
height
/
2
.;
overlay
=
cairo_surface_create_similar
(
cairo_get_target
(
cr
),
CAIRO_CONTENT_COLOR_ALPHA
,
width
,
height
);
punch
=
cairo_surface_create_similar
(
cairo_get_target
(
cr
),
CAIRO_CONTENT_ALPHA
,
width
,
height
);
circles
=
cairo_surface_create_similar
(
cairo_get_target
(
cr
),
CAIRO_CONTENT_COLOR_ALPHA
,
width
,
height
);
fill_checks
(
cr
,
0
,
0
,
width
,
height
);
/* Draw a black circle on the overlay
*/
overlay_cr
=
cairo_create
(
overlay
);
cairo_set_source_rgb
(
overlay_cr
,
0
.,
0
.,
0
.);
oval_path
(
overlay_cr
,
xc
,
yc
,
radius
,
radius
);
cairo_fill
(
overlay_cr
);
/* Draw 3 circles to the punch surface, then cut
* that out of the main circle in the overlay
*/
punch_cr
=
cairo_create
(
punch
);
draw_3circles
(
punch_cr
,
xc
,
yc
,
radius
,
1
.
0
);
cairo_destroy
(
punch_cr
);
cairo_set_operator
(
overlay_cr
,
CAIRO_OPERATOR_DEST_OUT
);
cairo_set_source_surface
(
overlay_cr
,
punch
,
0
,
0
);
cairo_paint
(
overlay_cr
);
/* Now draw the 3 circles in a subgroup again
* at half intensity, and use OperatorAdd to join up
* without seams.
*/
circles_cr
=
cairo_create
(
circles
);
cairo_set_operator
(
circles_cr
,
CAIRO_OPERATOR_OVER
);
draw_3circles
(
circles_cr
,
xc
,
yc
,
radius
,
0
.
5
);
cairo_destroy
(
circles_cr
);
cairo_set_operator
(
overlay_cr
,
CAIRO_OPERATOR_ADD
);
cairo_set_source_surface
(
overlay_cr
,
circles
,
0
,
0
);
cairo_paint
(
overlay_cr
);
cairo_destroy
(
overlay_cr
);
cairo_set_source_surface
(
cr
,
overlay
,
0
,
0
);
cairo_paint
(
cr
);
cairo_surface_destroy
(
overlay
);
cairo_surface_destroy
(
punch
);
cairo_surface_destroy
(
circles
);
}
static
WidgetInfo
*
create_drawing_area
(
void
)
{
GtkWidget
*
vbox
;
WidgetInfo
*
info
;
GtkWidget
*
widget
;
GtkWidget
*
da
;
widget
=
gtk_frame_new
(
NULL
);
da
=
gtk_drawing_area_new
();
gtk_widget_set_size_request
(
da
,
96
,
96
);
gtk_drawing_area_set_draw_func
(
GTK_DRAWING_AREA
(
da
),
groups_draw
,
NULL
,
NULL
);
gtk_frame_set_child
(
GTK_FRAME
(
widget
),
da
);
vbox
=
gtk_box_new
(
GTK_ORIENTATION_VERTICAL
,
6
);
gtk_widget_set_halign
(
widget
,
GTK_ALIGN_FILL
);
gtk_widget_set_valign
(
widget
,
GTK_ALIGN_FILL
);
gtk_box_append
(
GTK_BOX
(
vbox
),
widget
);
gtk_box_append
(
GTK_BOX
(
vbox
),
gtk_label_new
(
"Drawing Area"
));
add_margin
(
vbox
);
info
=
new_widget_info
(
"drawingarea"
,
vbox
,
MEDIUM
);
return
info
;
}
GList
*
get_all_widgets
(
void
)
{
...
...
@@ -1814,6 +1997,7 @@ get_all_widgets (void)
retval
=
g_list_prepend
(
retval
,
create_popover
());
retval
=
g_list_prepend
(
retval
,
create_menu
());
retval
=
g_list_prepend
(
retval
,
create_shortcuts_window
());
retval
=
g_list_prepend
(
retval
,
create_drawing_area
());
return
retval
;
}
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