view plugins/win32/transparency/wintransparency.c @ 4024:c97789bb4bbc

[gaim-migrate @ 4226] spelling fixes from John B. Silvestri. quoth he: While looking through the .todo (the web version, actually) for something, my cable modem chose to drop my connection. In a fit of boredom, I've gone ahead and proofread the todo for typos. I could have gone crazy and capitalized the first letter of every sentence, but I was not that bored :-). These are just a few little typos. For some reason, I have a knack at spotting these things, and somehow it just seems better to have it right, even for developers :). [Added note: It later occurred to me to run the .todo through a spellchecker, which caught about twice as many new typos as my eyes caught - hint: "I before E, except after C, and a few odd cases (their, weigh, etc.).] committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 30 Nov 2002 19:09:22 +0000
parents a8f0c169e529
children
line wrap: on
line source

/*
 * win2ktrans 
 *
 * Copyright (C) 1998-2002, Rob Flynn <rob@marko.net> 
 *
 * This program 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.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

#include <windows.h>
#include <shellapi.h>
#include <stdlib.h>
#include <stdio.h>
#include <glib.h>
#include "gaim.h"
#include "wintransparency.h"

int alpha;

static void SetWindowTransparency(HWND hWnd, int trans) 
{
	SetWindowLong(hWnd,GWL_EXSTYLE,GetWindowLong(hWnd,GWL_EXSTYLE) | WS_EX_LAYERED);

	SetLayeredWindowAttributes(hWnd,0,trans,LWA_ALPHA);
}

GdkFilterReturn wgaim_window_filter( GdkXEvent *xevent, GdkEvent *event, gpointer data)
{
	MSG *msg = (MSG*)xevent;
	struct conversation *c = (struct conversation *)data;

	gdk_window_remove_filter(GTK_WIDGET(c->window)->window, wgaim_window_filter, c);

	SetWindowTransparency(msg->hwnd, alpha);

	return GDK_FILTER_REMOVE;
}