GTK drag n drop 의 gtk_selection_data_set() 관련해서..
최근 GTK 가지고 Drag N Drop 몇가지 넣을일이 있어서 넣었는데
가끔 죽는일이 생겨서 문의 드립니다 --a
일반 스트링을 gtk_selection_data_set()을 이용하여 넣을때는
별 문제가 없었는데 구조체로 된 데이타를 넣을때는 간혹 죽는것 같습니다.
포인터로 구조체 선언해서 넣고 있는데 중간중간의 0x00 로 된 값들이 많아서 이것때문에 문제가 생길수 있나요?
그리고 하나더 문의가
void gtk_selection_data_set (GtkSelectionData *selection_data,
GdkAtom type,
gint format,
const guchar *data,
gint length);
Stores new data into a GtkSelectionData object. Should only be called from a selection handler callback. Zero-terminates the stored data.
selection_data : a pointer to a GtkSelectionData structure.
type : the type of selection data
format : format (number of bits in a unit)
data : pointer to the data (will be copied)
length : length of the data
라고 나와있는데 여기서 세번째 argument 인 format 을 정확히 모르겠네요
STRING 이면 8 로 넣어서 하면 될거 같은데 구조체의 경우는 어떤 값을 넣어줘야 할지 --a
아시는분 있으면 좀 도와주시면 감사하겠습니다.
댓글 달기