ui/gtk/toolkit.c

branch
newapi
changeset 344
870dd3d41d83
parent 343
54f5d7eb1335
equal deleted inserted replaced
343:54f5d7eb1335 344:870dd3d41d83
164 gtk_widget_show_all(obj->widget); 164 gtk_widget_show_all(obj->widget);
165 #endif 165 #endif
166 } 166 }
167 167
168 void ui_close(UiObject *obj) { 168 void ui_close(UiObject *obj) {
169 // TODO 169 #if GTK_CHECK_VERSION(4, 0, 0)
170 //gtk_widget_destroy(obj->widget); 170 gtk_window_close(GTK_WINDOW(obj->widget));
171 #else
172 gtk_widget_destroy(obj->widget);
173 #endif
171 } 174 }
172 175
173 176
174 static gboolean ui_job_finished(void *data) { 177 static gboolean ui_job_finished(void *data) {
175 UiJob *job = data; 178 UiJob *job = data;
343 " border-bottom-right-radius: 0px;" 346 " border-bottom-right-radius: 0px;"
344 "}\n" 347 "}\n"
345 ".pathbar-button-inactive {\n" 348 ".pathbar-button-inactive {\n"
346 " color: alpha(currentColor, 0.5);" 349 " color: alpha(currentColor, 0.5);"
347 "}\n" 350 "}\n"
351 ".ui_test {\n"
352 " background-color: red;\n"
353 "}\n"
348 ; 354 ;
349 355
350 #elif GTK_MAJOR_VERSION == 3 356 #elif GTK_MAJOR_VERSION == 3
351 static const char *ui_gtk_css = 357 static const char *ui_gtk_css =
352 "#path-textfield-box {" 358 "#path-textfield-box {"

mercurial