Re: Combining GTK+ and C++

2006-10-16 Thread Amitesh Singh
this Soft from scratch :P as now i believe i can write better code ;) Best Regards Amitesh Singh http://www.amitesh.info On 10/13/06, Nickolai Dobrynin <[EMAIL PROTECTED]> wrote: > Brian, > > Certainly, I am well aware of gtkmm. I've actually done serious work in it > pre

Re: Removing text from gtkcombobox

2006-04-13 Thread Amitesh Singh
Can we only hide the Small arrow button in GtkComboBoxEntry?As we can hide the GtkEntry's widget in GtkComboEntry .. GTK_ENTRY(GTK_BIN(combo_box)->child) . On 4/14/06, Sandy K <[EMAIL PROTECTED]> wrote: > > Hello, >In combobox, is it possible to remove all the text in it? I am > using gt

Adding popdown menu list in GtkEntry

2006-04-11 Thread Amitesh Singh
Hi I want to show pop down menu list on mouse clicking on the GtkEntry Widget's area.I know it can be done using GtkComboBoxEntry .. how to do it ? ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/g

Re: Theme not affecting titlebar on windows xp... help needed

2006-03-17 Thread Amitesh Singh
esize_drag(GTK_WINDOW(data),GDK_WINDOW_EDGE_NORTH_EAST,event->button,event->x_root,event->y_root,event->time); return false; } ******* Cheers ! Amitesh Singh (AMI) Final Year, B.Tech. ISM Dhanbad India On 3/18/06, Michael L Torrie <[EMAIL PROTECTED]> w

How to make Own Decorated window

2006-03-11 Thread Amitesh Singh
Hi i have able to write a new decorated window .. its only minimize till now ... but one problem is that how to make it move by sticking it to Cursor .. its not happening in this case :( #include GtkWidget * make_window (void) { GtkWidget *window; GdkColor color; gdk_color_parse ("#a1c0f5",

Re: Changing font size and color

2006-02-28 Thread Amitesh Singh
On 2/24/06, Sandeep KS <[EMAIL PROTECTED]> wrote: > > Hi everyone, > I want to increase the font size and also change the font color in > GTK. So can anyone please tell me how to do it? Hi sandeep To modify font size PangoFontDescription *font; font=pango_font_description_from_string(

Re: How To Draw a window without an option to Maximize it

2006-02-10 Thread Amitesh Singh
There was error in the code ; it should be .. + static unsigned int j= MAXIMIZE; + j=~j; but still its not working !! :-p I want to disable MAXIMIZE option of Window via gdk_window_set_decorations() ,, although gtk_window_set_resizable (GTK_WINDOW(window),FALSE); does that ! Thanks Amites

Re: How To Draw a window without an option to Maximize it

2006-02-10 Thread Amitesh Singh
2, GDK_DECOR_TITLE = 1 << 3, GDK_DECOR_MENU= 1 << 4, GDK_DECOR_MINIMIZE= 1 << 5, GDK_DECOR_MAXIMIZE= 1 << 6 } GdkWMDecoration; On 2/11/06, Amitesh Singh <[EMAIL PROTECTED]> wrote: > Hi > How to Draw a Window without an option to Maxim

How To Draw a window without an option to Maximize it

2006-02-10 Thread Amitesh Singh
Hi How to Draw a Window without an option to Maximize it ? Regards ! Amitesh ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list