Searched defs:names (Results 1 - 9 of 9) sorted by relevance
/inkscape/src/libnrtype/ |
H A D | nr-type-primitives.h | 25 guchar **names; member in struct:NRNameList
|
/inkscape/src/ |
H A D | sp-glyph-kerning.h | 32 char* names; member in class:GlyphNames
|
H A D | shortcuts.cpp | 208 * Get a list of keyboard shortcut files names and paths from the system and users paths 211 void sp_shortcut_get_file_names(std::vector<Glib::ustring> *names, std::vector<Glib::ustring> *paths) { argument 267 names->insert(names->begin(), label.c_str()); 270 names->push_back(label.c_str());
|
/inkscape/src/widgets/ |
H A D | tweak-toolbar.cpp | 42 #include "ui/icon-names.h" 80 static gchar const* names[] = {"tweak_doh", "tweak_dos", "tweak_dol", "tweak_doo", "tweak_channels_label"}; local 82 for (size_t i = 0; i < G_N_ELEMENTS(names); ++i) { 83 GtkAction *act = GTK_ACTION(g_object_get_data( tbl, names[i] ));
|
H A D | text-toolbar.cpp | 54 #include "ui/icon-names.h" 103 const gchar* names[] = {"100", "200", "300", "400", "500", "600", "700", "800", "900", local 108 std::cout << " Weight: " << names[ index ] 115 const gchar* names[] = {"NORMAL", "ITALIC", "OBLIQUE", "Out of range"}; local 118 std::cout << " Style: " << names[ index ] << std::endl; 143 css_font_family_unquote( new_family ); // Remove quotes around font family names. 387 // below, variable names suggest horizontal move, but we check the writing direction
|
H A D | icon.cpp | 44 #include "ui/icon-names.h" 84 static GdkPixbuf *loadSvg(std::list<Glib::ustring> const &names, GtkIconSize lsize, unsigned psize); 97 static guchar *load_svg_pixels(std::list<Glib::ustring> const &names, 350 std::list<Glib::ustring> names; local 351 names.push_back(name); 356 names.push_back(legacyNames[name]); 359 pb = loadSvg( names, Inkscape::getRegisteredIconSize(lsize), psize ); 1001 gchar const *const names[] = { local 1027 ( used ? ' ' : 'X' ), width, height, names[i]); 1294 guchar *IconImpl::load_svg_pixels(std::list<Glib::ustring> const &names, argument 1443 std::list<Glib::ustring> names; local 1486 loadSvg(std::list<Glib::ustring> const &names, GtkIconSize lsize, unsigned psize) argument [all...] |
/inkscape/src/extension/dbus/ |
H A D | document-interface.cpp | 1121 char **names, GError **error) 1124 for (i=0;names[i] != NULL;i++) { 1125 document_interface_selection_add(doc_interface, names[i], error); 1140 gchar **names, GError **error) 1144 for (i=0;names[i] != NULL;i++) { 1145 document_interface_selection_add(doc_interface, names[i], error); 1120 document_interface_selection_add_list(DocumentInterface *doc_interface, char **names, GError **error) argument 1139 document_interface_selection_set_list(DocumentInterface *doc_interface, gchar **names, GError **error) argument
|
/inkscape/src/ui/dialog/ |
H A D | inkscape-preferences.cpp | 464 _page_text.add_line( false, "", *cb, "", _("Show font samples alongside font names in the drop-down list in Text bar")); 1087 std::vector<Glib::ustring> names = ::Inkscape::CMSSystem::getDisplayNames(); local 1093 for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) { 1105 names = ::Inkscape::CMSSystem::getSoftproofNames(); 1108 for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
|
H A D | input.cpp | 919 static Glib::ustring getCommon( std::list<Glib::ustring> const &names ) 923 if ( !names.empty() ) { 927 if ( names.begin()->length() > pos ) { 928 gunichar ch = (*names.begin())[pos]; 929 for ( std::list<Glib::ustring>::const_iterator it = names.begin(); it != names.end(); ++it ) { 1001 std::list<Glib::ustring> names; local 1003 names.push_back( (*it2)->getName() ); 1005 Glib::ustring common = getCommon(names);
|
Completed in 39 milliseconds