Visualizzata l'icona del file in SolipaAllegato (closes #210).
<tool id="cdt.managedbuild.tool.gnu.c.compiler.mingw.base.2108842943" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.mingw.base">
<option id="gnu.c.compiler.option.include.paths.783512568" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath">
<listOptionValue builtIn="false" value=""C:\mingw\include""/>
+ <listOptionValue builtIn="false" value=""C:\mingw\include\gdk-pixbuf-2.0""/>
<listOptionValue builtIn="false" value=""C:\mingw\include\glib-2.0""/>
<listOptionValue builtIn="false" value=""C:\mingw\include\gtk-2.0""/>
<listOptionValue builtIn="false" value=""C:\mingw\include\evolution-data-server-2.32""/>
+ <listOptionValue builtIn="false" value=""C:\mingw\include\libgda-4.0""/>
+ <listOptionValue builtIn="false" value=""C:\mingw\include\libgda-4.0\libgda""/>
</option>
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1341682187" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
</tool>
<property name="n_columns">2</property>
<property name="column_spacing">5</property>
<property name="row_spacing">5</property>
- <child>
- <placeholder/>
- </child>
<child>
<object class="GtkLabel" id="label139">
<property name="visible">True</property>
<object class="GtkHBox" id="hbox13">
<property name="visible">True</property>
<property name="can_focus">False</property>
- <property name="spacing">5</property>
+ <property name="spacing">3</property>
<child>
<object class="GtkEntry" id="entry42">
<property name="visible">True</property>
</child>
<child>
<object class="GtkButton" id="button144">
- <property name="label" translatable="yes">...</property>
<property name="use_action_appearance">False</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
+ <child>
+ <object class="GtkImage" id="image2">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="stock">gtk-find</property>
+ <property name="icon-size">1</property>
+ </object>
+ </child>
</object>
<packing>
<property name="expand">False</property>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
+ <child>
+ <placeholder/>
+ </child>
</object>
</child>
</object>
#include <config.h>
#endif
+#include <libgda/libgda.h>
#include <sql-parser/gda-sql-parser.h>
#include <libgtkform/field.h>
void
solipa_allegato_apri_allegato (GtkWindow *transient, const gchar *filename)
{
- GtkWidget *dialog;
GFile *gfile;
GAppInfo *gappinfo;
GError *error;
gfile = g_file_new_for_commandline_arg (filename);
if (gfile == NULL)
{
- dialog = gtk_message_dialog_new (transient,
- GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_MESSAGE_WARNING,
- GTK_BUTTONS_OK,
- "Impossibile aprire l'allegato selezionato.");
- gtk_dialog_run (GTK_DIALOG (dialog));
- gtk_widget_destroy (dialog);
+ solipa_message_dialog (GTK_WIDGET (transient),
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_OK,
+ "Impossibile aprire l'allegato selezionato.");
return;
}
gappinfo = g_file_query_default_handler (gfile, NULL, &error);
if (gappinfo == NULL)
{
- dialog = gtk_message_dialog_new (transient,
- GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_MESSAGE_WARNING,
- GTK_BUTTONS_OK,
- "Impossibile aprire l'allegato selezionato: %s.",
- (error != NULL && error->message != NULL ? error->message : "nessun dettaglio"));
- gtk_dialog_run (GTK_DIALOG (dialog));
- gtk_widget_destroy (dialog);
+ solipa_message_dialog (GTK_WIDGET (transient),
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_OK,
+ g_strdup_printf ("Impossibile aprire l'allegato selezionato: %s.",
+ error != NULL && error->message != NULL ? error->message : "nessun dettaglio"));
return;
}
error = NULL;
if (!g_app_info_launch (gappinfo, lfiles, NULL, &error))
{
- dialog = gtk_message_dialog_new (transient,
- GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_MESSAGE_WARNING,
- GTK_BUTTONS_OK,
- "Impossibile aprire l'allegato selezionato: %s.",
- (error != NULL && error->message != NULL ? error->message : "nessun dettaglio"));
- gtk_dialog_run (GTK_DIALOG (dialog));
- gtk_widget_destroy (dialog);
+ solipa_message_dialog (GTK_WIDGET (transient),
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_OK,
+ g_strdup_printf ("Impossibile aprire l'allegato selezionato: %s.",
+ error != NULL && error->message != NULL ? error->message : "nessun dettaglio"));
}
}
{
struct tm *tm;
+ GdkPixbuf *pixbuf;
+
tm = localtime (&buf.st_mtime);
gtk_entry_set_text (GTK_ENTRY (priv->txt_percorso), filename);
tm->tm_mday, tm->tm_mon + 1, tm->tm_year + 1900,
tm->tm_hour, tm->tm_min, tm->tm_sec));
gtk_entry_set_text (GTK_ENTRY (priv->txt_dimensione_nascosto), g_strdup_printf ("%d", buf.st_size));
+
+ pixbuf = solipa_file_get_icon_as_pixbuf (filename, priv->txt_percorso, GTK_ICON_SIZE_MENU);
+
+ gtk_entry_set_icon_from_pixbuf (GTK_ENTRY (priv->txt_percorso), GTK_ENTRY_ICON_PRIMARY, pixbuf);
}
else
{
/* file non esistente */
/* non dovrebbe succedere */
gtk_widget_destroy (dialog);
- dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_widget_get_ancestor (priv->widget, GTK_TYPE_WINDOW)),
- GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_MESSAGE_WARNING,
- GTK_BUTTONS_OK,
- "Il file selezionato non esiste.");
- gtk_dialog_run (GTK_DIALOG (dialog));
+ solipa_message_dialog (GTK_WIDGET (gtk_widget_get_ancestor (priv->widget, GTK_TYPE_WINDOW)),
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_OK,
+ "Il file selezionato non esiste.");
gtk_entry_set_text (GTK_ENTRY (priv->txt_percorso), "");
gtk_entry_set_text (GTK_ENTRY (priv->txt_data), "");
gtk_entry_set_text (GTK_ENTRY (priv->txt_dimensione_nascosto), "0");
+ gtk_entry_set_icon_from_stock (GTK_ENTRY (priv->txt_percorso), GTK_ENTRY_ICON_PRIMARY, NULL);
}
g_free (filename);
}
- gtk_widget_destroy (dialog);
+ if (GTK_IS_DIALOG (dialog))
+ {
+ gtk_widget_destroy (dialog);
+ }
}
static void
SolipaMailUIPrivate *priv = SOLIPA_MAIL_UI_GET_PRIVATE (solipa_mail_ui);
GtkWidget *dialog;
+ GtkWidget *transient;
gchar *filename;
GtkTreeIter iter;
- GError *error;
GFile *file;
- GFileInfo *file_info;
- GIcon *icon;
- GInputStream *istream;
GdkPixbuf *pixbuf;
+ if (gtk_widget_get_parent (priv->widget) == NULL)
+ {
+ transient = priv->dialog;
+ }
+ else
+ {
+ transient = gtk_widget_get_toplevel (priv->widget);
+ }
+
dialog = gtk_file_chooser_dialog_new ("Choose a file to attach.",
- NULL,
+ GTK_WINDOW (transient),
GTK_FILE_CHOOSER_ACTION_OPEN,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
{
filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
+ gtk_widget_destroy (dialog);
if (filename == NULL)
{
- gtk_widget_destroy (dialog);
+ solipa_message_dialog (transient,
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_OK,
+ g_strdup_printf ("The file «%s» doesn't exist.",
+ filename));
return;
}
file = g_file_new_for_path (filename);
if (!g_file_query_exists (file, NULL))
{
- gtk_widget_destroy (dialog);
+ solipa_message_dialog (transient,
+ GTK_MESSAGE_WARNING,
+ GTK_BUTTONS_OK,
+ g_strdup_printf ("The file «%s» doesn't exist.",
+ filename));
return;
}
- error = NULL;
- file_info = g_file_query_info (file,
- G_FILE_ATTRIBUTE_STANDARD_ICON,
- 0,
- NULL,
- &error);
-
- pixbuf = NULL;
- icon = g_file_info_get_icon (file_info);
- if (icon != NULL)
- {
- if (G_IS_THEMED_ICON (icon))
- {
- GtkIconTheme *theme;
- const gchar * const *names;
-
- theme = gtk_icon_theme_get_default ();
- names = g_themed_icon_get_names (G_THEMED_ICON (icon));
-
- error = NULL;
- pixbuf = gtk_icon_theme_load_icon (theme,
- names[0],
- 64,
- GTK_ICON_LOOKUP_USE_BUILTIN,
- &error);
- }
- else
- {
- error = NULL;
- istream = g_loadable_icon_load (G_LOADABLE_ICON (G_FILE_ICON (icon)),
- 64,
- NULL, NULL,
- &error);
- error = NULL;
- pixbuf = gdk_pixbuf_new_from_stream (istream, NULL, &error);
- }
- }
- if (pixbuf == NULL)
- {
- GtkIconSet *icon_set;
- icon_set = gtk_icon_factory_lookup_default ("gtk-file");
- pixbuf = gtk_icon_set_render_icon (icon_set,
- gtk_widget_get_style (priv->iv_attachments),
- GTK_TEXT_DIR_NONE,
- GTK_STATE_NORMAL,
- GTK_ICON_SIZE_DND,
- priv->iv_attachments, NULL);
- }
+ pixbuf = solipa_file_get_icon_as_pixbuf (filename, priv->iv_attachments, GTK_ICON_SIZE_DND);
gtk_list_store_append (priv->lstore_attachments, &iter);
gtk_list_store_set (priv->lstore_attachments, &iter,
-1);
g_free (filename);
}
- gtk_widget_destroy (dialog);
+ if (GTK_IS_DIALOG (dialog))
+ {
+ gtk_widget_destroy (dialog);
+ }
}
static void
return infobar;
}
+GdkPixbuf
+*solipa_file_get_icon_as_pixbuf (const gchar *filename,
+ GtkWidget *widget,
+ GtkIconSize size)
+{
+ GdkPixbuf *pixbuf;
+
+ GError *error;
+ GFile *file;
+ GFileInfo *file_info;
+ GIcon *icon;
+ GInputStream *istream;
+
+ pixbuf = NULL;
+
+ file = g_file_new_for_path (filename);
+ if (!g_file_query_exists (file, NULL))
+ {
+ return NULL;
+ }
+
+ error = NULL;
+ file_info = g_file_query_info (file,
+ G_FILE_ATTRIBUTE_STANDARD_ICON,
+ 0,
+ NULL,
+ &error);
+ if (file_info == NULL || error != NULL)
+ {
+ g_warning ("Unable to get file info.");
+ return NULL;
+ }
+
+ icon = g_file_info_get_icon (file_info);
+ if (icon != NULL)
+ {
+ GtkSettings *settings;
+ gint width;
+ gint height;
+
+ settings = gtk_settings_get_default ();
+ if (!gtk_icon_size_lookup_for_settings (settings, size,
+ &width, &height))
+ {
+ width = 16;
+ }
+
+ if (G_IS_THEMED_ICON (icon))
+ {
+ GtkIconTheme *theme;
+ const gchar * const *names;
+
+ theme = gtk_icon_theme_get_default ();
+ names = g_themed_icon_get_names (G_THEMED_ICON (icon));
+
+ error = NULL;
+ pixbuf = gtk_icon_theme_load_icon (theme,
+ names[0],
+ width,
+ GTK_ICON_LOOKUP_USE_BUILTIN,
+ &error);
+ }
+ else
+ {
+ error = NULL;
+ istream = g_loadable_icon_load (G_LOADABLE_ICON (G_FILE_ICON (icon)),
+ width,
+ NULL, NULL,
+ &error);
+ error = NULL;
+ pixbuf = gdk_pixbuf_new_from_stream (istream, NULL, &error);
+ }
+ }
+
+ if (pixbuf == NULL)
+ {
+ GtkIconSet *icon_set;
+ icon_set = gtk_icon_factory_lookup_default ("gtk-file");
+ pixbuf = gtk_icon_set_render_icon (icon_set,
+ gtk_widget_get_style (widget),
+ GTK_TEXT_DIR_NONE,
+ GTK_STATE_NORMAL,
+ size,
+ widget, NULL);
+ }
+
+ return pixbuf;
+}
+
/**
* This function is copied from
* http://bugzilla.gnome.org/show_bug.cgi?id=524831.
#ifndef __SOLIPA_UTILS_H__
#define __SOLIPA_UTILS_H__
+#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gtk/gtk.h>
#include "solipa.h"
GtkWidget *solipa_info_bar (GtkMessageType type, const gchar *message_text);
+GdkPixbuf *solipa_file_get_icon_as_pixbuf (const gchar *filename, GtkWidget *widget, GtkIconSize size);
+
gchar *g_mkdtemp (gchar *tmpl);