[comp.windows.x] OLIT/icon name ???

fm@neptune.iex.com (Mohammad Faroog) (03/16/91)

My application has its own icon. 

	Pixmap icon_pixmap;

	w_toplevel = OlInitialize(
		NULL, 				/* app name - filled by Xt */
		"Browser", 		/* app class */
		NULL,				/* option list */
		0,					/* # of options */
		&argc, 				/* addr of main argc */
		argv				/* main argv */
	);

	icon_pixmap = XCreateBitmapFromData(XtDisplay(w_toplevel),
					RootWindowOfScreen(XtScreen(w_toplevel)),
					brws_bitmap_bits,
					brws_bitmap_width,brws_bitmap_height);
	XtVaSetValues(w_toplevel,XtNiconPixmap,icon_pixmap,NULL);
	
When I iconify this application olwm attaches application name at the bottom
of the icon. Is there anyway to tell olwm, don't attach name to the icon.
I just want my icon to be displayed as it is.

Please send me direct mail. Thanks.

fm@iex.com

Mohammad.