mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 03:10:09 +00:00
Implement gdkcc (visually broken, but can be fixed by someone with a clue
Implement gdkcc (visually broken, but can be fixed by someone with a clue w/o problems).
This commit is contained in:
parent
5ad55596f9
commit
08b87727f0
@ -27,8 +27,9 @@ noinst_LTLIBRARIES = libgdk-linux-fb.la
|
||||
libgdkinclude_HEADERS= \
|
||||
gdkfb.h
|
||||
|
||||
libgdk_linux_fb_la_SOURCES = \
|
||||
libgdk_linux_fb_la_SOURCES = \
|
||||
gdkcolor-fb.c \
|
||||
gdkcc-fb.c \
|
||||
gdkcursor-fb.c \
|
||||
gdkdnd-fb.c \
|
||||
gdkdrawable-fb2.c \
|
||||
|
1731
gdk/linux-fb/gdkcc-fb.c
Normal file
1731
gdk/linux-fb/gdkcc-fb.c
Normal file
File diff suppressed because it is too large
Load Diff
@ -763,48 +763,3 @@ gdk_colors_free (GdkColormap *colormap,
|
||||
gulong planes)
|
||||
{
|
||||
}
|
||||
|
||||
gulong
|
||||
gdk_color_context_get_pixel(GdkColorContext *cc,
|
||||
gushort red,
|
||||
gushort green,
|
||||
gushort blue,
|
||||
gint *failed)
|
||||
{
|
||||
g_error("NYI");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
GdkColorContext *
|
||||
gdk_color_context_new(GdkVisual *visual,
|
||||
GdkColormap *colormap)
|
||||
{
|
||||
g_error("NYI");
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
GdkColorContext *
|
||||
gdk_color_context_new_mono(GdkVisual *visual,
|
||||
GdkColormap *colormap)
|
||||
{
|
||||
g_error("NYI");
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void
|
||||
gdk_color_context_free(GdkColorContext *cc)
|
||||
{
|
||||
g_error("NYI");
|
||||
}
|
||||
|
||||
gint
|
||||
gdk_color_context_query_color(GdkColorContext *cc,
|
||||
GdkColor *color)
|
||||
{
|
||||
g_error("NYI");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include <sys/vt.h>
|
||||
#include <sys/kd.h>
|
||||
#include <ctype.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
/*
|
||||
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
||||
|
Loading…
Reference in New Issue
Block a user