1. === modified file 'src/libnrtype/font-lister.cpp'
  2. --- src/libnrtype/font-lister.cpp 2015-05-09 15:39:31 +0000
  3. +++ src/libnrtype/font-lister.cpp 2015-11-07 14:28:20 +0000
  4. @@ -4,7 +4,7 @@
  5. #include <gtkmm/liststore.h>
  6. #include <gtkmm/treemodel.h>
  7. -
  8. +#include "libnrtype/FontFactory.h"
  9. #include <libnrtype/font-instance.h>
  10. #include <libnrtype/TextWrapper.h>
  11. #include <libnrtype/one-glyph.h>
  12. @@ -59,8 +59,8 @@
  13. // Get sorted font families from Pango
  14. std::vector<PangoFontFamily *> familyVector;
  15. +
  16. font_factory::Default()->GetUIFamilies(familyVector);
  17. -
  18. // Traverse through the family names and set up the list store
  19. for (size_t i = 0; i < familyVector.size(); ++i) {
  20. const char* displayName = sp_font_family_get_name(familyVector[i]);
  21. @@ -122,10 +122,21 @@
  22. ++iter;
  23. }
  24. }
  25. -
  26. -FontLister *FontLister::get_instance()
  27. +//Añadimos un parametro a la función para que refresque/actualize la variable estatica (+- global) de la instancia de font lister
  28. +//Si no durante el transcurso de Inkscape, FontLister seria siempre igual
  29. +FontLister *FontLister::get_instance(bool refresh)
  30. {
  31. static Inkscape::FontLister *instance = new Inkscape::FontLister();
  32. + if(refresh){
  33. + //la sifuiente linea provoca que cuando llamemos despues a el constructor de
  34. + //font lister, este llame a font_factory::Default() generando un nuevo fontfactory
  35. + //con las nuevas fuentes. Estudiatelo para entender como funciona, tienes que seguir el hilo de los procesos
  36. + font_factory::lUsine = NULL;
  37. + //Creamos un nuevo valor de retorno para la variable instance
  38. + //que se queda guardado globalmente, asi que solo hay que llamar a get_instance(true) cuando
  39. + //queramos refrescar la lista de fuentes
  40. + instance = new Inkscape::FontLister();
  41. + }
  42. return instance;
  43. }
  44. === modified file 'src/libnrtype/font-lister.h'
  45. --- src/libnrtype/font-lister.h 2014-10-17 20:03:14 +0000
  46. +++ src/libnrtype/font-lister.h 2015-11-07 14:27:57 +0000
  47. @@ -150,7 +150,12 @@
  48. void update_font_list(SPDocument *document);
  49. public:
  50. - static Inkscape::FontLister *get_instance();
  51. + //a la cabecera de la función le hemos puesto un valor por defecto que en este caso
  52. + //hace que se pueda llamar a la función oviandolo, tal y como hacia inksape antes, es decir
  53. + //puedes llamarlo como originalmente get_instance() y actual normal, dandole el valor a refresh = false
  54. + //o puedes llamarlo get_instance(true)
  55. + //esto nos permite modificar la función y no tener que modificar todas las llamadas a esta dentro de inkscape
  56. + static Inkscape::FontLister *get_instance(bool refresh = false);
  57. /**
  58. * Takes a hand written font spec and returns a Pango generated one in
  59. === modified file 'src/widgets/text-toolbar.cpp'
  60. --- src/widgets/text-toolbar.cpp 2015-04-29 20:51:23 +0000
  61. +++ src/widgets/text-toolbar.cpp 2015-11-07 14:28:25 +0000
  62. @@ -113,6 +113,20 @@
  63. }
  64. #endif
  65. +//Función de callback
  66. +//Refresca la lista de fuentes
  67. +static void sp_refresh_combobox( Ink_ComboBoxEntry_Action *act )
  68. +{
  69. + //Conseguimos el widget del combo de fuentes
  70. + GtkComboBox *fontCombo = act->combobox;
  71. + //Creamos una instancia de fonlister con overwrite a true, lo explico en otro lado
  72. + Inkscape::FontLister* fontlister = Inkscape::FontLister::get_instance(true);
  73. + //Generamos el nuevo tree model con las todas, incluidas las nuevas tipografias
  74. + Glib::RefPtr<Gtk::ListStore> store = fontlister->get_font_list();
  75. + GtkListStore* model = store->gobj();
  76. + //actualizamos el combo con el nuevo modelo
  77. + gtk_combo_box_set_model(fontCombo, GTK_TREE_MODEL(model));
  78. +}
  79. // Font family
  80. static void sp_text_fontfamily_value_changed( Ink_ComboBoxEntry_Action *act, GObject *tbl )
  81. @@ -122,7 +136,6 @@
  82. std::cout << "MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM" << std::endl;
  83. std::cout << "sp_text_fontfamily_value_changed: " << std::endl;
  84. #endif
  85. -
  86. // quit if run by the _changed callbacks
  87. if (g_object_get_data(G_OBJECT(tbl), "freeze")) {
  88. #ifdef DEBUG_TEXT
  89. @@ -860,6 +873,10 @@
  90. fontlister->update_font_list( SP_ACTIVE_DESKTOP->getDocument());
  91. }
  92. fontlister->selection_update();
  93. + //esto esta ejecutado cada vez que la seleccion del texto cambia, no me parece el mejor sitio para ejeccutarlo
  94. + //seguramente lo mejor seria crear un boton de refresco de fuentes tanto en esta barra como en el Font Dialog.
  95. + //y llamarlo desde el callback
  96. + sp_refresh_combobox( fontFamilyAction );
  97. // Update font list, but only if widget already created.
  98. if( fontFamilyAction->combobox != NULL ) {
 
 

61

 

876

Pasted Text #1003

-

PasteBin

Линии
108
Слова
562
Размер:
4,7 КБ
Создан:
Тип:
text/plain
Public Domain (PD)
Пожалуйста, войдитев систему, чтобы оставить комментарии!