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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
/***
This file is part of pavucontrol.
Copyright 2006-2008 Lennart Poettering
Copyright 2008 Sjoerd Simons <sjoerd@luon.net>
pavucontrol is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
pavucontrol is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with pavucontrol. If not, see <http://www.gnu.org/licenses/>.
***/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "i18n.h"
#include "pavuapplication.h"
#include "pavucontrol.h"
#include "mainwindow.h"
static PavuApplication globalInstance;
PavuApplication&
PavuApplication::get_instance()
{
return globalInstance;
}
PavuApplication::PavuApplication() :
Gtk::Application("org.pulseaudio.pavucontrol", Gio::Application::Flags::HANDLES_COMMAND_LINE),
mainWindow(NULL),
retry(false),
maximize(false),
tab(0),
version(false),
m(NULL) {
}
/*
* Create the main window and connect its "on_close_window" signal to our cleanup
* function
*/
MainWindow* PavuApplication::create_window()
{
m = pa_glib_mainloop_new(g_main_context_default());
g_assert(m);
MainWindow* pavucontrol_window = pavucontrol_get_window(m, maximize, retry, tab);
pavucontrol_window->signal_close_request().connect(sigc::mem_fun(*this,
&PavuApplication::on_close_window), true);
return pavucontrol_window;
}
/* "on_activate" signal handler
* This is fired via the Gtk::Application framework either directly from the
* run() function, or manually from the on_command_line signal handler.
* This is always executed in the first-running process.
*/
void PavuApplication::on_activate()
{
/* See if we are already running */
if (mainWindow == NULL) {
/* We aren't. Create the main window */
mainWindow = create_window();
/* and register it in the Gtk::Application */
add_window(*mainWindow);
} else if (tab != -1) {
/* We are, and a specific tab has been requested. Select it. */
mainWindow->selectTab(tab);
}
/* Present the main window. */
mainWindow->present();
}
/* "on_close_window" signal handler
* This is executed in the first-running process and performs cleanup before
* exiting : when the last registered window of Gtk::Application is closed,
* the application's run() function returns.
*/
bool PavuApplication::on_close_window()
{
delete mainWindow;
mainWindow = NULL;
if (get_context()) {
pa_context_unref(get_context());
}
pa_glib_mainloop_free(m);
m = NULL;
return true;
}
template <typename T_ArgType>
static bool get_arg_value(const Glib::RefPtr<Glib::VariantDict>& options, const Glib::ustring& arg_name, T_ArgType& arg_value)
{
arg_value = T_ArgType();
if (options->lookup_value(arg_name, arg_value)) {
return true;
}
return false;
}
/*
* "on_command_line" signal handler
* This is executed in the first-running process.
*/
int on_command_line(const Glib::RefPtr<Gio::ApplicationCommandLine>& command_line,
PavuApplication *app)
{
const auto options = command_line->get_options_dict();
get_arg_value(options, "tab", app->tab);
get_arg_value(options, "retry", app->retry);
get_arg_value(options, "maximize", app->maximize);
get_arg_value(options, "version", app->version);
if (app->version) {
printf("%s\n", PACKAGE_STRING);
return 0;
}
app->activate();
return 0;
}
int main(int argc, char *argv[]) {
/* Initialize the i18n stuff */
bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
textdomain(GETTEXT_PACKAGE);
signal(SIGPIPE, SIG_IGN);
/* Create the application */
globalInstance = PavuApplication();
/* Add command-line options */
globalInstance.add_main_option_entry(
Gio::Application::OptionType::INT,
"tab", 't',
_("Select a specific tab on load."),
_("number"));
globalInstance.add_main_option_entry(
Gio::Application::OptionType::BOOL,
"retry", 'r',
_("Retry forever if pa quits (every 5 seconds)."));
globalInstance.add_main_option_entry(
Gio::Application::OptionType::BOOL,
"maximize", 'm',
_("Maximize the window."));
globalInstance.add_main_option_entry(
Gio::Application::OptionType::BOOL,
"version", 'v',
_("Show version."));
/* Connect to the "on_command_line" signal which is fired
* when the application receives command-line arguments
*/
globalInstance.signal_command_line().connect(sigc::bind(sigc::ptr_fun(&on_command_line), &globalInstance), false);
/* Run the application.
* In the first launched instance, this will return when its window is
* closed. In subsequently launches instances, this will only signal the
* first instance to handle a new request, and exit immediately.
* Handling a new request consists of presenting the existing window (and
* optionally, select a tab).
*/
return globalInstance.run(argc, argv);
}
|