forked from AuroraMiddleware/gtk
printing: Drop the lpr backend
We want to consolidate and get to fewer print backends (ideally only one), and the future is cpdb.
This commit is contained in:
parent
d0263f563a
commit
dd22e2aea9
@ -1,478 +0,0 @@
|
||||
/* GTK - The GIMP Toolkit
|
||||
* gtkprintbackendlpr.c: LPR implementation of GtkPrintBackend
|
||||
* for printing to lpr
|
||||
* Copyright (C) 2006, 2007 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <cairo.h>
|
||||
#include <cairo-ps.h>
|
||||
|
||||
#include <glib/gi18n-lib.h>
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
#include "gtkprinterprivate.h"
|
||||
#include "gtkprivate.h"
|
||||
|
||||
#include "gtkprintbackendlpr.h"
|
||||
|
||||
typedef struct _GtkPrintBackendLprClass GtkPrintBackendLprClass;
|
||||
|
||||
#define GTK_PRINT_BACKEND_LPR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PRINT_BACKEND_LPR, GtkPrintBackendLprClass))
|
||||
#define GTK_IS_PRINT_BACKEND_LPR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PRINT_BACKEND_LPR))
|
||||
#define GTK_PRINT_BACKEND_LPR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PRINT_BACKEND_LPR, GtkPrintBackendLprClass))
|
||||
|
||||
#define _LPR_MAX_CHUNK_SIZE 8192
|
||||
|
||||
struct _GtkPrintBackendLprClass
|
||||
{
|
||||
GtkPrintBackendClass parent_class;
|
||||
};
|
||||
|
||||
struct _GtkPrintBackendLpr
|
||||
{
|
||||
GtkPrintBackend parent_instance;
|
||||
};
|
||||
|
||||
static GObjectClass *backend_parent_class;
|
||||
|
||||
static void lpr_printer_get_settings_from_options (GtkPrinter *printer,
|
||||
GtkPrinterOptionSet *options,
|
||||
GtkPrintSettings *settings);
|
||||
static GtkPrinterOptionSet *lpr_printer_get_options (GtkPrinter *printer,
|
||||
GtkPrintSettings *settings,
|
||||
GtkPageSetup *page_setup,
|
||||
GtkPrintCapabilities capabilities);
|
||||
static void lpr_printer_prepare_for_print (GtkPrinter *printer,
|
||||
GtkPrintJob *print_job,
|
||||
GtkPrintSettings *settings,
|
||||
GtkPageSetup *page_setup);
|
||||
static cairo_surface_t * lpr_printer_create_cairo_surface (GtkPrinter *printer,
|
||||
GtkPrintSettings *settings,
|
||||
double width,
|
||||
double height,
|
||||
GIOChannel *cache_io);
|
||||
static void gtk_print_backend_lpr_print_stream (GtkPrintBackend *print_backend,
|
||||
GtkPrintJob *job,
|
||||
GIOChannel *data_io,
|
||||
GtkPrintJobCompleteFunc callback,
|
||||
gpointer user_data,
|
||||
GDestroyNotify dnotify);
|
||||
|
||||
G_DEFINE_DYNAMIC_TYPE (GtkPrintBackendLpr, gtk_print_backend_lpr, GTK_TYPE_PRINT_BACKEND)
|
||||
|
||||
G_MODULE_EXPORT
|
||||
void
|
||||
g_io_module_load (GIOModule *module)
|
||||
{
|
||||
g_type_module_use (G_TYPE_MODULE (module));
|
||||
|
||||
gtk_print_backend_lpr_register_type (G_TYPE_MODULE (module));
|
||||
|
||||
g_io_extension_point_implement (GTK_PRINT_BACKEND_EXTENSION_POINT_NAME,
|
||||
GTK_TYPE_PRINT_BACKEND_LPR,
|
||||
"lpr",
|
||||
10);
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT
|
||||
void
|
||||
g_io_module_unload (GIOModule *module)
|
||||
{
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT
|
||||
char **
|
||||
g_io_module_query (void)
|
||||
{
|
||||
char *eps[] = {
|
||||
(char *)GTK_PRINT_BACKEND_EXTENSION_POINT_NAME,
|
||||
NULL
|
||||
};
|
||||
|
||||
return g_strdupv (eps);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_print_backend_lpr_new:
|
||||
*
|
||||
* Creates a new #GtkPrintBackendLpr object. #GtkPrintBackendLpr
|
||||
* implements the #GtkPrintBackend interface with direct access to
|
||||
* the filesystem using Unix/Linux API calls
|
||||
*
|
||||
* Returns: the new #GtkPrintBackendLpr object
|
||||
**/
|
||||
GtkPrintBackend *
|
||||
gtk_print_backend_lpr_new (void)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_PRINT_BACKEND_LPR, NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_print_backend_lpr_class_init (GtkPrintBackendLprClass *class)
|
||||
{
|
||||
GtkPrintBackendClass *backend_class = GTK_PRINT_BACKEND_CLASS (class);
|
||||
|
||||
backend_parent_class = g_type_class_peek_parent (class);
|
||||
|
||||
backend_class->print_stream = gtk_print_backend_lpr_print_stream;
|
||||
backend_class->printer_create_cairo_surface = lpr_printer_create_cairo_surface;
|
||||
backend_class->printer_get_options = lpr_printer_get_options;
|
||||
backend_class->printer_get_settings_from_options = lpr_printer_get_settings_from_options;
|
||||
backend_class->printer_prepare_for_print = lpr_printer_prepare_for_print;
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_print_backend_lpr_class_finalize (GtkPrintBackendLprClass *class)
|
||||
{
|
||||
}
|
||||
|
||||
static cairo_status_t
|
||||
_cairo_write (void *closure,
|
||||
const unsigned char *data,
|
||||
unsigned int length)
|
||||
{
|
||||
GIOChannel *io = (GIOChannel *)closure;
|
||||
gsize written;
|
||||
GError *error;
|
||||
|
||||
error = NULL;
|
||||
|
||||
GTK_DEBUG (PRINTING, "LPR Backend: Writing %i byte chunk to temp file", length);
|
||||
|
||||
while (length > 0)
|
||||
{
|
||||
g_io_channel_write_chars (io, (const char *)data, length, &written, &error);
|
||||
|
||||
if (error != NULL)
|
||||
{
|
||||
GTK_DEBUG (PRINTING, "LPR Backend: Error writing to temp file, %s", error->message);
|
||||
|
||||
g_error_free (error);
|
||||
return CAIRO_STATUS_WRITE_ERROR;
|
||||
}
|
||||
|
||||
GTK_DEBUG (PRINTING, "LPR Backend: Wrote %" G_GSIZE_FORMAT " bytes to temp file", written);
|
||||
|
||||
data += written;
|
||||
length -= written;
|
||||
}
|
||||
|
||||
return CAIRO_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
static cairo_surface_t *
|
||||
lpr_printer_create_cairo_surface (GtkPrinter *printer,
|
||||
GtkPrintSettings *settings,
|
||||
double width,
|
||||
double height,
|
||||
GIOChannel *cache_io)
|
||||
{
|
||||
cairo_surface_t *surface;
|
||||
|
||||
surface = cairo_ps_surface_create_for_stream (_cairo_write, cache_io, width, height);
|
||||
|
||||
cairo_surface_set_fallback_resolution (surface,
|
||||
2.0 * gtk_print_settings_get_printer_lpi (settings),
|
||||
2.0 * gtk_print_settings_get_printer_lpi (settings));
|
||||
|
||||
return surface;
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
GtkPrintBackend *backend;
|
||||
GtkPrintJobCompleteFunc callback;
|
||||
GtkPrintJob *job;
|
||||
gpointer user_data;
|
||||
GDestroyNotify dnotify;
|
||||
|
||||
GIOChannel *in;
|
||||
} _PrintStreamData;
|
||||
|
||||
static void
|
||||
lpr_print_cb (GtkPrintBackendLpr *print_backend,
|
||||
GError *error,
|
||||
gpointer user_data)
|
||||
{
|
||||
_PrintStreamData *ps = (_PrintStreamData *) user_data;
|
||||
|
||||
if (ps->in != NULL)
|
||||
g_io_channel_unref (ps->in);
|
||||
|
||||
if (ps->callback)
|
||||
ps->callback (ps->job, ps->user_data, error);
|
||||
|
||||
if (ps->dnotify)
|
||||
ps->dnotify (ps->user_data);
|
||||
|
||||
gtk_print_job_set_status (ps->job,
|
||||
error ? GTK_PRINT_STATUS_FINISHED_ABORTED
|
||||
: GTK_PRINT_STATUS_FINISHED);
|
||||
|
||||
if (ps->job)
|
||||
g_object_unref (ps->job);
|
||||
|
||||
g_free (ps);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
lpr_write (GIOChannel *source,
|
||||
GIOCondition con,
|
||||
gpointer user_data)
|
||||
{
|
||||
char buf[_LPR_MAX_CHUNK_SIZE];
|
||||
gsize bytes_read;
|
||||
GError *error;
|
||||
GIOStatus status;
|
||||
_PrintStreamData *ps = (_PrintStreamData *) user_data;
|
||||
|
||||
error = NULL;
|
||||
|
||||
status =
|
||||
g_io_channel_read_chars (source,
|
||||
buf,
|
||||
_LPR_MAX_CHUNK_SIZE,
|
||||
&bytes_read,
|
||||
&error);
|
||||
|
||||
if (status != G_IO_STATUS_ERROR)
|
||||
{
|
||||
gsize bytes_written;
|
||||
|
||||
g_io_channel_write_chars (ps->in,
|
||||
buf,
|
||||
bytes_read,
|
||||
&bytes_written,
|
||||
&error);
|
||||
}
|
||||
|
||||
if (error != NULL || status == G_IO_STATUS_EOF)
|
||||
{
|
||||
lpr_print_cb (GTK_PRINT_BACKEND_LPR (ps->backend),
|
||||
error, user_data);
|
||||
|
||||
|
||||
if (error != NULL)
|
||||
{
|
||||
GTK_DEBUG (PRINTING, "LPR Backend: %s", error->message);
|
||||
|
||||
g_error_free (error);
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
GTK_DEBUG (PRINTING, "LPR Backend: Writing %" G_GSIZE_FORMAT " byte chunk to lpr pipe", bytes_read);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
#define LPR_COMMAND "lpr"
|
||||
|
||||
static void
|
||||
gtk_print_backend_lpr_print_stream (GtkPrintBackend *print_backend,
|
||||
GtkPrintJob *job,
|
||||
GIOChannel *data_io,
|
||||
GtkPrintJobCompleteFunc callback,
|
||||
gpointer user_data,
|
||||
GDestroyNotify dnotify)
|
||||
{
|
||||
GError *print_error = NULL;
|
||||
_PrintStreamData *ps;
|
||||
GtkPrintSettings *settings;
|
||||
int argc;
|
||||
int in_fd;
|
||||
char **argv = NULL;
|
||||
const char *cmd_line;
|
||||
|
||||
settings = gtk_print_job_get_settings (job);
|
||||
|
||||
cmd_line = gtk_print_settings_get (settings, "lpr-commandline");
|
||||
if (cmd_line == NULL)
|
||||
cmd_line = LPR_COMMAND;
|
||||
|
||||
ps = g_new0 (_PrintStreamData, 1);
|
||||
ps->callback = callback;
|
||||
ps->user_data = user_data;
|
||||
ps->dnotify = dnotify;
|
||||
ps->job = g_object_ref (job);
|
||||
ps->in = NULL;
|
||||
|
||||
/* spawn lpr with pipes and pipe ps file to lpr */
|
||||
if (!g_shell_parse_argv (cmd_line, &argc, &argv, &print_error))
|
||||
goto out;
|
||||
|
||||
if (!g_spawn_async_with_pipes (NULL,
|
||||
argv,
|
||||
NULL,
|
||||
G_SPAWN_SEARCH_PATH,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
&in_fd,
|
||||
NULL,
|
||||
NULL,
|
||||
&print_error))
|
||||
goto out;
|
||||
|
||||
ps->in = g_io_channel_unix_new (in_fd);
|
||||
|
||||
g_io_channel_set_encoding (ps->in, NULL, &print_error);
|
||||
if (print_error != NULL)
|
||||
goto out;
|
||||
|
||||
g_io_channel_set_close_on_unref (ps->in, TRUE);
|
||||
|
||||
g_io_add_watch (data_io,
|
||||
G_IO_IN | G_IO_PRI | G_IO_ERR | G_IO_HUP,
|
||||
(GIOFunc) lpr_write,
|
||||
ps);
|
||||
|
||||
out:
|
||||
if (argv != NULL)
|
||||
g_strfreev (argv);
|
||||
|
||||
if (print_error != NULL)
|
||||
{
|
||||
lpr_print_cb (GTK_PRINT_BACKEND_LPR (print_backend), print_error, ps);
|
||||
g_error_free (print_error);
|
||||
|
||||
if (ps->in != NULL)
|
||||
g_io_channel_unref (ps->in);
|
||||
if (ps->job)
|
||||
g_object_unref (ps->job);
|
||||
g_free (ps);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_print_backend_lpr_init (GtkPrintBackendLpr *backend)
|
||||
{
|
||||
GtkPrinter *printer;
|
||||
|
||||
printer = g_object_new (GTK_TYPE_PRINTER,
|
||||
"name", _("Print to LPR"),
|
||||
"backend", backend,
|
||||
"is-virtual", FALSE,
|
||||
"accepts-pdf", TRUE,
|
||||
"accepts-ps", TRUE,
|
||||
NULL);
|
||||
gtk_printer_set_has_details (printer, TRUE);
|
||||
gtk_printer_set_icon_name (printer, "printer");
|
||||
gtk_printer_set_is_active (printer, TRUE);
|
||||
gtk_printer_set_is_default (printer, TRUE);
|
||||
|
||||
gtk_print_backend_add_printer (GTK_PRINT_BACKEND (backend), printer);
|
||||
g_object_unref (printer);
|
||||
gtk_print_backend_set_list_done (GTK_PRINT_BACKEND (backend));
|
||||
}
|
||||
|
||||
static GtkPrinterOptionSet *
|
||||
lpr_printer_get_options (GtkPrinter *printer,
|
||||
GtkPrintSettings *settings,
|
||||
GtkPageSetup *page_setup,
|
||||
GtkPrintCapabilities capabilities)
|
||||
{
|
||||
GtkPrinterOptionSet *set;
|
||||
GtkPrinterOption *option;
|
||||
const char *command;
|
||||
const char *n_up[] = {"1", "2", "4", "6", "9", "16" };
|
||||
|
||||
set = gtk_printer_option_set_new ();
|
||||
|
||||
option = gtk_printer_option_new ("gtk-n-up", _("Pages Per Sheet"), GTK_PRINTER_OPTION_TYPE_PICKONE);
|
||||
gtk_printer_option_choices_from_array (option, G_N_ELEMENTS (n_up), n_up, n_up);
|
||||
gtk_printer_option_set (option, "1");
|
||||
gtk_printer_option_set_add (set, option);
|
||||
g_object_unref (option);
|
||||
|
||||
option = gtk_printer_option_new ("gtk-main-page-custom-input", _("Command Line"), GTK_PRINTER_OPTION_TYPE_STRING);
|
||||
gtk_printer_option_set_activates_default (option, TRUE);
|
||||
option->group = g_strdup ("GtkPrintDialogExtension");
|
||||
if (settings != NULL &&
|
||||
(command = gtk_print_settings_get (settings, "lpr-commandline"))!= NULL)
|
||||
gtk_printer_option_set (option, command);
|
||||
else
|
||||
gtk_printer_option_set (option, LPR_COMMAND);
|
||||
gtk_printer_option_set_add (set, option);
|
||||
|
||||
return set;
|
||||
}
|
||||
|
||||
static void
|
||||
lpr_printer_get_settings_from_options (GtkPrinter *printer,
|
||||
GtkPrinterOptionSet *options,
|
||||
GtkPrintSettings *settings)
|
||||
{
|
||||
GtkPrinterOption *option;
|
||||
|
||||
option = gtk_printer_option_set_lookup (options, "gtk-main-page-custom-input");
|
||||
if (option)
|
||||
gtk_print_settings_set (settings, "lpr-commandline", option->value);
|
||||
|
||||
option = gtk_printer_option_set_lookup (options, "gtk-n-up");
|
||||
if (option)
|
||||
gtk_print_settings_set (settings, GTK_PRINT_SETTINGS_NUMBER_UP, option->value);
|
||||
|
||||
option = gtk_printer_option_set_lookup (options, "gtk-n-up-layout");
|
||||
if (option)
|
||||
gtk_print_settings_set (settings, GTK_PRINT_SETTINGS_NUMBER_UP_LAYOUT, option->value);
|
||||
}
|
||||
|
||||
static void
|
||||
lpr_printer_prepare_for_print (GtkPrinter *printer,
|
||||
GtkPrintJob *print_job,
|
||||
GtkPrintSettings *settings,
|
||||
GtkPageSetup *page_setup)
|
||||
{
|
||||
double scale;
|
||||
GtkPrintPages pages;
|
||||
GtkPageRange *ranges;
|
||||
int n_ranges;
|
||||
|
||||
pages = gtk_print_settings_get_print_pages (settings);
|
||||
gtk_print_job_set_pages (print_job, pages);
|
||||
|
||||
if (pages == GTK_PRINT_PAGES_RANGES)
|
||||
ranges = gtk_print_settings_get_page_ranges (settings, &n_ranges);
|
||||
else
|
||||
{
|
||||
ranges = NULL;
|
||||
n_ranges = 0;
|
||||
}
|
||||
|
||||
gtk_print_job_set_page_ranges (print_job, ranges, n_ranges);
|
||||
gtk_print_job_set_collate (print_job, gtk_print_settings_get_collate (settings));
|
||||
gtk_print_job_set_reverse (print_job, gtk_print_settings_get_reverse (settings));
|
||||
gtk_print_job_set_num_copies (print_job, gtk_print_settings_get_n_copies (settings));
|
||||
gtk_print_job_set_n_up (print_job, gtk_print_settings_get_number_up (settings));
|
||||
gtk_print_job_set_n_up_layout (print_job, gtk_print_settings_get_number_up_layout (settings));
|
||||
|
||||
scale = gtk_print_settings_get_scale (settings);
|
||||
if (scale != 100.0)
|
||||
gtk_print_job_set_scale (print_job, scale / 100.0);
|
||||
|
||||
gtk_print_job_set_page_set (print_job, gtk_print_settings_get_page_set (settings));
|
||||
gtk_print_job_set_rotate (print_job, TRUE);
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
/* GTK - The GIMP Toolkit
|
||||
* gtkprintbackendlpr.h: LPR implementation of GtkPrintBackend
|
||||
* for printing to lpr
|
||||
* Copyright (C) 2006, 2007 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __GTK_PRINT_BACKEND_LPR_H__
|
||||
#define __GTK_PRINT_BACKEND_LPR_H__
|
||||
|
||||
#include <glib-object.h>
|
||||
#include "gtkprintbackendprivate.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GTK_TYPE_PRINT_BACKEND_LPR (gtk_print_backend_lpr_get_type ())
|
||||
#define GTK_PRINT_BACKEND_LPR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_BACKEND_LPR, GtkPrintBackendLpr))
|
||||
#define GTK_IS_PRINT_BACKEND_LPR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_BACKEND_LPR))
|
||||
|
||||
typedef struct _GtkPrintBackendLpr GtkPrintBackendLpr;
|
||||
|
||||
GtkPrintBackend *gtk_print_backend_lpr_new (void);
|
||||
GType gtk_print_backend_lpr_get_type (void) G_GNUC_CONST;
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_PRINT_BACKEND_LPR_H__ */
|
||||
|
||||
|
@ -15,7 +15,6 @@ cups_dep = dependency('cups', version : '>=2.0', required: get_option('print-cup
|
||||
|
||||
# Use cpdb backend if present and enabled.
|
||||
# If not, use cups if present.
|
||||
# If not, use lpr.
|
||||
|
||||
if get_option('print-cpdb').enabled() and cpdb_dep.found()
|
||||
print_backends += 'cpdb'
|
||||
@ -46,17 +45,6 @@ elif cups_dep.found()
|
||||
install_dir: printbackends_install_dir,
|
||||
install: true,
|
||||
)
|
||||
else
|
||||
# Automatic fall-back to the lpr backend
|
||||
print_backends += 'lpr'
|
||||
shared_module('printbackend-lpr',
|
||||
sources: 'gtkprintbackendlpr.c',
|
||||
c_args: printbackends_args,
|
||||
dependencies: libgtk_dep,
|
||||
name_suffix: module_suffix,
|
||||
install_dir: printbackends_install_dir,
|
||||
install: true,
|
||||
)
|
||||
endif
|
||||
|
||||
# The 'file' print backend cannot be disabled
|
||||
|
@ -412,7 +412,6 @@ modules/media/gtkgstsink.c
|
||||
modules/printbackends/gtkprintbackendcpdb.c
|
||||
modules/printbackends/gtkprintbackendcups.c
|
||||
modules/printbackends/gtkprintbackendfile.c
|
||||
modules/printbackends/gtkprintbackendlpr.c
|
||||
modules/printbackends/gtkprintercups.c
|
||||
tools/encodesymbolic.c
|
||||
tools/gtk-builder-tool.c
|
||||
|
Loading…
Reference in New Issue
Block a user