]> Dogcows Code - chaz/openbox/blobdiff - render/color.h
dont use the _OPENBOX_PREMAX window property anymore, save max and fullscreen pre...
[chaz/openbox] / render / color.h
index fb669fb54f5c5ff910ad8684921141efc7a4c26b..ed689815fb3b27639af7f85e5da1ed1b2f494908 100644 (file)
@@ -1,70 +1,47 @@
-#ifndef __color_h
-#define __color_h
+/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
 
-#include <X11/Xlib.h>
-#include <X11/Xutil.h>
+   color.h for the Openbox window manager
+   Copyright (c) 2003        Ben Jansens
+   Copyright (c) 2003        Derek Foreman
+
+   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.
 
-#ifdef HAVE_STDINT_H 
-#  include <stdint.h>
-#else
-#  ifdef HAVE_SYS_TYPES_H
-#    include <sys/types.h>
-#  endif   
-#endif
+   See the COPYING file for a copy of the GNU General Public License.
+*/
 
+#ifndef __color_h
+#define __color_h
 
-#ifdef HAVE_STDINT_H
-typedef uint32_t pixel32;
-typedef uint16_t pixel16;
-#else
-typedef u_int32_t pixel32;  
-typedef u_int16_t pixel16;   
-#endif /* HAVE_STDINT_H */  
+#include "render.h"
 
-#if (G_BYTE_ORDER == G_BIG_ENDIAN)
-#define default_red_offset 0
-#define default_green_offset 8
-#define default_blue_offset 16
-#define default_alpha_offset 24
-#define render_endian MSBFirst  
-#else
-#define default_alpha_offset 24
-#define default_red_offset 16
-#define default_green_offset 8
-#define default_blue_offset 0
-#define render_endian LSBFirst
-#endif /* G_BYTE_ORDER == G_BIG_ENDIAN */
+#include <X11/Xlib.h>
+#include <X11/Xutil.h>
+#include <glib.h>
 
+struct _RrColor {
+    const RrInstance *inst;
 
-typedef struct color_rgb {
     int r;
     int g;
     int b;
     unsigned long pixel;
     GC gc;
-} color_rgb;
-
-void color_allocate_gc(color_rgb *in);
-XColor *pickColor(int r, int g, int b);
-color_rgb *color_parse(char *colorname);
-color_rgb *color_new(int r, int g, int b);
-void color_free(color_rgb *in);
-void reduce_depth(pixel32 *data, XImage *im);
-void increase_depth(pixel32 *data, XImage *im);
-
-extern int render_red_offset;
-extern int render_green_offset;
-extern int render_blue_offset;
 
-extern int render_red_shift;
-extern int render_green_shift;
-extern int render_blue_shift;
+    gint key;
+    gint refcount;
+};
 
-extern int render_red_mask;
-extern int render_green_mask;
-extern int render_blue_mask;
+void RrColorAllocateGC(RrColor *in);
+XColor *RrPickColor(const RrInstance *inst, gint r, gint g, gint b);
+void RrReduceDepth(const RrInstance *inst, RrPixel32 *data, XImage *im);
+void RrIncreaseDepth(const RrInstance *inst, RrPixel32 *data, XImage *im);
 
-extern int pseudo_bpc;
-#define pseudo_ncolors() (1 << (pseudo_bpc * 3))
-extern XColor *pseudo_colors;
 #endif /* __color_h */
This page took 0.025828 seconds and 4 git commands to generate.