Skip to main content

More on generating pango strings...

This is not so easy a 'nut to crack'. I've noticed that the solution that I've come up with so far fails to implement nested markup, ie <b> <s> text </s></b>. Conversely, getting the <span> </span> block is an issue too! Clearly there is a need for this functionality, but there is no clear solution that I can find. The Gimp developers are working on something similar but I notice that they have problems with <span> too!

So, I've gone back to basics. Rather than relying the pango string parser, I'll put something together of my own. Today I've been working on some extra string funcs. Here's what I've produced so far:

/*
gcc -o first first.c
*/

#include <stdio.h>
#include <string.h>
 
/**
    search for first occurance of p in s, starting from i
    done
**/
int strnfrst(char *s, char *p, int i)
{
        char *f;
        int l;
       
        l = strlen(p);  /* length of search string */
        f = s+i;
 
        /* search through string till match found */
        while (*f != '\0') {
                if ( !strncmp(f, p, l) ) {
                    return f-s;
                }
                f++;
        }
        return -1;
}

/**
    extract a range of characters from string s starting from position a to position b
    done
**/
char *strrng (char *dest, const char *src, int a, int b) {
  unsigned i,j;
 
  j=0;
  for (i=a; i<b; i++)
  {
    dest[j++] = src[i];
  }
  dest[j] = '\0';
  return dest;

}

/*
char *strcpy(char *dest, const char *src)
{
  unsigned i;
  for (i=0; src[i] != '\0'; ++i)
    dest[i] = src[i];
  dest[i] = '\0';
  return dest;
}
*/

/**
    gettag
    get name of next tag in string, starting at position i
**/
int getTag (char *str, char *tag, int i) {

        int a,b;
       
        a = strnfrst(str,"</",i);
       
        if (a) {
            a = strnfrst(str,"<",i);
        }
       
        b = strnfrst(str,">",a+1);

        strrng(tag,str,a,b+1);
       
        return a;
}


/**
    test
**/
int main()
{

        // p in s, starting from i
        char str1[] = "abCdefC";
       
        int i = strnfrst(str1, "C", 0);
        int j = strnfrst(str1, "C", i+1);
        printf("locations %d %d in %s\n",i,j,str1);

        char buf[32];

        /* get the characters between the Cs */
        printf("'%s' lies between chars %d and %d\n",strrng (buf,str1, i+1,j),i+1,j);

        char str2[] = "<b>bold</b>   <i>italic</i>   <u>underline</u>   <s>strikethrough</s>";

        printf("text range 3 thro' 8 = '%s'\n", strrng (buf, str2, 3, 8));

        /* get the next tag in the string */
        i= getTag (str2, buf, 3);
        printf("next tag %s at pos %d\n", buf, i);
       
        i=getTag (str2, buf, i+1);
        printf("next tag %s at pos %d\n", buf, i);

        /* parse the whole string */
        // get the position of the first tag toggle
        i = getTag (str2, buf, 0);
        printf("%d %s\n",i,buf);
       
        // parse the remainder of the string
        while ( i < strlen(str2) ) {
            i=getTag (str2, buf, i+1);
            printf("%d %s\n",i,buf);
           
        }

        return 0;

}


Comments

Popular posts from this blog

gnocl::calendar

Given this module some attention today. Added some of the more package wide options to the module and created customised handler for setting the month. (For some odd reason months are are counted 0-11 whereas days are 1-31.) There's still a little more to do to this one including the addition of code to store diary details. Here's the working test script to show the range of options at work. The percentage substitution string item %e explores something that I've been toying with, the name of the signal/event that initiated the call. Ok, a script can keep its own internal trace but who knows, it might prove useful. #--------------- # calendarTest.tcl #--------------- # Author:   William J Giddings # Date:     07/05/09 #--------------- #!/bin/sh # the next line restarts using tclsh \ exec tclsh "$0" "$@" #--------------- package require Gnocl set cal [gnocl::calendar] $cal configure -day 8 -month 7 -year 1956 $cal configure -rowHeight 1 -colWidth 1 $ca...

Creating icons from UTF-8 Characters.

Linux distros have heaps of pre-installed icons ready for use. I recently needed to create a toolbar menu which needed to access a set of unique icons which contained single characters. It was, in fact, a pull down menu for the insertion of 'special characters'. The Gtk+ api has complete functionality for creating icons from pixbufs and Gnocl providing convenient access.  Here's a screenshot and the script.     # !/bin/sh # the next line restarts using tclsh \ exec tclsh "$0" "$@" package require Gnocl if { [namespace exists jmls] == 0} {     namespace eval jmls {} } set ::app(specialCharacters)  [list Section ¶ Paragraph § Separator • Left-Arrow ← Up-Arrow ↑ Right-Arrow → Down-Arrow ↓ Root √] proc jmls::charIcon {name ch} {          set pb1 [gnocl::pixBuf new -width 40 -height 40]     $pb1 text \         -position [list 15 30] \         -font [list...

Getting Widget Style Properties

Until the move over to Gtk4, Gnocl is still built against the Gtk 2.21 libraries. One of the inconveniences of Gtk is getting and setting widget style settings which are considered to be set globally by the desktop style settings and not for the programmer to tinker around with. Needless to say, there are times when different defaults are preferred, largely to draw the users attention to 'something a bit different'. The function gtk_widget_modify_font  is a convenience function to set the widget basefont as shown in this snippet from the button.c module,  if ( options[baseFontIdx].status == GNOCL_STATUS_CHANGED ) { GtkWidget *label; label = gnoclFindChild ( GTK_WIDGET ( para->button ), GTK_TYPE_LABEL ); PangoFontDescription *font_desc = pango_font_description_from_string ( Tcl_GetString ( options[baseFontIdx].val.obj ) ); gtk_widget_modify_font ( GTK_WIDGET ( label ), font_desc ); pango_font_description_free ( font_desc ); } Unfortunately, there's no d...