コード例 #1
0
ファイル: Xlib.cs プロジェクト: jjenki11/blaze-chem-rendering
	extern public static XStatus XStringListToTextProperty
			(IntPtr[] argv, int argc, ref XTextProperty textprop);
コード例 #2
0
ファイル: Xlib.cs プロジェクト: jjenki11/blaze-chem-rendering
	extern public static void XSetTextProperty
			(IntPtr display, XWindow w, ref XTextProperty textProp,
			 XAtom property);
コード例 #3
0
	private void SetTextProperty(IntPtr display, XWindow handle,
								 String property, String[] value)
			{
				XTextProperty textprop = new XTextProperty();
				if(textprop.SetText(value))
				{
					Xlib.XSetTextProperty
						(display, handle, ref textprop,
						 Xlib.XInternAtom(display, property, XBool.False));
					textprop.Free();
				}
			}