Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
c87aa25e
Commit
c87aa25e
authored
Apr 17, 2003
by
Emmanuel Puig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Added clip region to graphics
* Added functionnality to region
parent
f3545179
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/gui/skins/gtk2/gtk2_graphics.cpp
modules/gui/skins/gtk2/gtk2_graphics.cpp
+4
-4
No files found.
modules/gui/skins/gtk2/gtk2_graphics.cpp
View file @
c87aa25e
...
...
@@ -2,7 +2,7 @@
* gtk2_graphics.cpp: GTK2 implementation of the Graphics and Region classes
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_graphics.cpp,v 1.
9
2003/04/1
6 21:40:07 ipkiss
Exp $
* $Id: gtk2_graphics.cpp,v 1.
10
2003/04/1
7 16:11:46 karibu
Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -101,7 +101,7 @@ void GTK2Graphics::DrawRect( int x, int y, int w, int h, int color )
//---------------------------------------------------------------------------
void
GTK2Graphics
::
SetClipRegion
(
Region
*
rgn
)
{
/*
SelectClipRgn( Image
, ( (GTK2Region *)rgn )->GetHandle() );
*/
gdk_gc_set_clip_region
(
Gc
,
(
(
GTK2Region
*
)
rgn
)
->
GetHandle
()
);
}
//---------------------------------------------------------------------------
...
...
@@ -133,7 +133,7 @@ GTK2Region::~GTK2Region()
//---------------------------------------------------------------------------
void
GTK2Region
::
AddPoint
(
int
x
,
int
y
)
{
/*
AddRectangle( x, y,
x + 1, y +
1 );
*/
AddRectangle
(
x
,
y
,
1
,
1
);
}
//---------------------------------------------------------------------------
void
GTK2Region
::
AddRectangle
(
int
x
,
int
y
,
int
w
,
int
h
)
...
...
@@ -158,7 +158,7 @@ void GTK2Region::AddElipse( int x, int y, int w, int h )
//---------------------------------------------------------------------------
void
GTK2Region
::
Move
(
int
x
,
int
y
)
{
/*
O
ffset
Rgn
( Rgn, x, y );
*/
gdk_region_o
ffset
(
Rgn
,
x
,
y
);
}
//---------------------------------------------------------------------------
bool
GTK2Region
::
Hit
(
int
x
,
int
y
)
...
...
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