You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
509 B
21 lines
509 B
#include "../project_lib.h"
|
|
#include "ubl-settings-diskquota.h"
|
|
|
|
|
|
class CmdArgParser : public Glib::OptionGroup {
|
|
public:
|
|
CmdArgParser(const std::string& p_name, const std::string& p_description, const std::string& p_help);
|
|
::Window GetSocketID() const;
|
|
private:
|
|
int m_socketID = 0;
|
|
|
|
};
|
|
class SettingsPlug : public Gtk::Plug{
|
|
public:
|
|
Gtk::Window *window;
|
|
SettingsPlug(::Window p_socketID, Glib::RefPtr<Gtk::Builder> builder);
|
|
|
|
private:
|
|
Gtk::Widget *plugBox;
|
|
Gtk::Widget *parent;
|
|
}; |