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
45
46
47
48
49
50
51
|
#ifndef _PROCMAN_DEFAULTTABLE_H_
#define _PROCMAN_DEFAULTTABLE_H_
#include <string>
#include <glibmm/refptr.h>
#include <glibmm/regex.h>
/* This file contains prettynames and icons for well-known applications, that by default has no .desktop entry */
struct PrettyTableItem
{
Glib::RefPtr<Glib::Regex> command;
std::string icon;
PrettyTableItem(const std::string& a_command, const std::string& a_icon)
: command(Glib::Regex::create("^(" + a_command + ")$")),
icon(a_icon)
{ }
};
#define ITEM PrettyTableItem
/* The current table is only a test */
static const PrettyTableItem default_table[] = {
ITEM("(ba|z|tc|c|k)?sh", "utilities-terminal"),
ITEM("(k|sys|u)logd|logger", "internet-news-reader"),
ITEM("X(org)?", "display"),
ITEM("apache2?|httpd|lighttpd", "internet-web-browser"),
ITEM(".*applet(-?2)?", "mate-applets"),
ITEM("atd|cron|CRON|ntpd", "date"),
ITEM("cupsd|lpd?", "printer"),
ITEM("cvsd|mtn|git|svn", "file-manager"),
ITEM("emacs(server|\\d+)?", "mate-emacs"),
ITEM("evolution.*", "internet-mail"),
ITEM("famd|gam_server", "file-manager"),
ITEM("mateconfd-2", "preferences-desktop"),
ITEM("getty", "input-keyboard"),
ITEM("gdb|((gcc|g\\+\\+)(-.*)?)|ar|ld|make", "applications-development"),
ITEM("marco", "mate-window-manager"),
ITEM("sendmail|exim\\d?", "internet-mail"),
ITEM("squid", "proxy"),
ITEM("ssh(d|-agent)", "ssh-askpass-mate"),
ITEM("top|vmstat", "system-monitor"),
ITEM("vim?", "vim"),
ITEM("x?inetd", "internet-web-browser"),
ITEM("vino.*", "mate-remote-desktop")
};
#undef ITEM
#endif /* _PROCMAN_DEFAULTTABLE_H_ */
|