deploy in win

2007-03-12 Thread Hariyanto
I looking for tutorial about deployment application with nsis. I try to include all dll in /gtk/bin to $INSTDIR but I get error. thx Hariyanto ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

Re: change color gtkbutton on winxp

2007-02-13 Thread Hariyanto
to search with google "gtk theme" but still can't get. thx Hariyanto ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

change color gtkbutton on winxp

2007-02-13 Thread Hariyanto
Is there tutorial or url about change color gtkbutton in winxp? I try change color on gtkbutton with gtk_widget_modify_bg and it can work only in linux. thx Hariyanto ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo

how create model use variable

2007-02-09 Thread Hariyanto
ay_index (data_tw, ColPrefs, i).col1, 2, g_array_index (data_tw, ColPrefs, i).col2, -1); } } if (ncol == 3) . . . return GTK_TREE_MODEL (model); } Is there another way to make it more simple

How to get alignment in treeview

2007-01-15 Thread Hariyanto
_alignment(), but i can only alignment from header. thx. Hariyanto. ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

problem on treeview

2006-09-19 Thread Hariyanto
code on gtk-demo switch (column) { case COLUMN_d: { g_array_index (data_tw, JPrefs, i).col4 = g_strdup (new_text); g_print("Str d is %s \n", g_strdup (new_text)); <<< Still Empty ???. } } thx. Hariyanto ___

GtkCalendar and name of week

2006-04-11 Thread Hariyanto
How I can get name of week from GtkCalendar? thx Hariyanto ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

gtkrenderercombo and signal

2006-02-20 Thread Hariyanto
I want to display new window when button in gtkrenderercombo pressed. What signal I must use?. thx. Hariyanto ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

Re: gtk-demo and editable_cells

2006-02-20 Thread Hariyanto
"editable", TRUE, NULL); thx On Fri, 17 Feb 2006 06:40:26 +0700 Hariyanto <[EMAIL PROTECTED]> wrote: > Can you give me simple code or url to using that GtkComboBox (custom) in > gtktreeview. Because i am newbie. > > thx. > >

Re: gtk-demo and editable_cells

2006-02-16 Thread Hariyanto
Can you give me simple code or url to using that GtkComboBox (custom) in gtktreeview. Because i am newbie. thx. On Mon, 13 Feb 2006 19:16:50 -0500 Matthias Clasen <[EMAIL PROTECTED]> wrote: > On 2/13/06, Hariyanto <[EMAIL PROTECTED]> wrote: > > My system is ubuntu 5.10

gtk-demo and editable_cells

2006-02-12 Thread Hariyanto
My system is ubuntu 5.10 with gtk 2.8.6. I try gtk-demo - Editable Cell. I get gtk_cell_renderer_combo picture on attachment. How I can set gtk_cell_renderer_combo like in http://people.redhat.com/mclasen/GUADEC05/notes.pdf -> new cell renderers. thx <> _

gtkcellrenderercombo

2006-02-07 Thread Hariyanto
I try gtkcellrenderercombo with FC4 and gtk2.6.7-4 but I can't see button from combo. I have tried with resizeable column and change width column but can't see also. Help me please thx Hariyanto #include #include #include static GtkWidget *window = NULL; typedef struc

gtkcellrenderercombo

2006-02-02 Thread Hariyanto
I want to learn about gtkcellrenderercombo. Where I get some tutorial about gtkcellrenderercombo. I look for in gtk-demo but i can't find it, thx hariyanto ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

Compile under win

2005-04-30 Thread Hariyanto
I have make program with glade gtk with mysql and run well under linux. And I want to run and compile under window. 1. Can I compile with mingw? 2. What package on list below, I must download. thx in advance ** Current ** *** GCC *** 1. diff gcc-3.4.2-20040916-1-src.diff.gz 102 kb Sep 22, 2004

how to find mr. matthew stucky.

2005-03-16 Thread Hariyanto
nload. And the book not came with cdrom source code. Help me, where I can download the complete source code or where I can contact Mr. Matthew Stucky. Last email Mr. Matthew Stucky is : [EMAIL PROTECTED] Thanks in advance. Hariyanto ___ gtk-list mailin

Re: dateformat

2005-03-09 Thread Hariyanto
There is still problem because sometime I don't get date with same lenght string. I get 7/8/2005 or 12/12/2005 or 7/12/2005. I get this date with this code : void on_btn_get_date_clicked(GtkButton *button, gpointer user_data)

dateformat

2005-03-08 Thread Hariyanto
Is there dateformat function in gtk? I have date dd/mm/ and I want to change to /yy/dd Mysql format. thx Hariyanto ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

format number on gtklabel

2005-02-15 Thread Hariyanto
How I want to send string with number like 3456789 to GtkLabel with the output 3.456.789,00 I try this code : str_total = g_strdup_printf("%f", dbl_total); str_total_formatted = g_strndup(str_total, strcspn(str_total, ".") +3); and the output : 3456789.00 How to make the output : 3.456.789,00