如何将gtk :: label与目录中文件的创建或抑制同步?

时间:2015-01-18 17:29:01

标签: c++ linux gtk glib gio

我有一个程序列出工作目录中的所有文件(我使用glib执行此操作),然后通过GtkWindowGtk::Label中筛选此列表。我使用run()

来筛选窗口
  Glib::RefPtr<Gtk::Application> app = Gtk::Application::create(argc, argv, "Zombie-Shadowchaser SixSixSix");
app->run(*pMainWindow);

我知道如何使用set_label()更改标签我可以通过单击按钮将目录中的文件列表与筛选的列表同步。因此,如果我删除或创建文件,它将删除或添加标签文件。但是如何让我的程序在不点击的情况下每秒同步?

1 个答案:

答案 0 :(得分:1)

这里有一个完整的例子,如果你想了解如何使用g_signal_connect()

,也很好学习
#include <gtkmm.h>

Gtk::Label *plabel; // because I"m lazzy...

/**
 ** everytime a file is created in the current directory, toCallbackFunction()
 ** will be called. The paramaters are the same of signal see signal here :
 ** http://www.freedesktop.org/software/gstreamer-sdk/data/docs/latest/gio/GFileMonitor.html#GFileMonitor-changed
 **/
void
toCallbackFunction(GFileMonitor      *monitor
                  ,GFile             *file
                  ,GFile             *other_file
                  ,GFileMonitorEvent event_type
                  ,gpointer          user_data
                  ) 
{
  plabel->set_label( g_file_get_path(file) );
}



int 
main(int  argc 
    ,char *argv[]
    )
{
  Glib::RefPtr<Gtk::Application> app = Gtk::Application::create(argc, argv, "org.gtkmm.examples.base");
  Gtk::Window window;
  Gtk::Label label;
  window.set_default_size(800, 200);

  label.set_label("test");

  window.add(label);
  label.show();
  plabel = &label;

  /* 
   * g_file_monitor() requires a file, not a path. So we use g_file_new_for_path()
   * to convert the directory (this is for demonstration)
   */   
  GFile *file = g_file_new_for_path("."); 
  GFileMonitor *monitor;
  /*
   * http://www.freedesktop.org/software/gstreamer-sdk/data/docs/latest/gio/GFile.html#g-file-monitor
   */
  monitor = g_file_monitor_directory(file, G_FILE_MONITOR_NONE, nullptr, nullptr);
  /* 
   * the next line, is how to connect the monitor to a callback function when
   * the signal changed has been triggered.
   */
  g_signal_connect(monitor, "changed", G_CALLBACK (toCallbackFunction), nullptr);


  return app->run(window);
}

在linux上编译:

 g++ main.cc -o simple `pkg-config gtkmm-3.0 --cflags --libs` -std=c++11

对于MS Windows用户,我不是种族主义者,但我不知道如何在Windows上编译。任何评论都是apreciate,我自己制作了这段代码。 Thx报告任何错误。

如何使用

启动程序时,请在同一目录中使用控制台并创建新文件,例如

 $ echo "stack" > overflow

你应该得到类似的东西:

enter image description here

nemequ