gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 10:58:13 25 4
gpt4 key购买 nike

我有一个程序可以列出工作目录中的所有文件(我使用 glib 来执行此操作),然后我通过 GtkWindow 中筛选此列表>Gtk::标签。我使用 run() 筛选窗口,

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

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

最佳答案

这里有一个完整的例子,如果你想了解如何使用 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 上编译。任何评论都会受到赞赏,我自己制作了这段代码。感谢报告任何错误。

使用方法:

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

 $ echo "stack" > overflow

你应该得到类似的东西:

enter image description here

感谢 nemequ

关于c++ - 如何将 gtk::label 与目录中文件的创建或抑制同步?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28012652/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com