Developers

Syndicate content

Problem with UxPopUpInterface

Hi,

I am trying to display a working dialog box while doing some processing.The scenario is when processing starts dialogbox will appear and disappear when processing gets completed.I am calling UxPopUpInterface when processing starts but dialogbox is appearing only when processing gets finished.
Kindly help.

Thanks

Problem with UxPopUpInterface

Hi,

I am trying to display a working dialog box while doing some processing.The scenario is when processing starts dialogbox will appear and disappear when processing gets completed.I am calling UxPopUpInterface when processing starts but dialogbox is appearing only when processing gets finished.
Kindly help.

Thanks

cvs-access to openmotif 2.3.x source

Hi,

the cvs-link on the left of the homepage points to the instruction to access the 2.2.3 Development branch.

Is it possible to access openmotif 2.3 via cvs??

Bernd

Unexpeted behaviour of togglebutton

Hi,
I am using togglebuttons in my application ,I have put two togglebuttons in rowcolumn horizontally. When I click on first toggle button a file-selection box is launched. After selecting a file when I move mouse over the checked togglebutton(first one), this togglebutton changes its state repeatedly(i.e it becomes unchecked when mouse moves over this button and becomes checked when mouse is moved away from it). The other button remains in unchecked state.
Kindly help.

Unexpeted behaviour of togglebutton

Hi,
I am using togglebuttons in my application ,I have put two togglebuttons in rowcolumn horizontally. When I click on first toggle button a file-selection box is launched. After selecting a file when I move mouse over the checked togglebutton(first one), this togglebutton changes its state repeatedly(i.e it becomes unchecked when mouse moves over this button and becomes checked when mouse is moved away from it). The other button remains in unchecked state.
Kindly help.

XtVaCreateManagedWidget hanging system

Is there any outstanding reason XtVaCreateManagedWidget might hang the entire system while it runs?

I have a program that slows the entire system down to unusability about 1/5 of the times it is run. Of that 1/5, about 1/3 of the time everything eventually (between 30 seconds and a few minutes) picks up again and it is usable, 1/3 the program/gnome-terminal quits or the system logs out, and 1/3 I have to manually restart the (virtual) machine.

XmIconButton in a menu, why not?

If I use XmIconButton in a menu, I get the following warning

Name fileM
Class XmRowColumn
Attempt to add wrong child type to a menu (that is, XmRowColumn) widget

Shouldn't XmIconButton be a subclass of XmPushButton and be allowed as a child of RowColumn?
It works, but I hate having my programs spitting out warnings of any kind.
I am using OpenMotif 2.2

Question about display jpg or gif as a icon in a widget?

I build a mainwindow,and want to display a .jpg or .gif as an icon in the left-top corner,I write code as follows:
main(....)
{
Pixmap icon1;
.......
icon1=XmGetPixmap(XtScreen(toplevel,"/home/icon1.gif",XmUNSPECIFIED_PIXEL,XmUNSPECIFIED_PIXEL);
XtVaSetValues(toplevel,XmNiconPixmap,icon1,NULL);
.........
}

but the picture does not display?What should do ?
Thank you!

Select tab in an XmTabStack from the code?

I want to select a specific tab in an XmTabStack from my code. How can this be accomplished. I cannot find out how to do this....

I also want to read out which tab is selected:
Is it possible to read out which tab is selected on an XmTabStack from the code using XtVaGetValues(), or are there any other methods that can be used for this?

PAssing Image data and display in Motif

Hi All,
I am just begiining to code in X/Motif and am terribly stuck!

I am new here and desperately looking for some help. I am creating a GUI in X which will display an image sequence. I used Motif and created all the Widgets I needed and used DrawingAreaWidget where my images should be displayed.