Searched defs:msg (Results 1 - 21 of 21) sorted by relevance

/inkscape/src/ui/dialog/
H A Dmessages.cpp112 void Messages::message(char *msg) argument
115 Glib::ustring uMsg = msg;
H A Ddebug.cpp42 void message(char const *msg);
144 void DebugDialogImpl::message(char const *msg) argument
147 Glib::ustring uMsg = msg;
H A Dpixelartdialog.cpp370 char *msg = _("Select an <b>image</b> to trace"); local
371 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
388 char *msg = _("Image looks too big. Process may take a while and it is" local
391 Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_WARNING,
402 char *msg = _("Select an <b>image</b> to trace"); local
403 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
422 char *msg = _("Image looks too big. Process may take a while and it is" local
425 Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_WARNING,
H A Dcolor-item.cpp127 gchar* msg = g_strdup_printf(_("Color: <b>%s</b>; <b>Click</b> to set fill, <b>Shift+click</b> to set stroke"), local
129 desktop->tipsMessageContext()->set(Inkscape::INFORMATION_MESSAGE, msg);
130 g_free(msg);
H A Dsvg-fonts-dialog.cpp522 char *msg = _("Select a <b>path</b> to define the curves of a glyph"); local
523 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
530 char *msg = _("The selected object does not have a <b>path</b> description."); local
531 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
537 char *msg = _("No glyph selected in the SVGFonts dialog."); local
538 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
564 char *msg = _("Select a <b>path</b> to define the curves of a glyph"); local
565 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
572 char *msg = _("The selected object does not have a <b>path</b> description."); local
573 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
[all...]
/inkscape/src/util/
H A Dege-appear-time-tracker.cpp105 void AppearTimeTracker::report(gchar const* msg) argument
109 g_message("Time ended at %2.3f with [%s] on [%s]", secs, msg, _name.c_str());
H A Dexpression-evaluator.cpp383 void ExpressionEvaluator::throwError(const char *msg) argument
385 throw EvaluatorException(msg, start_of_current_token);
/inkscape/src/live_effects/
H A Dlpe-show_handles.cpp55 char *msg = _("The \"show handles\" path effect will remove any custom style on the object you are applying it to. If this is not what you want, click Cancel."); local
56 Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_QUESTION, Gtk::BUTTONS_OK_CANCEL, true);
H A Dlpe-perspective_path.cpp79 char *msg = _("You need a BOX 3D object"); local
80 Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_INFO,
94 char *msg = _("You need a BOX 3D object"); local
95 Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_INFO,
120 char *msg = _("You need a BOX 3D object"); local
121 Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_INFO,
128 char *msg = _("First perspective selected"); local
129 Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_INFO,
134 char *msg = _("Perspective changed"); local
135 Gtk::MessageDialog dialog(msg, fals
[all...]
/inkscape/src/inkgc/
H A Dgc.cpp26 void display_warning(char *msg, GC_word arg) { argument
27 g_warning(msg, arg);
/inkscape/src/trace/
H A Dtrace.cpp59 char *msg = _("Select an <b>image</b> to trace"); local
60 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
61 //g_warning(msg);
94 char *msg = _("Select only one <b>image</b> to trace"); local
95 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
112 char *msg = _("Select one image and one or more shapes above it"); local
113 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
124 char *msg = _("Select an <b>image</b> to trace"); //same as above local
125 msgStack->flash(Inkscape::ERROR_MESSAGE, msg);
126 //g_warning(msg);
132 char *msg = _("Select an <b>image</b> to trace"); local
225 char *msg = _("Select an <b>image</b> to trace"); local
407 char *msg = _("Trace: No active document"); local
439 char *msg = _("Trace: Image has no bitmap data"); local
553 char *msg = g_strdup_printf(_("Trace: Done. %ld nodes created"), totalNodeCount); local
[all...]
/inkscape/src/trace/potrace/
H A Dinkscape-potrace.cpp511 ustring msg = ustring::compose(_("Trace: %1. %2 nodes"), traceCount++, nodeCount); local
512 desktop->getMessageStack()->flash(Inkscape::NORMAL_MESSAGE, msg);
574 ustring msg = ustring::compose(_("Trace: %1. %2 nodes"), colorIndex, nodeCount); local
575 desktop->getMessageStack()->flash(Inkscape::NORMAL_MESSAGE, msg);
/inkscape/src/widgets/
H A Ddesktop-widget.h204 virtual void setMessage (Inkscape::MessageType type, gchar const* msg) argument
205 { _dtw->setMessage (type, msg); }
/inkscape/src/2geom/
H A Dbezier-clipping.cpp67 void print(std::vector<Point> const& cp, const char* msg = "")
69 std::cerr << msg << std::endl;
103 void range_assertion(int k, int m, int n, const char* msg) argument
108 << msg << std::endl
/inkscape/src/
H A Dfile.cpp332 Glib::ustring msg = _("Broken links have been changed to point to existing files."); local
333 desktop->showInfoDialog(msg);
723 Glib::ustring msg; local
725 msg = Glib::ustring::format(_("Document saved."));
727 msg = Glib::ustring::format(_("Document saved."), " ", doc->getURI());
729 SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::NORMAL_MESSAGE, msg.c_str());
996 Glib::ustring msg; local
999 msg = Glib::ustring::format(_("No changes need to be saved."));
1001 msg = Glib::ustring::format(_("No changes need to be saved."), " ", doc->getURI());
1003 SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::WARNING_MESSAGE, msg
[all...]
H A Dinkscape.cpp241 Glib::ustring msg = Glib::ustring::compose( local
243 g_warning("%s", msg.c_str());
244 SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::ERROR_MESSAGE, msg.c_str());
250 Glib::ustring msg = Glib::ustring::compose( local
252 g_warning("%s", msg.c_str());
253 SP_ACTIVE_DESKTOP->messageStack()->flash(Inkscape::ERROR_MESSAGE, msg.c_str());
427 Glib::ustring msg; local
429 if (prefs->getLastError( msg, secondary )) {
430 handler->handleError(msg, secondary);
H A Dpreferences.cpp151 gchar *msg = g_strdup_printf(_("Cannot create profile directory %s."), local
153 _reportError(msg, not_saved);
154 g_free(msg);
169 gchar *msg = g_strdup_printf(_("%s is not a valid directory."), local
171 _reportError(msg, not_saved);
172 g_free(msg);
180 gchar *msg = g_strdup_printf(_("Failed to create the preferences file %s."), local
182 _reportError(msg, not_saved);
183 g_free(msg);
211 //_reportError(msg, not_save
216 gchar *msg = g_strdup_printf(_("The preferences file %s is not a regular file."), local
226 gchar *msg = g_strdup_printf(_("The preferences file %s could not be read."), local
237 gchar *msg = g_strdup_printf(_("The preferences file %s is not a valid XML document."), local
246 gchar *msg = g_strdup_printf(_("The file %s is not a valid Inkscape preferences file."), local
856 _reportError(Glib::ustring const &msg, Glib::ustring const &secondary) argument
[all...]
H A Dsplivarot.cpp124 boolop_display_error_message(SPDesktop *desktop, Glib::ustring const &msg) argument
127 desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, msg);
129 g_printerr("%s\n", msg.c_str());
H A Dselection-chemistry.cpp135 selection_display_message(SPDesktop *desktop, Inkscape::MessageType msgType, Glib::ustring const &msg) argument
138 desktop->messageStack()->flash(msgType, msg);
143 g_printerr("%s\n", msg.c_str());
/inkscape/src/ui/
H A Dclipboard.cpp1454 void ClipboardManagerImpl::_userWarn(SPDesktop *desktop, char const *msg) argument
1456 desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, msg);
/inkscape/src/libcroco/
H A Dcr-parser.c81 guchar *msg; member in struct:_CRParserError
443 if (a_this->msg) {
444 g_free (a_this->msg);
447 a_this->msg = (guchar *) g_strdup ((const gchar *) a_msg);
489 g_printerr ("%s\n", a_this->msg);
501 if (a_this->msg) {
502 g_free (a_this->msg);
503 a_this->msg = NULL;

Completed in 114 milliseconds