Lines Matching +refs:val +refs:file
13 * Released under GNU GPL, read the file 'COPYING' for more information
56 #include "file.h"
170 batch_export(_("B_atch export all selected objects"), _("Export each selected object into its own PNG file, using export hints if any (caution, overwrites without asking!)")),
354 export_button.set_tooltip_text (_("Export the bitmap file with these settings"));
488 Glib::RefPtr<Gtk::Adjustment> Export::createSpinbutton( gchar const * /*key*/, float val, float min, float max,
495 Gtk::Adjustment * Export::createSpinbutton( gchar const * /*key*/, float val, float min, float max,
504 Glib::RefPtr<Gtk::Adjustment> adj = Gtk::Adjustment::create(val, min, max, step, page, 0);
506 Gtk::Adjustment *adj = new Gtk::Adjustment ( val, min, max, step, page, 0 );
1069 _("Exporting file <b>%s</b>..."), safeFile), desktop);
1071 _("Exporting file <b>%s</b>..."), safeFile), desktop);
1129 // make sure that .png is the extension of the file:
1341 // Copy the selected file name, converting from UTF-8 to UTF-16
1384 // Copy the selected file name, converting from UTF-16 to UTF-8
1397 gchar *file;
1399 file = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (fs));
1401 gchar * utf8file = g_filename_to_utf8( file, -1, NULL, NULL, NULL );
1406 g_free(file);
1876 * @param val What value to set it to.
1879 void Export::setValue(Glib::RefPtr<Gtk::Adjustment>& adj, double val )
1881 void Export::setValue( Gtk::Adjustment *adj, double val )
1885 adj->set_value(val);
1898 * @param val What the value should be in points.
1901 void Export::setValuePx(Glib::RefPtr<Gtk::Adjustment>& adj, double val)
1903 void Export::setValuePx( Gtk::Adjustment *adj, double val)
1908 setValue(adj, Inkscape::Util::Quantity::convert(val, "px", unit));
1989 c-file-style:"stroustrup"
1990 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))