Remove obsolete backend classes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5101 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 1999-10-29 18:43:48 +00:00
parent ad16a5786c
commit 97eb87a61c
15 changed files with 421 additions and 52 deletions

View file

@ -811,6 +811,18 @@ NSGraphicsContext *GSCurrentContext()
GET_IMP(@selector(DPScapturemouse:));
methodTable.DPSreleasemouse =
GET_IMP(@selector(DPSreleasemouse));
methodTable.DPSsetinputfocus_ =
GET_IMP(@selector(DPSsetinputfocus:));
methodTable.DPShidecursor =
GET_IMP(@selector(DPShidecursor));
methodTable.DPSshowcursor =
GET_IMP(@selector(DPSshowcursor));
methodTable.DPSstandardcursor__ =
GET_IMP(@selector(DPSstandardcursor::));
methodTable.DPSimagecursor_______ =
GET_IMP(@selector(DPSimagecursor:::::::));
methodTable.DPSsetcursorcolor_______ =
GET_IMP(@selector(DPSsetcursorcolor:::::::));
/* ----------------------------------------------------------------------- */
/* GNUstep Event and other I/O extensions */
/* ----------------------------------------------------------------------- */
@ -1926,6 +1938,36 @@ NSGraphicsContext *GSCurrentContext()
[self subclassResponsibility: _cmd];
}
- (void) DPSsetinputfocus: (int) win ;
{
[self subclassResponsibility: _cmd];
}
- (void) DPShidecursor;
{
[self subclassResponsibility: _cmd];
}
- (void) DPSshowcursor;
{
[self subclassResponsibility: _cmd];
}
- (void) DPSstandardcursor: (int) style : (void **) cid ;
{
[self subclassResponsibility: _cmd];
}
- (void) DPSimagecursor: (float) hotx : (float) hoty : (float) w : (float) h : (int) colors : (const char *) image : (void **) cid ;
{
[self subclassResponsibility: _cmd];
}
- (void) DPSsetcursorcolor: (float) fr : (float) fg : (float) fb : (float) br : (float) bg : (float) bb : (void *) cid ;
{
[self subclassResponsibility: _cmd];
}
/* ----------------------------------------------------------------------- */
/* GNUstep Event and other I/O extensions */
/* ----------------------------------------------------------------------- */