Re: Glade & new GTK+ 2.5.x features



Hmm
> >  <widget class="GtkLabel" id="label1">
> >     <property name="label" markup="&lt;b&gt;">label1</property>
> >  </widget>

This looks really ugly to me - storing what is essentially an XML tag as
content!

Why not

<widget class="GtkLabel" id="label1">
   <property name="label">label1</property>
   <markup>
	<b> 
	.. [etc.]
   </markup>
</widget>

i.e. any tag could be places in the <markup/> element.

-Bill




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]