Lines Matching refs:Export

150 Export::Export (void) :
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!)")),
191 /* Export area frame */
193 Gtk::Label* lbl = new Gtk::Label(_("<b>Export area</b>"), Gtk::ALIGN_START);
206 unitChangedConn = unit_selector.signal_changed().connect(sigc::mem_fun(*this, &Export::onUnitChanged));
218 selectiontype_buttons[i]->signal_clicked().connect(sigc::mem_fun(*this, &Export::onAreaToggled));
233 &Export::onAreaX0Change);
237 &Export::onAreaX1Change);
241 &Export::onAreaWidthChange);
245 &Export::onAreaY0Change);
249 &Export::onAreaY1Change);
253 &Export::onAreaHeightChange);
286 &Export::onBitmapWidthChange);
292 &Export::onExportXdpiChange);
297 &Export::onBitmapHeightChange);
347 /* Export Button row */
354 export_button.set_tooltip_text (_("Export the bitmap file with these settings"));
369 filename_entry.signal_changed().connect( sigc::mem_fun(*this, &Export::onFilenameModified) );
371 filename_entry.signal_activate().connect(sigc::mem_fun(*this, &Export::onExport) );
372 browse_button.signal_clicked().connect(sigc::mem_fun(*this, &Export::onBrowse));
373 batch_export.signal_clicked().connect(sigc::mem_fun(*this, &Export::onBatchClicked));
374 export_button.signal_clicked().connect(sigc::mem_fun(*this, &Export::onExport));
375 hide_export.signal_clicked().connect(sigc::mem_fun(*this, &Export::onHideExceptSelected));
377 desktopChangeConn = deskTrack.connectDesktopChanged( sigc::mem_fun(*this, &Export::setTargetDesktop) );
387 Export::~Export (void)
398 void Export::setDesktop(SPDesktop *desktop)
404 void Export::setTargetDesktop(SPDesktop *desktop)
415 selectChangedConn = desktop->selection->connectChanged(sigc::hide(sigc::mem_fun(*this, &Export::onSelectionChanged)));
416 subselChangedConn = desktop->connectToolSubselectionChanged(sigc::hide(sigc::mem_fun(*this, &Export::onSelectionChanged)));
419 selectModifiedConn = desktop->selection->connectModified(sigc::hide<0>(sigc::mem_fun(*this, &Export::onSelectionModified)));
436 void Export::set_default_filename () {
488 Glib::RefPtr<Gtk::Adjustment> Export::createSpinbutton( gchar const * /*key*/, float val, float min, float max,
493 void (Export::*cb)() )
495 Gtk::Adjustment * Export::createSpinbutton( gchar const * /*key*/, float val, float min, float max,
500 void (Export::*cb)() )
571 Glib::ustring Export::create_filepath_from_id (Glib::ustring id, const Glib::ustring &file_entry_text)
600 void Export::onBatchClicked ()
609 void Export::updateCheckbuttons ()
623 inline void Export::findDefaultSelection()
663 void Export::onSelectionChanged()
683 void Export::onSelectionModified ( guint /*flags*/ )
722 void Export::onAreaToggled ()
863 bool Export::onProgressDelete (GdkEventAny * /*event*/)
871 void Export::onProgressCancel ()
878 unsigned int Export::onProgressCallback(float value, void *dlg)
897 Export *self = reinterpret_cast<Export *>(dlg2->get_data("exportPanel"));
912 void Export::setExporting(bool exporting, Glib::ustring const &text)
929 Gtk::Dialog * Export::create_progress_dialog (Glib::ustring progress_text) {
930 Gtk::Dialog *dlg = new Gtk::Dialog(_("Export in progress"), TRUE);
944 btn->signal_clicked().connect( sigc::mem_fun(*this, &Export::onProgressCancel) );
945 dlg->signal_delete_event().connect( sigc::mem_fun(*this, &Export::onProgressDelete) );
952 Glib::ustring Export::filename_add_extension (Glib::ustring filename, Glib::ustring extension)
976 Glib::ustring Export::absolutize_path_from_document_location (SPDocument *doc, const Glib::ustring &filename)
993 void Export::onUnitChanged()
998 void Export::onHideExceptSelected ()
1004 void Export::onExport ()
1187 desktop->messageStack()->flash(Inkscape::INFORMATION_MESSAGE, _("Export aborted."));
1300 void Export::onBrowse ()
1416 bool Export::bbox_equal(Geom::Rect const &one, Geom::Rect const &two)
1449 void Export::detectSize() {
1525 void Export::areaXChange(Glib::RefPtr<Gtk::Adjustment>& adj)
1527 void Export::areaXChange (Gtk::Adjustment *adj)
1568 void Export::areaYChange(Glib::RefPtr<Gtk::Adjustment>& adj)
1570 void Export::areaYChange (Gtk::Adjustment *adj)
1612 void Export::onAreaWidthChange()
1641 void Export::onAreaHeightChange()
1677 void Export::setImageY()
1699 void Export::setImageX()
1714 void Export::onBitmapWidthChange ()
1744 void Export::onBitmapHeightChange ()
1800 void Export::onExportXdpiChange()
1857 void Export::setArea( double x0, double y0, double x1, double y1 )
1879 void Export::setValue(Glib::RefPtr<Gtk::Adjustment>& adj, double val )
1881 void Export::setValue( Gtk::Adjustment *adj, double val )
1901 void Export::setValuePx(Glib::RefPtr<Gtk::Adjustment>& adj, double val)
1903 void Export::setValuePx( Gtk::Adjustment *adj, double val)
1924 float Export::getValue(Glib::RefPtr<Gtk::Adjustment>& adj)
1926 float Export::getValue( Gtk::Adjustment *adj )
1950 float Export::getValuePx(Glib::RefPtr<Gtk::Adjustment>& adj)
1952 float Export::getValuePx( Gtk::Adjustment *adj )
1971 void Export::onFilenameModified()