非GTK应用程序中的GTK + 3文件选择器

时间:2015-06-10 08:35:41

标签: c gtk3 filechooser

我有一个C项目(在Linux上)根本不使用GTK,但是我想将GTK仅用于某些特定任务,例如选择文件(文件选择器对话框)。所以我没有GTK父窗口,没有gtk主循环等,我只想要一个文件选择器对话框,它应该阻止我的程序执行直到用户选择一个文件(或取消)然后我不使用GTK然后在那之后。我尝试了什么:

https://developer.gnome.org/gtk3/stable/GtkFileChooserDialog.html

我在"典型用法"中使用了代码,第一个例子。我把gtk_init(& argc,& argv)放在程序的开头,当我需要文件选择器时,我用这个例子中的代码调用一个函数(我使用parent作为NULL,因为没有父代)。结果是闪烁的窗口只有几分之一秒,然后是SIGSEGV。在此之前,我有这样的信息:

Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.

我已经在stackoverflow上阅读了有关此消息的问题/答案,但崩溃应用程序对我来说更为严重。我也尝试过这个:

gtk_widget_show_all(dialog);

在没有崩溃的gtk_file_chooser_dialog_new()之后,我可以选择文件,但是我再次在gtk_file_chooser_get_filename()附近再次使用SIGSEGV。

使用gdb时,我得到了这个:

Program received signal SIGSEGV, Segmentation fault.
__GI___pthread_mutex_lock (mutex=0x3c3) at ../nptl/pthread_mutex_lock.c:67
你可以帮我解决我的错误吗?我不太熟悉GTK编程,所以我尝试使用手册中的示例,但它似乎不起作用。非常感谢提前!

1 个答案:

答案 0 :(得分:1)

如果没有gtk主循环,则无法使用小部件。

嗯,好像我错了。真诚的道歉!我之前已经尝试过这样做,结论正是我所描述的。但这个问题在最后几天一直困扰着我,所以我做了一些挖掘和试验,并提出了以下计划:

/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 8 -*-  */
/*
 * main.c
 * Copyright (C) 2015 John Coppens <john@jcoppens.com>
 * 
 * standalone_filechooser is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * standalone_filechooser is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <stdio.h>
#include <gtk/gtk.h>

GtkWidget *
create_filechooser_dialog(char *init_path, GtkFileChooserAction action)
{
  GtkWidget *wdg = NULL;

  switch (action) {
    case GTK_FILE_CHOOSER_ACTION_SAVE:
      wdg = gtk_file_chooser_dialog_new("Save file", NULL, action,
        "Cancel", GTK_RESPONSE_CANCEL,
        "Save", GTK_RESPONSE_OK,
        NULL);
      break;

    case GTK_FILE_CHOOSER_ACTION_OPEN:
      wdg = gtk_file_chooser_dialog_new("Open file", NULL, action,
        "Cancel", GTK_RESPONSE_CANCEL,
        "Open", GTK_RESPONSE_OK,
        NULL);
      break;

    case GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER:
    case GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER:
      break;
  }

  return wdg;
}

int main(int argc, char *argv[])
{
  GtkWidget *wdg;
  char *fname = "";

  if (argc == 2)
    fname = argv[1];

  gtk_init(&argc, &argv);

  wdg = create_filechooser_dialog(fname, GTK_FILE_CHOOSER_ACTION_OPEN);
  if (gtk_dialog_run(GTK_DIALOG(wdg)) == GTK_RESPONSE_OK) {
    printf("%s", gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(wdg)));
    return(0);
  } else  
    return (1);
}

您可以使用

从其他程序(甚至终端)调用对话框
standalone_filechooser [default file]

如果提供了default file(没有括号),则会选择它。如果选择了一个文件,它将打印在stdout上,否则程序将返回错误= 1

在没有主窗口的情况下运行窗口小部件仍然存在一个小问题,这会导致将邮件发送到stderrGtkDialog mapped without a transient parent. This is discouraged。我认为这确实是一个错误(并且在更新版本的gtk3中为it might be solved)。当邮件发送到stderr时,它不应该干扰正常使用。