Gtkmm3:正确处理命令行选项和Gtk::Plug



我正在尝试与xfce4-settings-manager接口,这是我在标准cgtk+-3.0库中成功完成的,但我一直在努力在gtkmm3中复制它。xfce4-settings-manager--socked-id选项传递给客户端,客户端将使用GtkPlug通过id连接到套接字。正如我之前提到的,我成功地用C编写了它,我在这里将该代码放在了github要点中。我更喜欢使用C++作为一种手段,以更实用的方式学习语言,也因为它比C.具有更高的功能

我一直在努力寻找处理争论的正确方法,以及使用Gtk::Plug的正确方法。如果有人能深入了解gtkmm3中处理命令行参数和GtkPlugs的正确方式/文档,我们将不胜感激,如果你能提供任何例子,我们也将不胜感激。提前谢谢!

这里有一个类似于您的例子,在C++中使用Gtkmm3:

#include <string>
#include <gtkmm.h>
#include <gtkmm/plug.h>
// Simple command line argument parser.
//
// Documented here:
//
//    https://gitlab.gnome.org/GNOME/glibmm/-/blob/master/examples/options/main.cc
//
class CmdArgParser : public Glib::OptionGroup
{
public:
CmdArgParser(const std::string& p_name, const std::string& p_description, const std::string& p_help)
: Glib::OptionGroup{p_name, p_description, p_help}
{
// Define the 'socket ID' argument options:
Glib::OptionEntry socketIDArg;
socketIDArg.set_long_name("socket-id");
socketIDArg.set_short_name('s');
socketIDArg.set_flags(Glib::OptionEntry::FLAG_IN_MAIN);
socketIDArg.set_description("Settings manager socket");
// Register it in the parser. It value will be recorded in m_socketID for later usage.
add_entry(socketIDArg, m_socketID);
}
// Override this to handle errors. I skipped it for simplicity.
// void on_error(Glib::OptionContext& context, const Glib::Error& error) override;
::Window GetSocketID() const
{
return m_socketID;
}
private:
int m_socketID = 0;
};
// This is what is going to be plugged into xfce4-settings-manager:
//
// Documented here:
//
//     https://developer.gnome.org/gtkmm-tutorial/3.22/sec-plugs-sockets-example.html.en
//
class SettingsPlug : public Gtk::Plug
{
public:
SettingsPlug(::Window p_socketID)
: Gtk::Plug{p_socketID}
{
m_button.set_label("A plug with Gtkmm3!");
add(m_button);
show_all_children();
}
private:
Gtk::Button m_button;
};
int main(int argc, char** argv)
{
auto app = Gtk::Application::create(argc, argv, "org.gtkmm.example.plug");
// Parse command line arguments and retreive socket ID:
Glib::init();
setlocale(LC_ALL, "");
Glib::OptionContext context;

CmdArgParser parser{
"Socket ID",
"Command line argument for socket ID communication.",
"No help available, sorry"
};
context.set_main_group(parser);
context.parse(argc, argv); 
::Window socketID = parser.GetSocketID();
// Handle plug:
SettingsPlug plug{socketID};
plug.show();

app->run(plug);

return 0;
}

我删除了错误处理和Glade文件的使用,以简化代码。你可以用来构建它

g++ main.cpp -o example.out `pkg-config --cflags --libs gtkmm-3.0`

相关内容

  • 没有找到相关文章

最新更新