X윈도우의 API함수들 제대로 작동 하기는 하는가요.. ?
XListProperties 함수가 제대로 작동 안 하는데... 어떡해야 할지 정말 난 감하군요..
XMMS 처럼 윈도우에 테두리 가 없는 깨끗한 윈도우를 하나 띄우려고 했습니다..
그래서 gtk소스 분석 한 결과 ..
XChangeProperty함수를 호출 해서 윈도우 프로퍼티를 변경한다는 것을 알아내고 윈도우 프로 퍼티를 바꾸기 위해서는 Atom을 알아 내야 한다는 것을 알아내었고 그것은 XListProperties함수로 리스트를 구할 수 있다는 것을 알았습니다..
근데 리스트를 구해보니 리스트의 크기가 0이 나와 버리는 군요.. 특별히 에러가 나는 것도 아니고 정말 어이가 없습니다..
왜이런지 아시는 분계시면 좀 알려 주세요....
정 안되면 GTK 라이브러리를 디버깅 정보를 주고 정적 라이브러리를 만드는 방법좀 갈켜주세요. 함수들 따라 가서 값을 알아 낼수 있도록요.. GTK컴파일은 컴파일 옵션이 이상해서 어떻게 해야 될지 모르겠습니다.. makefile을 조금 수정해서 컴파일 하면 될지도 모르겠네요...
밑에는 소스 입니다..
#include <X11/Xlib.h>
#include <stdio.h>
int main( int argc,
char *argv[] )
{Display *display ;
display = XOpenDisplay(NULL);
if(display == NULL) {
fprintf(stderr,"Cannot connect to Xserver %s\n","NULL");
// exit(-1);}
Window window = XCreateWindow(display,XDefaultRootWindow(display),
0 , 0, 100,100,
0,
BlackPixel(display,0),WhitePixel(display,0));int atomCount =0 ;//= 100;
Atom *atoms = NULL;// new Atom[100] ;
atoms = XListProperties(display,window,&atomCount) ;//XChangeProperty (display, window,
// atom, atom, 32, PropModeReplace,
// (guchar *)hints, sizeof (Hints)/sizeof (long));fprintf(stderr, "Property : %d ", atomCount);
for(int i = 0; i <atomCount ; ++i) {
char * name = XGetAtomName(display,atoms[i]);fprintf(stderr, name);
delete name;}
XFree(atoms);
XMapWindow(display, window);
XFlush(display);getchar();
XDestroyWindow(display,window);XCloseDisplay(display);
return 0;
}
댓글 달기