Last change
on this file was 2, checked in by bird, 22 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
1.2 KB
|
Line | |
---|
1 | /* GtkWindowPeer.java -- Implements WindowPeer with GTK
|
---|
2 | Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
---|
3 |
|
---|
4 | This file is part of the peer AWT libraries of GNU Classpath.
|
---|
5 |
|
---|
6 | This library is free software; you can redistribute it and/or modify
|
---|
7 | it under the terms of the GNU Library General Public License as published
|
---|
8 | by the Free Software Foundation, either version 2 of the License, or
|
---|
9 | (at your option) any later verion.
|
---|
10 |
|
---|
11 | This library is distributed in the hope that it will be useful, but
|
---|
12 | WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | GNU Library General Public License for more details.
|
---|
15 |
|
---|
16 | You should have received a copy of the GNU Library General Public License
|
---|
17 | along with this library; if not, write to the Free Software Foundation
|
---|
18 | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA. */
|
---|
19 |
|
---|
20 |
|
---|
21 | package gnu.awt.gtk;
|
---|
22 |
|
---|
23 | import java.awt.*;
|
---|
24 | import java.awt.event.*;
|
---|
25 | import java.awt.peer.WindowPeer;
|
---|
26 |
|
---|
27 | public class GtkWindowPeer extends GtkContainerPeer
|
---|
28 | implements WindowPeer
|
---|
29 | {
|
---|
30 | protected GtkWindowPeer (Window awtWindow)
|
---|
31 | {
|
---|
32 | super (awtWindow);
|
---|
33 | }
|
---|
34 |
|
---|
35 | public native void toBack();
|
---|
36 | public native void toFront();
|
---|
37 |
|
---|
38 | protected native void create();
|
---|
39 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.