1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/*
* Copyright 2011 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
*
* 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) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* 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, see <http://www.gnu.org/licenses/>.
*
* #include <gtk/gtk.h>
*/
#include <gtk/gtk.h>
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
static void on_dlg_response(GtkDialog* dlg, int res, gpointer user_data)
{
switch(res)
{
default:
gtk_main_quit();
}
}
void reloadstyle(GFileMonitor *monitor,
GFile *file,
GFile *other_file,
GFileMonitorEvent event_type,
gpointer user_data)
{
if(event_type!=G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT)
return;
fprintf(stderr, "changing settings... %d\n", event_type);
gtk_rc_reparse_all();
fprintf(stderr, "settings changed!!\n");
}
void printHelp()
{
printf(
"Small utility for previewing Gtk2 theme.\n"
"\n"
"Using:\n"
"gtk_preview <args>\n"
"\n"
"Arguments:\n"
" -h, --help\tShows this help\n"
" -V, --version\tPrints the program version\n"
" <winid>\t Creates a window that can be embedded using XEmbed\n"
);
}
int main(int argc, char **argv)
{
GError *error = NULL;
unsigned long wid=0;
gtk_init( &argc, &argv );
int i;
for(i=0; i<argc; i++) {
if(strcmp("-h", argv[i])==0 || strcmp("--help", argv[i])==0) {
printHelp();
return 0;
}
else if(strcmp("-V", argv[i])==0 || strcmp("--version", argv[i])==0) {
printf("gtk_preview version 1.0\n");
return 0;
} else if(argc>1)
sscanf(argv[1], "%ld", &wid);
}
const char* ui_file = DATA_DIR "/preview.ui";
GtkBuilder *builder = gtk_builder_new();
if( ! gtk_builder_add_from_file( builder, ui_file, &error ) ) {
g_warning( "%s", error->message );
g_free( error );
return 1;
}
GtkWidget *previewUI = GTK_WIDGET( gtk_builder_get_object( builder, "frame1" ) );
gtk_builder_connect_signals( builder, NULL );
/* a plug when embedded, a window when a window */
GtkWidget* window;
if(wid==0) {
window = gtk_dialog_new();
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (window)->vbox), previewUI);
g_signal_connect(window, "response", G_CALLBACK(on_dlg_response), NULL);
} else {
window = gtk_plug_new(wid);
gtk_container_add (GTK_CONTAINER (window), previewUI);
}
GdkColor black = {0, 0, 0, 0};
gtk_widget_modify_bg(previewUI, GTK_STATE_NORMAL, &black);
g_signal_connect (window, "destroy",
G_CALLBACK (gtk_widget_destroyed),
&window);
gtk_widget_show_all ( window );
g_object_unref( G_OBJECT( builder ) );
if(wid)
fprintf(stderr, "--- is embedded: %d\n", gtk_plug_get_embedded(GTK_PLUG(window)));
gchar** files = gtk_rc_get_default_files();
GFile* file = g_file_new_for_path(files[0]);
GFileMonitor* monitor = g_file_monitor_file(file, G_FILE_MONITOR_NONE, NULL, NULL);
g_signal_connect (monitor, "changed",
G_CALLBACK (reloadstyle), NULL);
gtk_main();
return 0;
}
|