aboutsummaryrefslogtreecommitdiffhomepage
path: root/gui/wm/wsxdnd.c
diff options
context:
space:
mode:
authorGravatar Anton Khirnov <wyskas@gmail.com>2009-07-07 19:35:54 +0200
committerGravatar Uoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 21:49:42 +0300
commit87366694d82c8d4c7f0bc210e6baa0ccd651d0c2 (patch)
tree57c6a283eed4934c6041658effab17435ef2ff1c /gui/wm/wsxdnd.c
parenta2037a2effbd4622d0e8336245a9b14c3f886bde (diff)
Remove the internal GUI
The GUI is badly designed and too closely coupled to the internal details of other code. The GUI code is in bad shape and unmaintained for years. There is no indication that anyone would maintain it in the future either. Even if someone did volunteer to implement a better integrated GUI having the current code in the tree probably wouldn't help much. So get rid of it.
Diffstat (limited to 'gui/wm/wsxdnd.c')
-rw-r--r--gui/wm/wsxdnd.c259
1 files changed, 0 insertions, 259 deletions
diff --git a/gui/wm/wsxdnd.c b/gui/wm/wsxdnd.c
deleted file mode 100644
index d06e295b60..0000000000
--- a/gui/wm/wsxdnd.c
+++ /dev/null
@@ -1,259 +0,0 @@
-/*
- * WindowMaker implementation adopted for MPlayer
- *
- * This file is part of MPlayer.
- *
- * MPlayer is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * MPlayer is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with MPlayer; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#include <X11/Xlib.h>
-#include "ws.h"
-#include "wsxdnd.h"
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include <X11/Xatom.h>
-
-#include "mp_msg.h"
-#include "help_mp.h"
-
-#define XDND_VERSION 3L
-
-Atom XA_XdndAware;
-Atom XA_XdndEnter;
-Atom XA_XdndLeave;
-Atom XA_XdndDrop;
-Atom XA_XdndPosition;
-Atom XA_XdndStatus;
-Atom XA_XdndActionCopy;
-Atom XA_XdndSelection;
-Atom XA_XdndFinished;
-Atom XA_XdndTypeList;
-
-Atom atom_support;
-
-void wsXDNDInitialize(void)
-{
-
- XA_XdndAware = XInternAtom(wsDisplay, "XdndAware", False);
- XA_XdndEnter = XInternAtom(wsDisplay, "XdndEnter", False);
- XA_XdndLeave = XInternAtom(wsDisplay, "XdndLeave", False);
- XA_XdndDrop = XInternAtom(wsDisplay, "XdndDrop", False);
- XA_XdndPosition = XInternAtom(wsDisplay, "XdndPosition", False);
- XA_XdndStatus = XInternAtom(wsDisplay, "XdndStatus", False);
- XA_XdndActionCopy = XInternAtom(wsDisplay, "XdndActionCopy", False);
- XA_XdndSelection = XInternAtom(wsDisplay, "XdndSelection", False);
- XA_XdndFinished = XInternAtom(wsDisplay, "XdndFinished", False);
- XA_XdndTypeList = XInternAtom(wsDisplay, "XdndTypeList", False);
-}
-
-void wsXDNDMakeAwareness(wsTWindow* window) {
- long int xdnd_version = XDND_VERSION;
- XChangeProperty (wsDisplay, window->WindowID, XA_XdndAware, XA_ATOM,
- 32, PropModeAppend, (char *)&xdnd_version, 1);
-}
-
-void wsXDNDClearAwareness(wsTWindow* window) {
- XDeleteProperty (wsDisplay, window->WindowID, XA_XdndAware);
-}
-
-#define MAX_DND_FILES 64
-Bool
-wsXDNDProcessSelection(wsTWindow* wnd, XEvent *event)
-{
- Atom ret_type;
- int ret_format;
- unsigned long ret_items;
- unsigned long remain_byte;
- char * delme;
- XEvent xevent;
-
- Window selowner = XGetSelectionOwner(wsDisplay,XA_XdndSelection);
-
- XGetWindowProperty(wsDisplay, event->xselection.requestor,
- event->xselection.property,
- 0, 65536, True, atom_support, &ret_type, &ret_format,
- &ret_items, &remain_byte, (unsigned char **)&delme);
-
- /*send finished*/
- memset (&xevent, 0, sizeof(xevent));
- xevent.xany.type = ClientMessage;
- xevent.xany.display = wsDisplay;
- xevent.xclient.window = selowner;
- xevent.xclient.message_type = XA_XdndFinished;
- xevent.xclient.format = 32;
- XDND_FINISHED_TARGET_WIN(&xevent) = wnd->WindowID;
- XSendEvent(wsDisplay, selowner, 0, 0, &xevent);
-
- if (!delme){
- mp_msg( MSGT_GPLAYER,MSGL_WARN,MSGTR_WS_DDNothing );
- return False;
- }
-
- {
- /* Handle dropped files */
- char * retain = delme;
- char * files[MAX_DND_FILES];
- int num = 0;
-
- while(retain < delme + ret_items) {
- if (!strncmp(retain,"file:",5)) {
- /* add more 2 chars while removing 5 is harmless */
- retain+=5;
- }
-
- /* add the "retain" to the list */
- files[num++]=retain;
-
-
- /* now check for special characters */
- {
- int newone = 0;
- while(retain < (delme + ret_items)){
- if(*retain == '\r' || *retain == '\n'){
- *retain=0;
- newone = 1;
- } else {
- if (newone)
- break;
- }
- retain++;
- }
- }
-
- if (num >= MAX_DND_FILES)
- break;
- }
-
- /* Handle the files */
- if(wnd->DandDHandler){
- wnd->DandDHandler(num,files);
- }
- }
-
- free(delme);
- return True;
-}
-
-Bool
-wsXDNDProcessClientMessage(wsTWindow* wnd, XClientMessageEvent *event)
-{
- /* test */
- /*{
- char * name = XGetAtomName(wsDisplay, event->message_type);
- printf("Got %s\n",name);
- XFree(name);
- }*/
-
- if (event->message_type == XA_XdndEnter) {
- Atom ok = XInternAtom(wsDisplay, "text/uri-list", False);
- atom_support = None;
- if ((event->data.l[1] & 1) == 0){
- int index;
- for(index = 0; index <= 2 ; index++){
- if (event->data.l[2+index] == ok) {
- atom_support = ok;
- }
- }
- if (atom_support == None) {
- mp_msg( MSGT_GPLAYER,MSGL_WARN,MSGTR_WS_NotAFile );
- }
- } else {
- /* need to check the whole list here */
- unsigned long ret_left = 1;
- int offset = 0;
- Atom* ret_buff;
- Atom ret_type;
- int ret_format;
- unsigned long ret_items;
-
- /* while there is data left...*/
- while(ret_left && atom_support == None){
- XGetWindowProperty(wsDisplay,event->data.l[0],XA_XdndTypeList,
- offset,256,False,XA_ATOM,&ret_type,
- &ret_format,&ret_items,&ret_left,
- (unsigned char**)&ret_buff);
-
- /* sanity checks...*/
- if(ret_buff == NULL || ret_type != XA_ATOM || ret_format != 8*sizeof(Atom)){
- XFree(ret_buff);
- break;
- }
- /* now chek what we've got */
- {
- int i;
- for(i=0; i<ret_items; i++){
- if(ret_buff[i] == ok){
- atom_support = ok;
- break;
- }
- }
- }
- /* maybe next time ... */
- XFree(ret_buff);
- offset += 256;
- }
- }
- return True;
- }
-
- if (event->message_type == XA_XdndLeave) {
- return True;
- }
-
- if (event->message_type == XA_XdndDrop) {
- if (event->data.l[0] != XGetSelectionOwner(wsDisplay, XA_XdndSelection)){
- puts("Wierd selection owner... QT?");
- }
- if (atom_support != None) {
- XConvertSelection(wsDisplay, XA_XdndSelection, atom_support,
- XA_XdndSelection, event->window,
- CurrentTime);
- }
- return True;
- }
-
- if (event->message_type == XA_XdndPosition) {
- Window srcwin = event->data.l[0];
- if (atom_support == None){
- return True;
- }
-
- /* send response */
- {
- XEvent xevent;
- memset (&xevent, 0, sizeof(xevent));
- xevent.xany.type = ClientMessage;
- xevent.xany.display = wsDisplay;
- xevent.xclient.window = srcwin;
- xevent.xclient.message_type = XA_XdndStatus;
- xevent.xclient.format = 32;
-
- XDND_STATUS_TARGET_WIN (&xevent) = event->window;
- XDND_STATUS_WILL_ACCEPT_SET (&xevent, True);
- XDND_STATUS_WANT_POSITION_SET(&xevent, True);
- /* actually need smth real here */
- XDND_STATUS_RECT_SET(&xevent, 0, 0, 1024,768);
- XDND_STATUS_ACTION(&xevent) = XA_XdndActionCopy;
-
- XSendEvent(wsDisplay, srcwin, 0, 0, &xevent);
- }
- return True;
- }
-
- return False;
-}