Re: queseion



On Mon, 16 Aug 2004 21:14:08 -0700 (PDT), amin saberian
<amin_gtk yahoo com> wrote:
> 1-How i can remove min,max, close button bar from the
> form(windows).
> I used of #include <gtk/gtk.h> in linux
> 
> 2-How i can remove title bar from the form(windows)
> I used of #include <gtk/gtk.h> in linux

You need gtk_window_set_decorated(). Is this for a splash screen? I use:

        gtk_window_set_type_hint( GTK_WINDOW( splash ),
                GDK_WINDOW_TYPE_HINT_SPLASHSCREEN );
        gtk_window_set_position( GTK_WINDOW( splash ),
                GTK_WIN_POS_CENTER_ALWAYS );
        gtk_window_set_resizable( GTK_WINDOW( splash ), FALSE );
        gtk_window_set_decorated( GTK_WINDOW( splash ), FALSE );

John



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