Does Win CE support ARMV4T CPU family????

2004-03-04 Thread bheemesh

hello all,
i know i am mailing a bit out of context to this mailing list.
But pls some on efrom the windows platform help me in this.
Even a suitable link or URL is very helpfull.

the CPU ARMV4T is supposed to be supported by windowsCE.net4.2 - according to 
the documentation on the microsoft website.but actually it does not support 
ARMV4T - this CPU type is not at all available in the standard list of CPU's 
shown during installation.whats wrong?was the win ce.net4.0 version 
supporting this?thanks in advance.

bheemesh
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: newbie make/install problem

2004-03-04 Thread busmanus
Erik Ostermueller wrote:
Hello, all.

I am brand-spanking new to Linux, so take it easy on
me.  I couldn't find an GTK RPM for Mandrake 9.2, so
here I am building gtk 2.3.4.
Gtk is a basic component of most Linux systems, moreover
the version you are trying to build is for developers only,
so you should rather look in the default package manager of
you system than risk messing it all up.
I understand, 9.2 is the latest or near to latest version of
Mandrake, so its install CD-s must contain the last stable
version of gtk.
If your problem is that you can't link packages against gtk,
then you need to add the gtk package ending in -dev or -devel
as well (and its dependencies).
Regards

busmanus


Miert fizetsz az internetert? Korlatlan, ingyenes internet hozzaferes a FreeStarttol.
Probald ki most! http://www.freestart.hu
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Scroll to the end of a TextView

2004-03-04 Thread Felipe Weckx
Hi everyone,

Here's the deal: the program receives a string and show it on a TextView 
, that's OK, but I have to scroll the view to end of the text, I tried 
using gtk_text_buffer_get_end_iter and gtk_text_view_scroll_to_iter, but 
 it only scrolls to beginning of the text I've just inserted, so if it 
has more than one line, it doesn't scrolls to the end.

Does anyone knows how to scroll to the end of the text?

--

[]'s

Felipe Weckx
___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: How to set background/foreground on button, entry, or label?

2004-03-04 Thread Tony Denault
On Thu, 4 Mar 2004, Owen Taylor wrote:

 On Wed, 2004-03-03 at 20:39, Tony Denault wrote:
  Hi All,
 
  After doing some research and hacking, I wrote some code to set the
  foreground / backgroud color of a button, entry,  label. This is still a
  confusing part of GTK 2.x., an internet search on this question resulted
  in lots of partial answers, vague description on how it should work,
  but no clear answer that work across all widgets.

 Have you seen:

  http://ometer.com/gtk-colors.html

Yes, it was one of the references I came acoss while researching this
subject. It indicated using gtk_widget_modify_fg/bg(), but I only
got the fg to change for buttonlabel. Could not get the entry text, or
background colors for label, entry, button to change.

As I stated before, if there is a better technique for gtk 2.0, please
modify the code and post.

Thanks,

Tony

/---\
| Tony Denault | Email: [EMAIL PROTECTED] |
| Institute for Astronomy  |  Phone: (808) 932-2378 |
| 640 North Aohoku Place   |Fax: (808) 933-0737 |
| Hilo, Hawaii 96720   ||
\---/


___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Scroll to the end of a TextView

2004-03-04 Thread Terje Eggestad
It wasn't intuitive, but scroll to mark doe the trick, the following
func append to a textview (a log actually) and scrolls:

void scacpg_append_runlog(char * msg, ...)
{
   GtkTextView * eview;
   GtkTextBuffer * ebuf;
   GtkTextIter start, end;
   va_list ap;
   char * buffer = NULL;
   int l, L = 128;
   GtkTextMark* mark;

   va_start(ap, msg);

   do {
  L *= 2;
  debug(realloc of log buffer to size %d, L);
  buffer = realloc(buffer, L);
  l = vsnprintf(buffer, L, msg, ap);
  if (l  0) return;
   } while (l = L);

   eview = (GtkTextView* ) lookup_widget(dialog_run,
textview_cpg_output);
   ebuf = gtk_text_view_get_buffer (eview);

   debug (runlog: %s(%d), buffer, l);
   gtk_text_buffer_get_bounds (ebuf, start, end);
   gtk_text_buffer_insert  (ebuf, end, buffer, l);
   gtk_text_buffer_get_bounds (ebuf, start, end);


   mark = gtk_text_buffer_create_mark(ebuf, NULL, end, 1);
   gtk_text_view_scroll_to_mark(eview, mark, 0.0, 0, 0.0, 1.0);
   gtk_text_buffer_delete_mark (ebuf, mark);


   free(buffer);
   va_end(ap);

};


On Thu, 2004-03-04 at 20:45, Felipe Weckx wrote:
 Hi everyone,
 
 Here's the deal: the program receives a string and show it on a TextView 
 , that's OK, but I have to scroll the view to end of the text, I tried 
 using gtk_text_buffer_get_end_iter and gtk_text_view_scroll_to_iter, but 
   it only scrolls to beginning of the text I've just inserted, so if it 
 has more than one line, it doesn't scrolls to the end.
 
 Does anyone knows how to scroll to the end of the text?
-- 
Terje Eggestad [EMAIL PROTECTED]

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


Re: Scroll to the end of a TextView

2004-03-04 Thread Matthias Clasen
This is covered in the GTK+ documentation:

http://developer.gnome.org/doc/API/2.0/gtk/gtk-question-index.html#id2517993

-- 
+++ NEU bei GMX und erstmalig in Deutschland: TÜV-geprüfter Virenschutz +++
100% Virenerkennung nach Wildlist. Infos: http://www.gmx.net/virenschutz

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list


GTKCalendar

2004-03-04 Thread Andres Gomez Garcia
Hi!

I was looking for a widget like GtkCalendar but I need to mark day in
various different ways and, if possible, to show a whole year, not only
a month.

Is there anything like that?
-- 
Andrés Gómez García
Ingeniero en Informática
Telf:  +34 981 91 39 91
Fax:   +34 981 91 39 49
mailto:[EMAIL PROTECTED]
IGALIA, S.L. http://www.igalia.com

___
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list