XmRemoveProtocols(library call) XmRemoveProtocols(library call)
NAME
XmRemoveProtocols -- A VendorShell function that removes the protocols from the protocol manager and deallocates the internal tables
SYNOPSIS
#include <Xm/Xm.h>
#include <Xm/Protocols.h>
void XmRemoveProtocols(
Widget shell,
Atom property,
Atom * protocols,
Cardinal num_protocols);
DESCRIPTION
XmRemoveProtocols removes the protocols from the protocol manager and deallocates the internal tables. If any of the protocols are active,
it will update the handlers and update the property if shell is realized.
XmRemoveWMProtocols is a convenience interface. It calls XmRemoveProtocols with the property value set to the atom returned by interning
WM_PROTOCOLS.
shell Specifies the widget with which the protocol property is associated
property Specifies the protocol property
protocols Specifies the protocol atoms
num_protocols
Specifies the number of elements in protocols
For a complete definition of VendorShell and its associated resources, see VendorShell(3).
RELATED VendorShell(3), XmAddProtocols(3), XmInternAtom(3), and XmRemoveWMProtocols(3).
XmRemoveProtocols(library call)
Check Out this Related Man Page
XmActivateProtocol(library call) XmActivateProtocol(library call)
NAME
XmActivateProtocol -- A VendorShell function that activates a protocol
SYNOPSIS
#include <Xm/Protocols.h>
void XmActivateProtocol(
Widget shell,
Atom property,
Atom protocol);
DESCRIPTION
XmActivateProtocol activates a protocol. It updates the handlers and the property if the shell is realized. It is sometimes useful to allow
a protocol's state information (callback lists, and so on) to persist, even though the client may choose to temporarily resign from the
interaction. This is supported by allowing a protocol to be in one of two states: active or inactive. If the protocol is active and the
shell is realized, the property contains the protocol Atom. If the protocol is inactive, the Atom is not present in the property.
XmActivateWMProtocol is a convenience interface. It calls XmActivateProtocol with the property value set to the atom returned by interning
WM_PROTOCOLS.
shell Specifies the widget with which the protocol property is associated
property Specifies the protocol property
protocol Specifies the protocol Atom
For a complete definition of VendorShell and its associated resources, see VendorShell(3).
RELATED VendorShell(3), XmActivateWMProtocol(3), XmRemoveProtocols(3) and XmInternAtom(3).
XmActivateProtocol(library call)
Hi
I need to write a shell script that will access tables available on webpages and update a table on my webpage on a periodic basis. It will access, say for example a website that periodically update a table with certain quantities and update my table accordingly.it should have the flexibility... (0 Replies)
Hi,
I have a property file called "inspector.properties".
In this property file stands the following:
inspect=ON
Now I want to have a shell script that when you run it, changes the ON in OFF in this property file.
Is this possible with sed?
Can anybody help me with this?
Tnx very much. (5 Replies)
hi all
i have a file of the format
Time(starting from 0 in asc order) bytes service flags protocols
e.g.
0, 0, 0, 56, 56
1, 524, 3, 6, 75
1, 624, 0, 43, 53
2, 72, 0, 43, 80
3, ... (1 Reply)
Hi!
i need a script that can read a property file.
i.e., A script to read a "property" from property file.
Read the property value and
based on value of property, decide whether to start the some dataload activity or not.
Its urngent. Can anyone help me out???:( (7 Replies)
I have to do a read operation for a field in property file, which looks like follows:
123|xyz|datetime|count
'|' is delimiter.
Finally I managed to read the contents of property file using statement like
cut -d"|" -f1 $PROPERTIES_FILE | tr '\n' ' ' <-- Reading first column
But now I... (2 Replies)
I have a script which is reading value from property file and doing replacement in source location which contains multiple files.
property file has values
abc=xyz; yux=1;version=3.0;
bcd=123;apple==mango
when my script does search and reads value from property file.
its replacing value... (1 Reply)
Hello all,
planning to secure AIX sever by disabling insecure protocols/cipher suites; got the below requirements from secuirty team.
1.configure the server to disable support for DES and IDEA cipher suites
2.disable insecure TLS/SSL protocol support
Configure the server to... (4 Replies)