Chemical Structures 2.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Chemical Structures 2.1 (Default branch)
# 1  
Old 02-05-2008
Chemical Structures 2.1 (Default branch)

Image The Chemical Structures project aims to provide a complete set of 3D molecular structures in CML format. As CML format permits structural data and many properties to be included, each file also contains additional information, like molecular weight, boiling point, melting point, or InChI code. Data can be explored with a CML-aware software, like Jmol, or by using a Web browser. License: BSD License (revised) Changes:
The HTML pages have a new style and contain MicroFormat data. Many French translations have been added and Spanish translations are also available. New structures (like carbohydrates) have been added. The project now includes 559 structures.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Linux

about system structures

hello can any1 plz tell me about the system defined structures (like sysinfo) which wil give system and n/w charecteristics (ex: freeram in sysinfo). (1 Reply)
Discussion started by: jeenat
1 Replies

2. Programming

Programming using Structures

Hi All, I was given a format of a file, and was asked to write a program which displays the data contained in the file in that purticular format. Its all so confusing. Please find the example of the format as well the code I have written in the attachment. I hope any one of u guyz can... (0 Replies)
Discussion started by: jazz
0 Replies

3. Programming

pointer to structures

Dear friends I have a bit basic doubts in pointers and the structures inter relationships. the first one. static struct apvt { int dead; int pending; int abouttograb; }*agents=NULL; what agents pointer is... (1 Reply)
Discussion started by: tech_voip
1 Replies
Login or Register to Ask a Question
XGetTextProperty()														XGetTextProperty()

Name
  XGetTextProperty - read one of a window's text properties.

Synopsis
  Status XGetTextProperty(display, w, text_prop_return, property)
	Display *display;
	Window w;
	XTextProperty *text_prop_return;
	Atom property;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  w	    Specifies the window.

  text_prop_return
	    Returns the XTextProperty structure.

  property  Specifies the property name.

Returns
  Zero on failure, non-zero on success.

Availability
  Release 4 and later.

Description
  XGetTextProperty() reads the specified property from the window and stores the data in the returned XTextProperty structure.	It stores the
  data in the value field, the type of the data in the encoding field, the format of the data in the format field, and the number of items of
  data	in  the  nitems  field.  An extra byte containing null (which is not included in the nitems number) is stored at the end of the value
  field of text_prop_return.  The particular interpretation of the property's encoding and data as ``text'' is left to the  calling  applica-
  tion.  If the specified property does not exist on the window, XGetTextProperty() sets the value field to NULL, the encoding field to None,
  the format field to zero, and the nitems field to zero.

  If it was able to set these files in the XTextProperty structure, XGetTextProperty() returns a non-zero status;  otherwise,  it  returns  a
  zero status.

  For more information, see Volume One, Chapter 12, Interclient Communication.

Structures
     typedef struct {
	 unsigned char *value;	      /* same as Property routines */
	 Atom encoding; 	      /* prop type */
	 int format;		      /* prop data format: 8, 16, or 32 */
	 unsigned long nitems;	      /* number of data items in value */
     } XTextProperty;

Errors
  BadAtom
  BadWindow

See Also
  XFreeStringList(), XSetTextProperty(), XStringListToTextProperty(), XTextPropertytoStringList.

Xlib - Window Manager Hints													XGetTextProperty()