{"id":79,"date":"2014-01-30T04:49:45","date_gmt":"2014-01-30T04:49:45","guid":{"rendered":""},"modified":"2014-01-30T04:49:45","modified_gmt":"2014-01-30T04:49:45","slug":"","status":"publish","type":"post","link":"http:\/\/weizn.net\/?p=79","title":{"rendered":"[\u8f6c]GTK+\u5b66\u4e60\u7b14\u8bb0\uff0d\u6811\u578b\u89c6\u56fe\u4e0e\u6a21\u578b(GtkTreeView)"},"content":{"rendered":"<p>\n\t<span style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;display:inline !important;float:none;\"><\/span>\n<\/p>\n<pre class=\"brush:cpp; toolbar: true; auto-links: true;\">GtkWidget *mytree = NULL;\r\nGtkTreeStore *lefttree = NULL; <\/pre>\n<p>\n\t\n<\/p>\n<p>\n\t\u6811\u578b\u6a21\u578b\u7684\u5efa\u7acb\uff1a\n<\/p>\n<p>\n\t\n<\/p>\n<p><span style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;display:inline !important;float:none;\"><\/span> <\/p>\n<pre class=\"brush:cpp; toolbar: true; auto-links: true;\">void setupTreeStore()\r\n{\r\n    lefttree = gtk_tree_store_new(1,G_TYPE_STRING);    \r\n    GtkTreeIter   iter ;\r\n    GtkTreeIter   child;\r\n    gtk_tree_store_append (lefttree, &amp;iter, NULL);\/\/\u5efa\u7acb\u4e00\u4e2a\u7a7a\u884c\r\n    gtk_tree_store_set (lefttree, &amp;iter ,0,\"root1\",-1);\/\/\u4e3a\u6b64\u884c\u8bbe\u7f6e\u503c\r\n\r\n    gtk_tree_store_append (lefttree, &amp;iter, NULL);\/\/\u5efa\u7acb\u53e6\u4e00\u4e2a\u7a7a\u884c\r\n    gtk_tree_store_set (lefttree, &amp;iter ,0,\"root2\",-1);\/\/\u4e3a\u6b64\u884c\u8bbe\u7f6e\u503c\r\n    \r\n    gtk_tree_store_append (lefttree, &amp;child, &amp;iter);\/\/\u4e3a\u4e0a\u4e00\u884c\u5efa\u7acb\u4e00\u4e2a\u5b50\u884c\r\n    gtk_tree_store_set (lefttree, &amp;child ,0,\"child1\",-1);\/\/\u4e3a\u6b64\u5b50\u884c\u8bbe\u7f6e\u503c\r\n    \r\n\r\n\/\/\u66f4\u591a\u884c\u4f9d\u6b64\u7c7b\u63a8..........\r\n\r\n}<\/pre>\n<p><br style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;\" \/><br \/>\n\u6811\u578b\u89c6\u56fe\u7684\u5efa\u7acb\u4ee5\u53ca\u4e0e\u6570\u636e\u6a21\u578b\u7684\u5173\u8054\uff1a<br style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;\" \/><\/p>\n<p>\n\t\n<\/p>\n<pre class=\"brush:cpp; toolbar: true; auto-links: true;\">\/\/\u8981\u60f3\u8ba9\u89c6\u56fe\u663e\u793a\u51fa\u6570\u636e\uff0c\u5fc5\u987b\u5efa\u7acbGtkCellRenderer\u4e0eGtkTreeViewColumn\r\nGtkCellRenderer *renderer;\r\nGtkTreeViewColumn *column;\r\n\r\n\/\/\u5173\u8054\u89c6\u56fe\u4e0e\u6a21\u578b\r\ngtk_tree_view_set_model(GTK_TREE_VIEW(mytree),GTK_TREE_MODEL(lefttree));\r\n\r\n\/\/\u5c06\u6570\u636e\u6a21\u578b\u4ea4\u7ed9\u89c6\u56fe\u7ba1\u7406\uff0c\u89c6\u56fe\u9500\u6bc1\u65f6\u6570\u636e\u4f1a\u88ab\u4e00\u540c\u9500\u6bc1\r\ng_object_unref (G_OBJECT (lefttree));\r\n\r\n\/\/\u5efa\u7acb\u4e00\u4e2aGtkCellRenderer \r\nrenderer = gtk_cell_renderer_text_new ();\r\n\r\n\/\/\u8bbe\u7f6eGtkCellRenderer\u7684\u6e32\u67d3\u65b9\u5f0f\r\ng_object_set (G_OBJECT (renderer),\r\n                 \"foreground\", \"red\",\r\n                 NULL);\r\n\r\n\/\/\u5efa\u7acb\u4e00\u4e2a\u5e26\u6807\u9898\u7684\u5217 \u5e76\u4e14\u5c06renderer\u653e\u5165\u5176\u4e2d\u4f7f\u5176\u80fd\u663e\u793a\u5185\u5bb9\r\ncolumn = gtk_tree_view_column_new_with_attributes (\"Family\", renderer,\r\n                                                                                               \"text\", 0,\r\n                                                                                               NULL);\r\n\/\/\u5c06\u5217\u8bbe\u7f6e\u4e3a\u53ef\u4ee5\u624b\u52a8\u6539\u53d8\u5927\u5c0f\r\n gtk_tree_view_column_set_resizable(column,TRUE);\r\n\r\n\/\/\u5c06\u5217\u52a0\u5165gtk_tree_view\r\ngtk_tree_view_append_column (GTK_TREE_VIEW (mytree), column);\r\n    \r\n\r\ngtk_widget_show_all(mytree);<\/pre>\n<p>\n\t\n<\/p>\n<p>\u4e0b\u9762\u4e3a\u5efa\u7acb\u597d\u7684\u6811\u578b\u89c6\u56fe\u5b9e\u73b0\u4e00\u4e2a\u529f\u80fd\uff1a<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u5f53\u7528\u6237\u9009\u4e2d\u4e00\u4e2a\u6709\u5b50\u884c\u7684\u884c\u65f6\u6309Enter\u6216Space\u952e\u5c55\u5f00\u6216\u6536\u8d77\u5b50\u884c\uff0c\u5f53\u9009\u4e2d\u4e00\u4e2a\u6ca1\u6709\u5b50\u884c\u7684\u884c\u65f6\u6309Enter\u6216Space\u952e\u540e\u53f0\u6253\u5370\u4e00\u4e9b\u4fe1\u606f\u3002<br \/>\n<span style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;display:inline !important;float:none;\"><\/span> <\/p>\n<div>\n<pre class=\"brush:cpp; toolbar: true; auto-links: true;\">\/*\r\nTreeView\u7684\"row-activated\"\u4fe1\u53f7\u4ea7\u751f\u6761\u4ef6\uff1a\r\n    \uff0d\uff0d\u5728gtk_tree_view_row_activated()\u88ab\u8c03\u7528\u65f6\r\n    \uff0d\uff0d \u4e00\u4e2a\u884c\u88ab\u53cc\u51fb\u65f6\r\n    \uff0d\uff0d \u9009\u4e2d\u4e00\u4e2a\u4e0d\u53ef\u7f16\u8f91\u7684\u884c\uff0c\u6309\u4e0bSpace, Shift+Space, Return,Enter\u952e\u65f6\r\n*\/\r\n\/\/\u6b64\u56de\u8c03\u51fd\u6570\u4e0e TreeView\u7684\"row-activated\"\u4fe1\u53f7\u76f8\u8fde\u63a5\r\nvoid on_lefttree_row_activated  (GtkTreeView       *tree_view,\r\n                                 GtkTreePath       *path,\r\n                                 GtkTreeViewColumn *column,\r\n                                 gpointer           user_data)    \r\n...{\r\n    GtkTreeIter   iter ;\r\n    \/\/\u6839\u636epath\u83b7\u5f97iter\r\n     if (gtk_tree_model_get_iter(GTK_TREE_MODEL(lefttree), &amp;iter, path))\r\n    ...{\r\n        \/\/\u5f97\u5230iter\uff0c\u5224\u65aditer\u6307\u5411\u7684\u884c\u662f\u5426\u6709\u5b50\u884c\r\n        if ( gtk_tree_model_iter_has_child (GTK_TREE_MODEL(lefttree), &amp;iter) )\r\n        ...{\r\n            \/\/\u6709\u5b50\u884c\uff0c\u5c55\u5f00\u672c\u884c\r\n            if ( gtk_tree_view_expand_row(tree_view,path,FALSE) )\r\n            ...{\r\n                \/\/\u5c55\u5f00\u672c\u884c\u6210\u529f\r\n                g_print(\"expand child \");\r\n            }\r\n            else \/\/\u672c\u884c\u5df2\u7ecf\u88ab\u5c55\u5f00\r\n            ...{\r\n                \/\/\u6536\u8d77\u672c\u884c\r\n                gtk_tree_view_collapse_row(tree_view,path);\r\n                g_print(\"collapse child \");\r\n            }\r\n        }\r\n        else\r\n        ...{\r\n            \/\/\u6ca1\u6709\u5b50\u884c\uff0c\u76f4\u63a5\u6267\u884c\u89c4\u5b9a\u7684\u529f\u80fd\r\n            g_print(\"do some \");\r\n        }\r\n    }\r\n\r\n    \r\n\r\n}\r\n<\/pre>\n<p><span style=\"color:#000000;\"><img decoding=\"async\" alt=\"\" src=\"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/19273503a9f3cb104a5f3dd3eba1706820140130045017.gif\" style=\"border:none;\" align=\"top\" \/><\/span>\n<\/div>\n<p><br style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;\" \/><br \/>\n\u83b7\u5f97treeview\u4e2d\u9009\u4e2d\u7684\u4e00\u884c\u7684GtkTreeIter\u6216path\uff1a<span style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;display:inline !important;float:none;\"><\/span><br style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;\" \/><\/p>\n<pre class=\"brush:cpp; toolbar: true; auto-links: true;\">GtkTreeSelection* select = gtk_tree_view_get_selection( tree_view );\r\ngtk_tree_selection_select_path( select, path );\r\ngtk_tree_selection_select_iter( select, &amp;iter ); <\/pre>\n<p><br style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;\" \/><br \/>\n\u8981\u60f3\u66f4\u6539GtkTreeIter\u6307\u5411\u7684\u6570\u636e\u7684\u503c\uff0c\u4f7f\u7528\uff1a<span id=\"_439_1185_Open_Text\" style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;\"><span style=\"color:#000000;\"><br \/>\n<\/span><\/span> <\/p>\n<pre class=\"brush:cpp; toolbar: true; auto-links: true;\">gtk_tree_store_set  (lefttree, &amp;iter,CHECKED_COLUMN ,data);<\/pre>\n<p><br class=\"Apple-interchange-newline\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<div style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;border:0.5pt solid windowtext;padding:4px 5.4pt;background-image:none;background-attachment:scroll;background-color:#E6E6E6;width:659.296875px;background-position:0% 50%;background-repeat:repeat repeat;\">\n<div>\n\t\t<span style=\"color:#000000;\">GtkWidget&nbsp;<\/span><span style=\"color:#000000;\">*<\/span><span style=\"color:#000000;\">mytree&nbsp;<\/span><span style=\"color:#000000;\">=<\/span><span style=\"color:#000000;\">&nbsp;NULL;<br \/>\nGtkTreeStore&nbsp;<\/span><span style=\"color:#000000;\">*<\/span><span style=\"color:#000000;\">lefttree&nbsp;<\/span><span style=\"color:#000000;\">=<\/span><span style=\"color:#000000;\">&nbsp;NULL;<\/span>\n\t<\/div>\n<\/div>\n<p><br style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;\" \/><br \/>\n<br style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;\" \/><br \/>\n<span style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;display:inline !important;float:none;\">\u6811\u578b\u6a21\u578b\u7684\u5efa\u7acb\uff1a<\/span><br style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;background-color:#FFFFFF;\" \/><\/p>\n<div style=\"color:#333333;font-family:Arial;font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:26px;orphans:auto;text-align:left;text-indent:0px;text-transform:none;white-space:normal;widows:auto;word-spacing:0px;-webkit-text-stroke-width:0px;border:0.5pt solid windowtext;padding:4px 5.4pt;background-image:none;background-attachment:scroll;background-color:#E6E6E6;width:659.296875px;background-position:0% 50%;background-repeat:repeat repeat;\">\n<div>\n\t\t<img decoding=\"async\" src=\"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/19273503a9f3cb104a5f3dd3eba1706820140130045017.gif\" alt=\"\" style=\"border:none;\" align=\"top\" \/><span style=\"color:#0000FF;\">void<\/span><span style=\"color:#000000;\">&nbsp;setupTreeStore()<br \/>\n<img decoding=\"async\" src=\"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/9bb7e68736a028d4e20864f57a6c66c920140130045017.gif\" id=\"_22_465_Open_Image\" alt=\"\" style=\"border:none;\" align=\"top\" \/><\/span><span id=\"_22_465_Open_Text\"><span style=\"color:#000000;\">{<br \/>\n<img decoding=\"async\" src=\"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/8b7d7cc10d1ea96c9b8036f2f98e63f220140130045018.gif\" alt=\"\" style=\"border:none;\" align=\"top\" \/>&nbsp;&nbsp;&nbsp; lefttree = gtk_tree_store_new(1,G_TYPE_STRING); &nbsp; &amp;nbs&#8230;<\/span><\/span>\n\t<\/div>\n<\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[327],"tags":[],"class_list":["post-79","post","type-post","status-publish","format-standard","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v16.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[\u8f6c]GTK+\u5b66\u4e60\u7b14\u8bb0\uff0d\u6811\u578b\u89c6\u56fe\u4e0e\u6a21\u578b(GtkTreeView) - Wayne&#039;s Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/weizn.net\/?p=79\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[\u8f6c]GTK+\u5b66\u4e60\u7b14\u8bb0\uff0d\u6811\u578b\u89c6\u56fe\u4e0e\u6a21\u578b(GtkTreeView) - Wayne&#039;s Blog\" \/>\n<meta property=\"og:description\" content=\"GtkWidget&nbsp;*mytree&nbsp;=&nbsp;NULL; GtkTreeStore&nbsp;*lefttree&nbsp;=&nbsp;NULL;      \u6811\u578b\u6a21\u578b\u7684\u5efa\u7acb\uff1a     void&nbsp;setupTreeStore() { &nbsp;&nbsp;&nbsp; lefttree = gtk_tree_store_new(1,G_TYPE_STRING); &nbsp; &amp;nbs...\" \/>\n<meta property=\"og:url\" content=\"http:\/\/weizn.net\/?p=79\" \/>\n<meta property=\"og:site_name\" content=\"Wayne&#039;s Blog\" \/>\n<meta property=\"article:published_time\" content=\"2014-01-30T04:49:45+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/19273503a9f3cb104a5f3dd3eba1706820140130045017.gif\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"zinan\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"http:\/\/weizn.net\/#website\",\"url\":\"http:\/\/weizn.net\/\",\"name\":\"Wayne&#039;s Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/weizn.net\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"ImageObject\",\"@id\":\"http:\/\/weizn.net\/?p=79#primaryimage\",\"inLanguage\":\"zh-Hans\",\"url\":\"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/19273503a9f3cb104a5f3dd3eba1706820140130045017.gif\",\"contentUrl\":\"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/19273503a9f3cb104a5f3dd3eba1706820140130045017.gif\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/weizn.net\/?p=79#webpage\",\"url\":\"http:\/\/weizn.net\/?p=79\",\"name\":\"[\\u8f6c]GTK+\\u5b66\\u4e60\\u7b14\\u8bb0\\uff0d\\u6811\\u578b\\u89c6\\u56fe\\u4e0e\\u6a21\\u578b(GtkTreeView) - Wayne&#039;s Blog\",\"isPartOf\":{\"@id\":\"http:\/\/weizn.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/weizn.net\/?p=79#primaryimage\"},\"datePublished\":\"2014-01-30T04:49:45+00:00\",\"dateModified\":\"2014-01-30T04:49:45+00:00\",\"breadcrumb\":{\"@id\":\"http:\/\/weizn.net\/?p=79#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/weizn.net\/?p=79\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/weizn.net\/?p=79#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\\u9996\\u9875\",\"item\":\"http:\/\/weizn.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[\\u8f6c]GTK+\\u5b66\\u4e60\\u7b14\\u8bb0\\uff0d\\u6811\\u578b\\u89c6\\u56fe\\u4e0e\\u6a21\\u578b(GtkTreeView)\"}]},{\"@type\":\"Article\",\"@id\":\"http:\/\/weizn.net\/?p=79#article\",\"isPartOf\":{\"@id\":\"http:\/\/weizn.net\/?p=79#webpage\"},\"author\":{\"@id\":\"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264\"},\"headline\":\"[\\u8f6c]GTK+\\u5b66\\u4e60\\u7b14\\u8bb0\\uff0d\\u6811\\u578b\\u89c6\\u56fe\\u4e0e\\u6a21\\u578b(GtkTreeView)\",\"datePublished\":\"2014-01-30T04:49:45+00:00\",\"dateModified\":\"2014-01-30T04:49:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/weizn.net\/?p=79#webpage\"},\"wordCount\":15,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264\"},\"image\":{\"@id\":\"http:\/\/weizn.net\/?p=79#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/19273503a9f3cb104a5f3dd3eba1706820140130045017.gif\",\"articleSection\":[\"GTK\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/weizn.net\/?p=79#respond\"]}]},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264\",\"name\":\"zinan\",\"logo\":{\"@id\":\"http:\/\/weizn.net\/#personlogo\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[\u8f6c]GTK+\u5b66\u4e60\u7b14\u8bb0\uff0d\u6811\u578b\u89c6\u56fe\u4e0e\u6a21\u578b(GtkTreeView) - Wayne&#039;s Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/weizn.net\/?p=79","og_locale":"zh_CN","og_type":"article","og_title":"[\u8f6c]GTK+\u5b66\u4e60\u7b14\u8bb0\uff0d\u6811\u578b\u89c6\u56fe\u4e0e\u6a21\u578b(GtkTreeView) - Wayne&#039;s Blog","og_description":"GtkWidget&nbsp;*mytree&nbsp;=&nbsp;NULL; GtkTreeStore&nbsp;*lefttree&nbsp;=&nbsp;NULL;      \u6811\u578b\u6a21\u578b\u7684\u5efa\u7acb\uff1a     void&nbsp;setupTreeStore() { &nbsp;&nbsp;&nbsp; lefttree = gtk_tree_store_new(1,G_TYPE_STRING); &nbsp; &amp;nbs...","og_url":"http:\/\/weizn.net\/?p=79","og_site_name":"Wayne&#039;s Blog","article_published_time":"2014-01-30T04:49:45+00:00","og_image":[{"url":"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/19273503a9f3cb104a5f3dd3eba1706820140130045017.gif"}],"twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"zinan","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"http:\/\/weizn.net\/#website","url":"http:\/\/weizn.net\/","name":"Wayne&#039;s Blog","description":"","publisher":{"@id":"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/weizn.net\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":"ImageObject","@id":"http:\/\/weizn.net\/?p=79#primaryimage","inLanguage":"zh-Hans","url":"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/19273503a9f3cb104a5f3dd3eba1706820140130045017.gif","contentUrl":"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/19273503a9f3cb104a5f3dd3eba1706820140130045017.gif"},{"@type":"WebPage","@id":"http:\/\/weizn.net\/?p=79#webpage","url":"http:\/\/weizn.net\/?p=79","name":"[\u8f6c]GTK+\u5b66\u4e60\u7b14\u8bb0\uff0d\u6811\u578b\u89c6\u56fe\u4e0e\u6a21\u578b(GtkTreeView) - Wayne&#039;s Blog","isPartOf":{"@id":"http:\/\/weizn.net\/#website"},"primaryImageOfPage":{"@id":"http:\/\/weizn.net\/?p=79#primaryimage"},"datePublished":"2014-01-30T04:49:45+00:00","dateModified":"2014-01-30T04:49:45+00:00","breadcrumb":{"@id":"http:\/\/weizn.net\/?p=79#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["http:\/\/weizn.net\/?p=79"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/weizn.net\/?p=79#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"http:\/\/weizn.net\/"},{"@type":"ListItem","position":2,"name":"[\u8f6c]GTK+\u5b66\u4e60\u7b14\u8bb0\uff0d\u6811\u578b\u89c6\u56fe\u4e0e\u6a21\u578b(GtkTreeView)"}]},{"@type":"Article","@id":"http:\/\/weizn.net\/?p=79#article","isPartOf":{"@id":"http:\/\/weizn.net\/?p=79#webpage"},"author":{"@id":"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264"},"headline":"[\u8f6c]GTK+\u5b66\u4e60\u7b14\u8bb0\uff0d\u6811\u578b\u89c6\u56fe\u4e0e\u6a21\u578b(GtkTreeView)","datePublished":"2014-01-30T04:49:45+00:00","dateModified":"2014-01-30T04:49:45+00:00","mainEntityOfPage":{"@id":"http:\/\/weizn.net\/?p=79#webpage"},"wordCount":15,"commentCount":0,"publisher":{"@id":"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264"},"image":{"@id":"http:\/\/weizn.net\/?p=79#primaryimage"},"thumbnailUrl":"http:\/\/www.weizn.net\/content\/uploadfile\/201401\/19273503a9f3cb104a5f3dd3eba1706820140130045017.gif","articleSection":["GTK"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/weizn.net\/?p=79#respond"]}]},{"@type":["Person","Organization"],"@id":"http:\/\/weizn.net\/#\/schema\/person\/e88bc12c590502d8b6249326f960b264","name":"zinan","logo":{"@id":"http:\/\/weizn.net\/#personlogo"}}]}},"_links":{"self":[{"href":"http:\/\/weizn.net\/index.php?rest_route=\/wp\/v2\/posts\/79","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/weizn.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/weizn.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/weizn.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/weizn.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=79"}],"version-history":[{"count":0,"href":"http:\/\/weizn.net\/index.php?rest_route=\/wp\/v2\/posts\/79\/revisions"}],"wp:attachment":[{"href":"http:\/\/weizn.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=79"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/weizn.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=79"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/weizn.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=79"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}