blob: b439071cd60ba2e917c5e12d7e552ea7bad0a85d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#include <config.h>
#include <glib/gi18n.h>
#include <glibmm/optionentry.h>
#include "argv.h"
namespace procman
{
OptionGroup::OptionGroup()
: Glib::OptionGroup("", ""),
show_system_tab(false),
show_processes_tab(false),
show_resources_tab(false),
show_file_systems_tab(false),
print_version(false)
{
Glib::OptionEntry proc_tab;
proc_tab.set_long_name("show-processes-tab");
proc_tab.set_short_name('p');
proc_tab.set_description(_("Show the Processes tab"));
Glib::OptionEntry res_tab;
res_tab.set_long_name("show-resources-tab");
res_tab.set_short_name('r');
res_tab.set_description(_("Show the Resources tab"));
Glib::OptionEntry fs_tab;
fs_tab.set_long_name("show-file-systems-tab");
fs_tab.set_short_name('f');
fs_tab.set_description(_("Show the File Systems tab"));
Glib::OptionEntry show_version;
show_version.set_long_name("version");
show_version.set_description(_("Show the application’s version"));
this->add_entry(proc_tab, this->show_processes_tab);
this->add_entry(res_tab, this->show_resources_tab);
this->add_entry(fs_tab, this->show_file_systems_tab);
this->add_entry(show_version, this->print_version);
}
}
|