| Thanks for the info, but it did not seem to make any difference.
Is there anyway of finding out the Dwt* whatever names which have been
used by an application. I have tried using xwininfo(1x) but that
didn't seem to help.
The list in /usr/include/X11/DwtPrivate.h may be usefull but
unfortunately I dont have enough disk to install the developement
system, which is required to view the file you mentioned.
Regards,
Walter
|
| All of the following work for me on 4.0:
*DwtScroll*background: green
DXterm*DwtScroll.background: red
DXterm*DwtScroll.background: light blue
As for finding out what classes an application uses, if it is a DECwindows app,
it uses the class names in DwtPrivate.h. If is a motif or athena app, it will
use class names out of the corresponding header file in that toolkit.
Here are the class names defined in DwtPrivate.h:
#define DwtSClassDwtCommon "DwtCommon"
#define DwtSClassLabel "DwtLabel"
#define DwtSClassSeparator "DwtSeparator"
#define DwtSClassPushbutton "DwtPushbutton"
#define DwtSClassTogglebutton "DwtToggle"
#define DialogClassName "DwtDialog"
#define DwtSClassDialog DialogClassName /* for upward compatibility */
#define DwtSClassMenu "DwtMenu"
#define DwtSClassPulldown "DwtPulldown"
#define DwtSClassScroll "DwtScroll"
#define DwtSClassMainWindow "DwtMainWindow"
#define DwtSClassMessage "DwtMessage"
#define DwtSClassHiddenShell "DwtHiddenShell"
#define DwtSClassWindow "DwtWindow"
#define DwtSClassScrollWindow "DwtScrollWindow"
#define DwtSClassScale "DwtScale"
#define DwtSClassListBox "DwtListBox"
#define DwtSClassSelection "DwtSelection"
#define DwtSClassFileSelection "DwtFileSelection"
#define DwtSClassCommand "DwtCommand"
#define DwtSClassHelp "DwtHelp"
#define DwtSClassHelpShell "DwtHelpShell"
#define DwtSClassAttachedDialog "DwtAttachedDialogBox"
#define DwtSClassTextWidget "DwtText"
#define DwtSClassColorMix "DwtColorMix"
Jeff
|